{
  "$id": "questionanswerexplanation.schema.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$ref": "contentitem.schema.json",
  "description": "Question Answer Explanation Content Component in CTK",
  "properties": {
    "type": {
      "type": "string",
      "const": "answerexplanation",
      "description": "Should always be set to answerexplanation"
    },
    "title": {
      "type": "string",
      "minLength": 1
    },
    "components": {
      "type": "array",
      "items": {
        "oneOf": [
          { "$ref": "html-comp.schema.json" },
          { "$ref": "image-comp.schema.json" }
        ]
      }
    }
  },
  "required": [ "type", "title", "components" ],
  "title": "Question Answer Explanation",
  "type": "object"
}
