changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of meme templates returned",
+ "type": "integer"
+ },
+ "memes": {
+ "description": "Array of meme templates",
+ "items": {
+ "properties": {
+ "box_count": {
+ "description": "Number of text boxes available",
+ "type": "integer"
+ },
+ "height": {
+ "description": "Template image height in pixels",
+ "type": "integer"
+ },
+ "id": {
+ "description": "Unique meme template ID",
+ "type": "string"
+ },
+ "name": {
+ "description": "Meme template name",
+ "type": "string"
+ },
+ "url": {
+ "description": "Image URL of the meme template",
+ "type": "string"
+ },
+ "width": {
+ "description": "Template image width in pixels",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "url",
+ "width",
+ "height",
+ "box_count"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "memes"
+ ],
+ "type": "object"
+}