Apache Kafka · Schema

ConnectorInfo

ConnectorInfo schema from Apache kafka

Distributed SystemsEvent StreamingMessagingOpen SourcePub-Sub

Properties

Name Type Description
name string
config object
tasks array
type string
View JSON Schema on GitHub

JSON Schema

kafka-connect-connector-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-kafka/refs/heads/main/json-schema/kafka-connect-connector-info-schema.json",
  "title": "ConnectorInfo",
  "description": "ConnectorInfo schema from Apache kafka",
  "type": "object",
  "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"
      ]
    }
  }
}