{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://iarpg.com/comparison-record.schema.json",
  "title": "IARPG Scenario Comparison",
  "type": "object",
  "required": [
    "comparison_id",
    "mission_id",
    "seed",
    "branch_a",
    "branch_b",
    "differences",
    "generated_utc"
  ],
  "properties": {
    "comparison_id": {
      "type": "string"
    },
    "mission_id": {
      "type": "string"
    },
    "seed": {
      "type": "string"
    },
    "branch_a": {
      "type": "object"
    },
    "branch_b": {
      "type": "object"
    },
    "differences": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "generated_utc": {
      "type": "string",
      "format": "date-time"
    }
  }
}
