OMDb · Schema

OMDb Title Result

Full metadata returned by the OMDb API for a single movie, series, or episode.

MoviesTelevisionEntertainmentMetadataRatingsPostersIMDbOpen Data

Properties

Name Type Description
Title string Title of the movie or series.
Year string Year of release, or year range for a series (e.g. '2013–2020').
Rated string MPAA or equivalent content rating (e.g. PG-13, TV-MA).
Released string Theatrical release date formatted as 'DD Mon YYYY'.
Runtime string Runtime in minutes (e.g. '148 min').
Genre string Comma-separated list of genres.
Director string Director name(s), comma-separated.
Writer string Writer name(s), comma-separated.
Actors string Top-billed cast, comma-separated.
Plot string Short or full plot synopsis depending on the 'plot' query parameter.
Language string Languages spoken in the title, comma-separated.
Country string Country or countries of origin, comma-separated.
Awards string Summary of award wins and nominations.
Poster string URL of the poster image, or 'N/A'.
Ratings array Ratings from multiple sources.
Metascore string Metacritic score 0-100, or 'N/A'.
imdbRating string IMDb weighted average rating 0.0-10.0, or 'N/A'.
imdbVotes string Number of IMDb votes, formatted with commas, or 'N/A'.
imdbID string Unique IMDb identifier (e.g. tt1375666).
Type string Content type.
DVD string DVD release date or 'N/A'.
BoxOffice string US theatrical box office gross or 'N/A'.
Production string Production company or 'N/A'.
Website string Official website URL or 'N/A'.
Response string Whether the API call succeeded.
Error string Human-readable error message when Response is 'False'.
View JSON Schema on GitHub

JSON Schema

omdb-title-result.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/omdb/main/json-schema/omdb-title-result.json",
  "title": "OMDb Title Result",
  "description": "Full metadata returned by the OMDb API for a single movie, series, or episode.",
  "type": "object",
  "properties": {
    "Title": {
      "type": "string",
      "description": "Title of the movie or series."
    },
    "Year": {
      "type": "string",
      "description": "Year of release, or year range for a series (e.g. '2013–2020')."
    },
    "Rated": {
      "type": "string",
      "description": "MPAA or equivalent content rating (e.g. PG-13, TV-MA)."
    },
    "Released": {
      "type": "string",
      "description": "Theatrical release date formatted as 'DD Mon YYYY'."
    },
    "Runtime": {
      "type": "string",
      "description": "Runtime in minutes (e.g. '148 min')."
    },
    "Genre": {
      "type": "string",
      "description": "Comma-separated list of genres."
    },
    "Director": {
      "type": "string",
      "description": "Director name(s), comma-separated."
    },
    "Writer": {
      "type": "string",
      "description": "Writer name(s), comma-separated."
    },
    "Actors": {
      "type": "string",
      "description": "Top-billed cast, comma-separated."
    },
    "Plot": {
      "type": "string",
      "description": "Short or full plot synopsis depending on the 'plot' query parameter."
    },
    "Language": {
      "type": "string",
      "description": "Languages spoken in the title, comma-separated."
    },
    "Country": {
      "type": "string",
      "description": "Country or countries of origin, comma-separated."
    },
    "Awards": {
      "type": "string",
      "description": "Summary of award wins and nominations."
    },
    "Poster": {
      "type": "string",
      "format": "uri",
      "description": "URL of the poster image, or 'N/A'."
    },
    "Ratings": {
      "type": "array",
      "description": "Ratings from multiple sources.",
      "items": {
        "$ref": "#/$defs/Rating"
      }
    },
    "Metascore": {
      "type": "string",
      "description": "Metacritic score 0-100, or 'N/A'."
    },
    "imdbRating": {
      "type": "string",
      "description": "IMDb weighted average rating 0.0-10.0, or 'N/A'."
    },
    "imdbVotes": {
      "type": "string",
      "description": "Number of IMDb votes, formatted with commas, or 'N/A'."
    },
    "imdbID": {
      "type": "string",
      "pattern": "^tt\\d{7,8}$",
      "description": "Unique IMDb identifier (e.g. tt1375666)."
    },
    "Type": {
      "type": "string",
      "enum": ["movie", "series", "episode"],
      "description": "Content type."
    },
    "DVD": {
      "type": "string",
      "description": "DVD release date or 'N/A'."
    },
    "BoxOffice": {
      "type": "string",
      "description": "US theatrical box office gross or 'N/A'."
    },
    "Production": {
      "type": "string",
      "description": "Production company or 'N/A'."
    },
    "Website": {
      "type": "string",
      "description": "Official website URL or 'N/A'."
    },
    "Response": {
      "type": "string",
      "enum": ["True", "False"],
      "description": "Whether the API call succeeded."
    },
    "Error": {
      "type": "string",
      "description": "Human-readable error message when Response is 'False'."
    }
  },
  "required": ["Title", "imdbID", "Type", "Response"],
  "$defs": {
    "Rating": {
      "type": "object",
      "description": "A rating entry from a specific aggregator.",
      "properties": {
        "Source": {
          "type": "string",
          "description": "Name of the ratings source."
        },
        "Value": {
          "type": "string",
          "description": "Rating value in the source's native format."
        }
      },
      "required": ["Source", "Value"]
    }
  }
}