Apache Kafka · JSON Structure

Kafka Connect Task Status Structure

TaskStatus schema from Apache kafka

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

TaskStatus 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

id state worker_id trace

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-task-status-structure.json",
  "name": "TaskStatus",
  "description": "TaskStatus schema from Apache kafka",
  "properties": {
    "id": {
      "type": "integer"
    },
    "state": {
      "type": "string",
      "enum": [
        "UNASSIGNED",
        "RUNNING",
        "PAUSED",
        "FAILED"
      ]
    },
    "worker_id": {
      "type": "string"
    },
    "trace": {
      "type": "string"
    }
  }
}