{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "slide-grid.schema.json",
  "title": "Slide Grid",
  "type": "object",
  "description": "The authoring grid a slide template's slots are placed against. HS Science slides use a 12-column x 8-row Bento grid (design-spec/SLIDE-SPEC.md section 1).",
  "required": [ "cols", "rows" ],
  "properties": {
    "cols": {
      "type": "integer",
      "minimum": 1,
      "description": "Number of columns in the grid (12 for HS Science)."
    },
    "rows": {
      "type": "integer",
      "minimum": 1,
      "description": "Number of rows in the grid (8 for HS Science)."
    }
  }
}
