{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://kiduna.design/schemas/bellwether/asset.schema.json",
  "title": "Bellwether  Schema",
  "type": "object",
  "required": [
    "id",
    "type",
    "version",
    "canonicalName",
    "category",
    "projection",
    "dimensionsWU",
    "anchors",
    "requiredStates",
    "provenance"
  ],
  "properties": {
    "id": {
      "type": "string",
      "minLength": 3
    },
    "type": {
      "const": "asset"
    },
    "version": {
      "type": "string",
      "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$"
    },
    "canonicalName": {
      "type": "string"
    },
    "category": {
      "type": "string"
    },
    "projection": {
      "type": "string"
    },
    "dimensionsWU": {
      "type": "object"
    },
    "anchors": {
      "type": "array"
    },
    "requiredStates": {
      "type": "array"
    },
    "provenance": {
      "type": "object"
    }
  },
  "additionalProperties": true
}
