changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "actors": {
+ "description": "Array of actor names",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "awards": {
+ "description": "Awards and nominations summary",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "box_office": {
+ "description": "Box office earnings",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "country": {
+ "description": "Country/countries of origin",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "director": {
+ "description": "Director name(s)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "genres": {
+ "description": "Array of genre strings",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "imdb_id": {
+ "description": "IMDB ID (tt-prefixed)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "imdb_rating": {
+ "description": "IMDB rating (0-10)",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "imdb_url": {
+ "description": "Direct URL to IMDB title page",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "imdb_votes": {
+ "description": "Number of IMDB votes",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "language": {
+ "description": "Language(s)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "metascore": {
+ "description": "Metacritic score",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "plot": {
+ "description": "Plot summary",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "poster": {
+ "description": "Poster image URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "production": {
+ "description": "Production company",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "rated": {
+ "description": "MPAA rating (G, PG, PG-13, R, etc.)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "ratings": {
+ "description": "Array of ratings from various sources",
+ "items": {
+ "properties": {
+ "source": {
+ "description": "Rating source (IMDB, Rotten Tomatoes, Metacritic)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "description": "Rating value",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "released": {
+ "description": "Release date",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "runtime": {
+ "description": "Runtime in minutes",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Movie/series/episode title",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "total_seasons": {
+ "description": "Total seasons (for series only)",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "Type: movie, series, or episode",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "writer": {
+ "description": "Writer name(s)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "year": {
+ "description": "Release year",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "title",
+ "year",
+ "rated",
+ "released",
+ "runtime",
+ "genres",
+ "director",
+ "writer",
+ "actors",
+ "plot",
+ "language",
+ "country",
+ "awards",
+ "poster",
+ "ratings",
+ "metascore",
+ "imdb_rating",
+ "imdb_votes",
+ "imdb_id",
+ "type",
+ "box_office",
+ "production",
+ "total_seasons",
+ "imdb_url"
+ ],
+ "type": "object"
+}