{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "slide-set.schema.json",
  "title": "Slide Set",
  "type": "object",
  "description": "A contiguous run of slides within a deck (e.g. a day). Maps 1:1 to the Doolittle SlideSetInput. startIndex/endIndex are 0-based indices into the deck's components array (start inclusive, end exclusive).",
  "required": [ "startIndex", "endIndex" ],
  "properties": {
    "id": { "type": "string" },
    "name": { "type": "string" },
    "startIndex": { "type": "integer", "minimum": 0, "description": "0-based index into the deck's components array. Inclusive." },
    "endIndex": { "type": "integer", "minimum": 0, "description": "0-based index into the deck's components array. Exclusive." },
    "pacingTimeSeconds": { "type": [ "integer", "null" ], "minimum": 0 }
  }
}
