Apache Kafka · Schema
Acl
Acl schema from Apache kafka
Distributed SystemsEvent StreamingMessagingOpen SourcePub-Sub
Properties
| Name | Type | Description |
|---|---|---|
| kind | string | |
| metadata | object | |
| cluster_id | string | |
| resource_type | string | |
| resource_name | string | |
| pattern_type | string | |
| principal | string | |
| host | string | |
| operation | string | |
| permission | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/apache-kafka/refs/heads/main/json-schema/kafka-rest-proxy-acl-schema.json",
"title": "Acl",
"description": "Acl schema from Apache kafka",
"type": "object",
"properties": {
"kind": {
"type": "string"
},
"metadata": {
"type": "object"
},
"cluster_id": {
"type": "string"
},
"resource_type": {
"type": "string"
},
"resource_name": {
"type": "string"
},
"pattern_type": {
"type": "string"
},
"principal": {
"type": "string"
},
"host": {
"type": "string"
},
"operation": {
"type": "string"
},
"permission": {
"type": "string"
}
}
}