Studio Ghibli · JSON Structure

Studio Ghibli Film Structure

Type: Properties: 0
AnimeStudio GhibliFilmsCharactersLocationsSpeciesVehiclesPublic APIsOpen SourceRead-Only

Film is a JSON Structure definition published by Studio Ghibli.

Meta-schema:

JSON Structure

Raw ↑
{
  "name": "Film",
  "structure": {
    "type": "object",
    "required": ["id", "title", "description", "director", "producer", "release_date"],
    "properties": {
      "id": { "type": "string", "description": "Unique identifier representing a specific film." },
      "title": { "type": "string", "description": "Title of the film in English." },
      "original_title": { "type": "string", "description": "Original Japanese title (Japanese characters)." },
      "original_title_romanised": { "type": "string", "description": "Original Japanese title romanised." },
      "image": { "type": "string", "description": "URL of the film poster image." },
      "movie_banner": { "type": "string", "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." },
      "producer": { "type": "string", "description": "Producer of the film." },
      "release_date": { "type": "string", "description": "Original theatrical release year (YYYY)." },
      "running_time": { "type": "string", "description": "Running time of the film in minutes." },
      "rt_score": { "type": "string", "description": "Rotten Tomatoes critical score." },
      "people": { "type": "array", "items": { "type": "string" } },
      "species": { "type": "array", "items": { "type": "string" } },
      "locations": { "type": "array", "items": { "type": "string" } },
      "vehicles": { "type": "array", "items": { "type": "string" } },
      "url": { "type": "string" }
    }
  }
}