{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://kiduna.design/schemas/bellwether/event.schema.json",
  "title": "Bellwether  Schema",
  "type": "object",
  "required": [
    "id",
    "type",
    "version",
    "name",
    "aggregate",
    "durable",
    "required"
  ],
  "properties": {
    "id": {
      "type": "string",
      "minLength": 3
    },
    "type": {
      "const": "event"
    },
    "version": {
      "type": "string",
      "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$"
    },
    "name": {
      "type": "string"
    },
    "aggregate": {
      "type": "string"
    },
    "durable": {
      "type": "boolean"
    },
    "required": {
      "type": "array"
    }
  },
  "additionalProperties": true
}
