changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "shows": {
+ "items": {
+ "properties": {
+ "ended": {
+ "description": "End date in YYYY-MM-DD format",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "genres": {
+ "description": "List of genres",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "id": {
+ "description": "TVmaze show ID",
+ "type": "number"
+ },
+ "image": {
+ "description": "Medium-size poster image URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "language": {
+ "description": "Primary language",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Show name",
+ "type": "string"
+ },
+ "network": {
+ "description": "Network or web channel name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "premiered": {
+ "description": "Premiere date in YYYY-MM-DD format",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "rating": {
+ "description": "Average rating score",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "score": {
+ "description": "Search relevance score",
+ "type": "number"
+ },
+ "status": {
+ "description": "Current status (Running, Ended, etc.)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "summary": {
+ "description": "Show summary without HTML tags",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "Show type (e.g., Scripted, Reality)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "TVmaze show URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "score",
+ "id",
+ "name",
+ "type",
+ "language",
+ "genres",
+ "status",
+ "premiered",
+ "ended",
+ "rating",
+ "network",
+ "summary",
+ "url",
+ "image"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_found": {
+ "description": "Total number of shows found",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total_found",
+ "shows"
+ ],
+ "type": "object"
+}