{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://kiduna.design/schemas/bellwether/scene.schema.json",
  "title": "Bellwether  Schema",
  "type": "object",
  "required": [
    "id",
    "type",
    "version",
    "title",
    "purpose",
    "dimension",
    "background",
    "areas",
    "assetIds",
    "interactionIds",
    "portalIds",
    "lightingStates",
    "capacity"
  ],
  "properties": {
    "id": {
      "type": "string",
      "minLength": 3
    },
    "type": {
      "const": "scene"
    },
    "version": {
      "type": "string",
      "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$"
    },
    "title": {
      "type": "string"
    },
    "purpose": {
      "type": "string"
    },
    "dimension": {
      "type": "string"
    },
    "background": {
      "type": "string"
    },
    "areas": {
      "type": "array"
    },
    "assetIds": {
      "type": "array"
    },
    "interactionIds": {
      "type": "array"
    },
    "portalIds": {
      "type": "array"
    },
    "lightingStates": {
      "type": "array"
    },
    "capacity": {
      "type": "object"
    }
  },
  "additionalProperties": true
}
