Studio Ghibli · JSON Structure

Studio Ghibli Location Structure

Type: Properties: 0
AnimeStudio GhibliFilmsCharactersLocationsSpeciesVehiclesPublic APIsOpen SourceRead-Only

Location is a JSON Structure definition published by Studio Ghibli.

Meta-schema:

JSON Structure

Raw ↑
{
  "name": "Location",
  "structure": {
    "type": "object",
    "required": ["id", "name"],
    "properties": {
      "id": { "type": "string", "description": "Unique identifier representing a specific location." },
      "name": { "type": "string", "description": "Name of the location." },
      "climate": { "type": "string", "description": "Predominant climate of the location." },
      "terrain": { "type": "string", "description": "Predominant terrain of the location." },
      "surface_water": { "type": "string", "description": "Percentage of the location covered by surface water." },
      "residents": { "type": "array", "items": { "type": "string" } },
      "films": { "type": "array", "items": { "type": "string" } },
      "url": { "type": "string", "description": "Canonical URL of the location resource." }
    }
  }
}