{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://kiduna.design/schemas/bellwether/quest-state.schema.json",
  "title": "Bellwether  Schema",
  "type": "object",
  "required": [
    "id",
    "type",
    "version",
    "questId",
    "sourceId",
    "state",
    "objectiveStates",
    "aggregateVersion"
  ],
  "properties": {
    "id": {
      "type": "string",
      "minLength": 3
    },
    "type": {
      "const": "quest-state"
    },
    "version": {
      "type": "string",
      "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$"
    },
    "questId": {
      "type": "string"
    },
    "sourceId": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "objectiveStates": {
      "type": "array"
    },
    "aggregateVersion": {
      "type": "integer"
    }
  },
  "additionalProperties": true
}
