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