@asyncapi/specs
Version:
AsyncAPI schema versions
32 lines • 1.02 kB
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://asyncapi.com/bindings/pulsar/0.1.0/server.json",
"title": "Server Schema",
"description": "This object contains server information of Pulsar broker, which covers cluster and tenant admin configuration. This object contains additional information not possible to represent within the core AsyncAPI specification.",
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^x-[\\w\\d\\.\\x2d_]+$": {
"$ref": "http://asyncapi.com/definitions/3.0.0/specificationExtension.json"
}
},
"properties": {
"tenant": {
"type": "string",
"description": "The pulsar tenant. If omitted, 'public' MUST be assumed."
},
"bindingVersion": {
"type": "string",
"enum": [
"0.1.0"
],
"description": "The version of this binding. If omitted, 'latest' MUST be assumed."
}
},
"examples": [
{
"tenant": "contoso",
"bindingVersion": "0.1.0"
}
]
}