Apache Kafka · JSON Structure

Kafka Connect Connector Status Structure

ConnectorStatus schema from Apache kafka

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

ConnectorStatus 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 connector 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-status-structure.json",
  "name": "ConnectorStatus",
  "description": "ConnectorStatus schema from Apache kafka",
  "properties": {
    "name": {
      "type": "string"
    },
    "connector": {
      "type": "object",
      "properties": {
        "state": {
          "type": "string",
          "enum": [
            "UNASSIGNED",
            "RUNNING",
            "PAUSED",
            "FAILED",
            "STOPPED"
          ]
        },
        "worker_id": {
          "type": "string"
        }
      }
    },
    "tasks": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TaskStatus"
      }
    },
    "type": {
      "type": "string"
    }
  }
}