{
  "$id": "questionfeedback.schema.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Question Feedback",
  "type": "object",
  "properties": {
    "feedbacktype": {
      "type": "string",
      "enum": [
        "Generic",
        "CorrectIncorrect",
        "Specific",
        "CorrectSpecific",
        "Incorrect",
        "IncorrectExplanation",
        "Situational"
      ]
    },
    "items": {
      "type": "array",
      "minItems": 1,
      "items": {
        "oneOf": [
          { "$ref": "audio-comp.schema.json" },
          { "$ref": "video-comp.schema.json" },
          { "$ref": "passage-comp.schema.json" }
        ]
      }
    }
  },
  "required": [ "feedbacktype", "items" ],
  "additionalProperties": false
}