changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of results returned",
+ "type": "number"
+ },
+ "results": {
+ "description": "Array of matching screencaps",
+ "items": {
+ "properties": {
+ "Episode": {
+ "description": "Episode key (e.g. S05E15)",
+ "type": "string"
+ },
+ "Id": {
+ "description": "Result ID",
+ "type": "number"
+ },
+ "Timestamp": {
+ "description": "Frame timestamp in milliseconds",
+ "type": "number"
+ },
+ "frame_url": {
+ "description": "URL to the screencap image",
+ "type": "string"
+ },
+ "gif_url": {
+ "description": "URL to a 5-second GIF starting at timestamp",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "show": {
+ "description": "The show queried (simpsons, futurama, or rickandmorty)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "show",
+ "count",
+ "results"
+ ],
+ "type": "object"
+}