Studio Ghibli · Schema

Studio Ghibli Film

A Studio Ghibli theatrical film catalogued by the community-built Studio Ghibli API.

AnimeStudio GhibliFilmsCharactersLocationsSpeciesVehiclesPublic APIsOpen SourceRead-Only

Properties

Name Type Description
id string Unique identifier representing a specific film.
title string Title of the film in English.
original_title string Original Japanese title (Japanese characters).
original_title_romanised string Original Japanese title romanised.
image string URL of the film poster image.
movie_banner string URL of the film banner image.
description string Plot summary or synopsis of the film.
director string Director of the film.
producer string Producer of the film.
release_date string Original theatrical release year (YYYY).
running_time string Running time of the film in minutes.
rt_score string Rotten Tomatoes critical score.
people array People that appear in the film (URL references).
species array Species that appear in the film (URL references).
locations array Locations that appear in the film (URL references).
vehicles array Vehicles that appear in the film (URL references).
url string Canonical URL of the film resource.
View JSON Schema on GitHub

JSON Schema

studio-ghibli-film-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/studio-ghibli/main/json-schema/studio-ghibli-film-schema.json",
  "title": "Studio Ghibli Film",
  "description": "A Studio Ghibli theatrical film catalogued by the community-built Studio Ghibli API.",
  "type": "object",
  "required": ["id", "title", "description", "director", "producer", "release_date"],
  "properties": {
    "id": { "type": "string", "format": "uuid", "description": "Unique identifier representing a specific film.", "example": "2baf70d1-42bb-4437-b551-e5fed5a87abe" },
    "title": { "type": "string", "description": "Title of the film in English.", "example": "Castle in the Sky" },
    "original_title": { "type": "string", "description": "Original Japanese title (Japanese characters).", "example": "天空の城ラピュタ" },
    "original_title_romanised": { "type": "string", "description": "Original Japanese title romanised.", "example": "Tenkū no shiro Rapyuta" },
    "image": { "type": "string", "format": "uri", "description": "URL of the film poster image." },
    "movie_banner": { "type": "string", "format": "uri", "description": "URL of the film banner image." },
    "description": { "type": "string", "description": "Plot summary or synopsis of the film." },
    "director": { "type": "string", "description": "Director of the film.", "example": "Hayao Miyazaki" },
    "producer": { "type": "string", "description": "Producer of the film.", "example": "Isao Takahata" },
    "release_date": { "type": "string", "description": "Original theatrical release year (YYYY).", "example": "1986" },
    "running_time": { "type": "string", "description": "Running time of the film in minutes.", "example": "124" },
    "rt_score": { "type": "string", "description": "Rotten Tomatoes critical score.", "example": "95" },
    "people": { "type": "array", "items": { "type": "string", "format": "uri" }, "description": "People that appear in the film (URL references)." },
    "species": { "type": "array", "items": { "type": "string", "format": "uri" }, "description": "Species that appear in the film (URL references)." },
    "locations": { "type": "array", "items": { "type": "string", "format": "uri" }, "description": "Locations that appear in the film (URL references)." },
    "vehicles": { "type": "array", "items": { "type": "string", "format": "uri" }, "description": "Vehicles that appear in the film (URL references)." },
    "url": { "type": "string", "format": "uri", "description": "Canonical URL of the film resource." }
  }
}