Breaking Bad · JSON Structure

Breaking Bad Episode Structure

Episode record from the Breaking Bad community API.

Type: object Properties: 7 Required: 3
VideoTelevisionPublic APIsOpen SourceBreaking BadBetter Call SaulPop CultureDeprecated

Episode is a JSON Structure definition published by Breaking Bad, describing 7 properties, of which 3 are required. It conforms to the https://json-structure.org/draft/00/schema meta-schema.

Properties

episode_id title season air_date characters episode series

Meta-schema: https://json-structure.org/draft/00/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/00/schema",
  "name": "Episode",
  "type": "object",
  "description": "Episode record from the Breaking Bad community API.",
  "x-schema-source": "documentation",
  "x-source-url": "https://github.com/timbiles/Breaking-Bad--API",
  "properties": {
    "episode_id": { "type": "int32",  "description": "Unique episode id." },
    "title":      { "type": "string", "description": "Episode title." },
    "season":     { "type": "string", "description": "Season number (string, zero-padded by upstream)." },
    "air_date":   { "type": "string", "description": "Original air date M-D-YYYY." },
    "characters": { "type": "array",  "items": { "type": "string" }, "description": "Characters featured." },
    "episode":    { "type": "string", "description": "Episode number within the season." },
    "series":     { "type": "string", "description": "Breaking Bad or Better Call Saul." }
  },
  "required": ["episode_id", "title", "series"]
}