Axon Framework · Schema

CreateContextRequest

CQRSEvent SourcingEvent-DrivenJavaMessagingMicroservices

Properties

Name Type Description
context string
replicationGroup string
nodes array
View JSON Schema on GitHub

JSON Schema

axon-createcontextrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CreateContextRequest",
  "type": "object",
  "properties": {
    "context": {
      "type": "string"
    },
    "replicationGroup": {
      "type": "string"
    },
    "nodes": {
      "type": "array",
      "items": {
        "type": "object"
      }
    }
  },
  "required": [
    "context"
  ]
}