{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://kiduna.design/schemas/bellwether/scene-instance.schema.json",
  "title": "Bellwether  Schema",
  "type": "object",
  "required": [
    "id",
    "type",
    "version",
    "sceneId",
    "shardId",
    "canonicalStateVersion",
    "instanceState"
  ],
  "properties": {
    "id": {
      "type": "string",
      "minLength": 3
    },
    "type": {
      "const": "scene-instance"
    },
    "version": {
      "type": "string",
      "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$"
    },
    "sceneId": {
      "type": "string"
    },
    "shardId": {
      "type": "string"
    },
    "canonicalStateVersion": {
      "type": "integer"
    },
    "instanceState": {
      "type": "object"
    }
  },
  "additionalProperties": true
}
