changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of trending GIFs returned",
+ "type": "number"
+ },
+ "gifs": {
+ "description": "Array of trending GIF objects",
+ "items": {
+ "properties": {
+ "downsized_url": {
+ "description": "Downsized GIF URL",
+ "type": "string"
+ },
+ "fixed_height_url": {
+ "description": "Fixed-height GIF URL",
+ "type": "string"
+ },
+ "gif_url": {
+ "description": "Original GIF URL",
+ "type": "string"
+ },
+ "height": {
+ "description": "Original GIF height in pixels",
+ "type": "number"
+ },
+ "id": {
+ "description": "GIF ID",
+ "type": "string"
+ },
+ "rating": {
+ "description": "Content rating (e.g., 'g', 'pg', 'pg-13', 'r')",
+ "type": "string"
+ },
+ "title": {
+ "description": "GIF title",
+ "type": "string"
+ },
+ "url": {
+ "description": "GIF page URL on Giphy",
+ "type": "string"
+ },
+ "width": {
+ "description": "Original GIF width in pixels",
+ "type": "number"
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "url",
+ "rating",
+ "gif_url",
+ "fixed_height_url",
+ "downsized_url",
+ "width",
+ "height"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "gifs"
+ ],
+ "type": "object"
+}