Axon Framework · Schema

Context

CQRSEvent SourcingEvent-DrivenJavaMessagingMicroservices

Properties

Name Type Description
context string
leader string
roles array
View JSON Schema on GitHub

JSON Schema

axon-context-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Context",
  "type": "object",
  "properties": {
    "context": {
      "type": "string"
    },
    "leader": {
      "type": "string"
    },
    "roles": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "node": {
            "type": "string"
          },
          "role": {
            "type": "string"
          }
        }
      }
    }
  }
}