Apache Kafka · JSON Structure

Kafka Connect Create Connector Request Structure

CreateConnectorRequest schema from Apache kafka

Type: object Properties: 2 Required: 2
Distributed SystemsEvent StreamingMessagingOpen SourcePub-Sub

CreateConnectorRequest is a JSON Structure definition published by Apache Kafka, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name config

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "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-connect-create-connector-request-structure.json",
  "name": "CreateConnectorRequest",
  "description": "CreateConnectorRequest schema from Apache kafka",
  "properties": {
    "name": {
      "type": "string"
    },
    "config": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "name",
    "config"
  ]
}