changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "caption": {
+ "description": "Caption text joined from subtitles",
+ "type": "string"
+ },
+ "episode": {
+ "description": "Episode key (e.g. S05E15) or null if unavailable",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "frame_url": {
+ "description": "URL to the screencap image or null if episode/timestamp unavailable",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "raw": {
+ "description": "Raw API response object",
+ "type": "object"
+ },
+ "show": {
+ "description": "The show queried",
+ "type": "string"
+ },
+ "timestamp": {
+ "description": "Frame timestamp in milliseconds or null if unavailable",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "show",
+ "caption",
+ "raw"
+ ],
+ "type": "object"
+}