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