IMDb-API · Schema
Name
An IMDb-API person (actor, director, writer) record.
VideoMoviesTVEntertainmentMetadataRatingsPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| role | string | |
| image | string | |
| summary | string | |
| birthDate | string | |
| deathDate | string | |
| awards | string | |
| height | string | |
| knownFor | array | |
| castMovies | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/imdb-api/json-schema/imdb-api-name-schema.json",
"title": "Name",
"description": "An IMDb-API person (actor, director, writer) record.",
"type": "object",
"required": ["id", "name"],
"properties": {
"id": {"type": "string", "pattern": "^nm\\d+$"},
"name": {"type": "string"},
"role": {"type": "string"},
"image": {"type": "string", "format": "uri"},
"summary": {"type": "string"},
"birthDate": {"type": "string"},
"deathDate": {"type": "string"},
"awards": {"type": "string"},
"height": {"type": "string"},
"knownFor": {"type": "array"},
"castMovies": {"type": "array"}
}
}