Apache Pulsar · Schema
Policies
Policies schema from Apache Pulsar
Cloud NativeMessagingMulti-TenantPub-SubStreamingApacheOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| replication_clusters | array | |
| bundles | object | |
| retention_policies | object | |
| schema_auto_update_compatibility_strategy | string | |
| message_ttl_in_seconds | integer | |
| max_producers_per_topic | integer | |
| max_consumers_per_topic | integer | |
| max_consumers_per_subscription | integer | |
| backlog_quota_map | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/apache-pulsar/refs/heads/main/json-schema/apache-pulsar-policies-schema.json",
"title": "Policies",
"description": "Policies schema from Apache Pulsar",
"type": "object",
"properties": {
"replication_clusters": {
"type": "array",
"items": {
"type": "string"
}
},
"bundles": {
"type": "object"
},
"retention_policies": {
"$ref": "#/components/schemas/RetentionPolicies"
},
"schema_auto_update_compatibility_strategy": {
"type": "string"
},
"message_ttl_in_seconds": {
"type": "integer"
},
"max_producers_per_topic": {
"type": "integer"
},
"max_consumers_per_topic": {
"type": "integer"
},
"max_consumers_per_subscription": {
"type": "integer"
},
"backlog_quota_map": {
"type": "object"
}
}
}