Breaking Bad · JSON Structure

Breaking Bad Quote Structure

Quote record from the Breaking Bad community API.

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

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

Properties

quote_id quote author series

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/00/schema",
  "name": "Quote",
  "type": "object",
  "description": "Quote record from the Breaking Bad community API.",
  "x-schema-source": "documentation",
  "x-source-url": "https://github.com/timbiles/Breaking-Bad--API",
  "properties": {
    "quote_id": { "type": "int32",  "description": "Unique quote id." },
    "quote":    { "type": "string", "description": "Verbatim quote text." },
    "author":   { "type": "string", "description": "Character who said the quote." },
    "series":   { "type": "string", "description": "Series the quote originated from." }
  },
  "required": ["quote_id", "quote", "author"]
}