{
  "type": "object",
  "additionalProperties": false,
  "required": ["answers"],
  "properties": {
    "answers": {
      "type": "array",
      "minItems": 15,
      "maxItems": 15,
      "items": {
        "type": "object",
        "additionalProperties": false,
        "required": ["id", "answer", "citations", "refusal", "reason"],
        "properties": {
          "id": {
            "type": "string",
            "enum": ["q01", "q02", "q03", "q04", "q05", "q06", "q07", "q08", "q09", "q10", "q11", "sm1", "os1", "os2", "os3"]
          },
          "answer": {
            "type": "string"
          },
          "citations": {
            "type": "array",
            "items": {
              "type": "string",
              "enum": ["S1", "S2", "S3", "S4", "S5", "S6", "S7", "G", "T1"]
            }
          },
          "refusal": {
            "type": "boolean"
          },
          "reason": {
            "type": "string"
          }
        }
      }
    }
  }
}
