Breaking Bad · Schema

Death

A catalogued on-screen death from Breaking Bad or Better Call Saul.

VideoTelevisionPublic APIsOpen SourceBreaking BadBetter Call SaulPop CultureDeprecated

Properties

Name Type Description
death_id integer Unique numeric id for the death record.
death string Name of the character who died.
cause string How the character died.
responsible string Character responsible for the death.
last_words string Character's documented last words.
season integer Season the death occurred in.
episode integer Episode the death occurred in.
number_of_deaths integer Number of deaths attributed to this single record.
View JSON Schema on GitHub

JSON Schema

breaking-bad-death-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/breaking-bad/json-schema/breaking-bad-death-schema.json",
  "title": "Death",
  "description": "A catalogued on-screen death from Breaking Bad or Better Call Saul.",
  "type": "object",
  "x-schema-source": "documentation",
  "x-source-url": "https://github.com/timbiles/Breaking-Bad--API",
  "properties": {
    "death_id": {
      "type": "integer",
      "description": "Unique numeric id for the death record.",
      "examples": [1]
    },
    "death": {
      "type": "string",
      "description": "Name of the character who died.",
      "examples": ["Emilio Koyama"]
    },
    "cause": {
      "type": "string",
      "description": "How the character died.",
      "examples": ["Poison Gas", "Decapitation", "Gunshot"]
    },
    "responsible": {
      "type": "string",
      "description": "Character responsible for the death.",
      "examples": ["Walter White"]
    },
    "last_words": {
      "type": "string",
      "description": "Character's documented last words.",
      "examples": ["No, please!"]
    },
    "season": {
      "type": "integer",
      "description": "Season the death occurred in.",
      "minimum": 1
    },
    "episode": {
      "type": "integer",
      "description": "Episode the death occurred in.",
      "minimum": 1
    },
    "number_of_deaths": {
      "type": "integer",
      "description": "Number of deaths attributed to this single record.",
      "minimum": 1
    }
  },
  "required": ["death_id", "death"]
}