{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://kiduna.design/schemas/bellwether/portal.schema.json",
  "title": "Bellwether  Schema",
  "type": "object",
  "required": [
    "id",
    "type",
    "version",
    "sceneId",
    "destinationId",
    "state",
    "movable",
    "anchors",
    "previewPolicy",
    "transition"
  ],
  "properties": {
    "id": {
      "type": "string",
      "minLength": 3
    },
    "type": {
      "const": "portal"
    },
    "version": {
      "type": "string",
      "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$"
    },
    "sceneId": {
      "type": "string"
    },
    "destinationId": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "movable": {
      "type": "boolean"
    },
    "anchors": {
      "type": "object"
    },
    "previewPolicy": {
      "type": "string"
    },
    "transition": {
      "type": "object"
    }
  },
  "additionalProperties": true
}
