{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "HotHub Results",
  "type": "object",
  "required": [
    "scenarioId",
    "generatedAt",
    "objectiveScores"
  ],
  "properties": {
    "scenarioId": {
      "type": "string"
    },
    "generatedAt": {
      "type": "string"
    },
    "objectiveScores": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "objectiveId",
          "rating",
          "evidenceCount"
        ]
      }
    },
    "nimsScores": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "component",
          "rating",
          "evidenceCount"
        ]
      }
    },
    "aarActions": {
      "type": "array",
      "items": {
        "type": "object"
      }
    }
  }
}
