{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "layoutcolumn.schema.json",
  "title": "Layout Column",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "const": "column",
      "description": "Shold be always set to column"
    },
    "components": {
      "type": "array",
      "minItems": 1,
      "maxItems": 1,
      "items": {
        "oneOf": [
          { "$ref": "passage-comp.schema.json" },
          { "$ref": "html-comp.schema.json" },
          { "$ref": "question-comp.schema.json" },
          { "$ref": "questionitem.schema.json" },
          { "$ref": "closereader-comp.schema.json" },
          { "$ref": "table.schema.json" },
          { "$ref": "image-comp.schema.json" },
          { "$ref": "video-comp.schema.json" },
          { "$ref": "audio-comp.schema.json" }
        ]
      }
    }
  },
  "required": [ "type", "components" ],
  "additionalProperties": false
}
