{ "type": "object", "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/apache-kafka/refs/heads/main/json-structure/kafka-rest-proxy-create-topic-request-structure.json", "name": "CreateTopicRequest", "description": "CreateTopicRequest schema from Apache kafka", "properties": { "topic_name": { "type": "string" }, "partitions_count": { "type": "integer" }, "replication_factor": { "type": "integer" }, "configs": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } } }, "required": [ "topic_name" ] }