Breaking Bad · Schema
Character
A character from the Breaking Bad or Better Call Saul television universe.
VideoTelevisionPublic APIsOpen SourceBreaking BadBetter Call SaulPop CultureDeprecated
Properties
| Name | Type | Description |
|---|---|---|
| char_id | integer | Unique numeric id for the character. |
| name | string | Character's full name. |
| birthday | string | Character's birthday in M-D-YYYY format. |
| occupation | array | List of the character's known occupations. |
| img | string | URL of the character's portrait image (JPG). |
| status | string | Whether the character is alive, deceased, or presumed dead. |
| nickname | string | A known nickname for the character. |
| appearance | array | List of Breaking Bad seasons in which the character appeared. |
| portrayed | string | Actor who portrayed the character. |
| category | string | Comma-separated list of series the character appears in. |
| better_call_saul_appearance | array | List of Better Call Saul seasons in which the character appeared. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/breaking-bad/json-schema/breaking-bad-character-schema.json",
"title": "Character",
"description": "A character from the Breaking Bad or Better Call Saul television universe.",
"type": "object",
"x-schema-source": "documentation",
"x-source-url": "https://github.com/timbiles/Breaking-Bad--API",
"properties": {
"char_id": {
"type": "integer",
"description": "Unique numeric id for the character.",
"examples": [1]
},
"name": {
"type": "string",
"description": "Character's full name.",
"examples": ["Walter White"]
},
"birthday": {
"type": "string",
"description": "Character's birthday in M-D-YYYY format.",
"examples": ["09-07-1958"]
},
"occupation": {
"type": "array",
"description": "List of the character's known occupations.",
"items": { "type": "string" },
"examples": [["High School Chemistry Teacher", "Meth King Pin"]]
},
"img": {
"type": "string",
"format": "uri",
"description": "URL of the character's portrait image (JPG)."
},
"status": {
"type": "string",
"description": "Whether the character is alive, deceased, or presumed dead.",
"examples": ["Alive", "Deceased", "Presumed dead"]
},
"nickname": {
"type": "string",
"description": "A known nickname for the character.",
"examples": ["Heisenberg"]
},
"appearance": {
"type": "array",
"description": "List of Breaking Bad seasons in which the character appeared.",
"items": { "type": "integer" }
},
"portrayed": {
"type": "string",
"description": "Actor who portrayed the character.",
"examples": ["Bryan Cranston"]
},
"category": {
"type": "string",
"description": "Comma-separated list of series the character appears in.",
"examples": ["Breaking Bad", "Breaking Bad, Better Call Saul"]
},
"better_call_saul_appearance": {
"type": "array",
"description": "List of Better Call Saul seasons in which the character appeared.",
"items": { "type": "integer" }
}
},
"required": ["char_id", "name"]
}