changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of results returned",
+ "type": "number"
+ },
+ "query": {
+ "description": "Search query string",
+ "type": "string"
+ },
+ "results": {
+ "description": "Array of matching shows",
+ "items": {
+ "properties": {
+ "ended": {
+ "description": "End date (YYYY-MM-DD) or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "genres": {
+ "description": "Genre tags",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "id": {
+ "description": "TVMaze show ID",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "image": {
+ "description": "Show poster image URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "imdb_id": {
+ "description": "IMDb ID",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "language": {
+ "description": "Primary language",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Show name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "network": {
+ "description": "Network or web channel name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "network_country": {
+ "description": "2-letter country code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "official_site": {
+ "description": "Official website URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "premiered": {
+ "description": "Premiere date (YYYY-MM-DD)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "rating": {
+ "description": "Average rating (0-10)",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "runtime_min": {
+ "description": "Episode runtime in minutes",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "score": {
+ "description": "Match score from search",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "status": {
+ "description": "Show status (Running, Ended)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "summary": {
+ "description": "HTML-stripped show summary",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "tvdb_id": {
+ "description": "TheTVDB ID",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "tvmaze_url": {
+ "description": "TVMaze show page URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "Show type (e.g., Scripted, Reality)",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "query",
+ "count",
+ "results"
+ ],
+ "type": "object"
+}