Apache Kafka · Schema

ConnectorStatus

ConnectorStatus schema from Apache kafka

Distributed SystemsEvent StreamingMessagingOpen SourcePub-Sub

Properties

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

JSON Schema

kafka-connect-connector-status-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-status-schema.json",
  "title": "ConnectorStatus",
  "description": "ConnectorStatus schema from Apache kafka",
  "type": "object",
  "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"
    }
  }
}