Studio Ghibli · Schema
Studio Ghibli Species
A species classification of a character or creature in the Studio Ghibli films.
AnimeStudio GhibliFilmsCharactersLocationsSpeciesVehiclesPublic APIsOpen SourceRead-Only
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier representing a specific species. |
| name | string | Common name of the species. |
| classification | string | Biological classification (e.g. Mammal, Spirit, Cat). |
| eye_colors | string | Comma-separated list of eye colours observed within the species. |
| hair_colors | string | Comma-separated list of hair colours observed within the species. |
| people | array | Characters that belong to this species. |
| films | array | Films in which this species appears. |
| url | string | Canonical URL of the species resource. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/studio-ghibli/main/json-schema/studio-ghibli-species-schema.json",
"title": "Studio Ghibli Species",
"description": "A species classification of a character or creature in the Studio Ghibli films.",
"type": "object",
"required": ["id", "name"],
"properties": {
"id": { "type": "string", "format": "uuid", "description": "Unique identifier representing a specific species.", "example": "af3910a6-429f-4c74-9ad5-dfe1c4aa04f2" },
"name": { "type": "string", "description": "Common name of the species.", "example": "Human" },
"classification": { "type": "string", "description": "Biological classification (e.g. Mammal, Spirit, Cat).", "example": "Mammal" },
"eye_colors": { "type": "string", "description": "Comma-separated list of eye colours observed within the species.", "example": "Black, Blue, Brown, Grey, Green, Hazel" },
"hair_colors": { "type": "string", "description": "Comma-separated list of hair colours observed within the species.", "example": "Black, Blonde, Brown, Grey, White" },
"people": { "type": "array", "items": { "type": "string", "format": "uri" }, "description": "Characters that belong to this species." },
"films": { "type": "array", "items": { "type": "string", "format": "uri" }, "description": "Films in which this species appears." },
"url": { "type": "string", "format": "uri", "description": "Canonical URL of the species resource." }
}
}