Apache Kafka · JSON Structure

Kafka Connect Connector Info Structure

ConnectorInfo schema from Apache kafka

Type: object Properties: 4
Distributed SystemsEvent StreamingMessagingOpen SourcePub-Sub

ConnectorInfo is a JSON Structure definition published by Apache Kafka, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name config tasks type

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-connector-info-structure.json",
  "name": "ConnectorInfo",
  "description": "ConnectorInfo schema from Apache kafka",
  "properties": {
    "name": {
      "type": "string"
    },
    "config": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "tasks": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "connector": {
            "type": "string"
          },
          "task": {
            "type": "integer"
          }
        }
      }
    },
    "type": {
      "type": "string",
      "enum": [
        "source",
        "sink"
      ]
    }
  }
}