Apache Kafka · Schema

TaskStatus

TaskStatus schema from Apache kafka

Distributed SystemsEvent StreamingMessagingOpen SourcePub-Sub

Properties

Name Type Description
id integer
state string
worker_id string
trace string
View JSON Schema on GitHub

JSON Schema

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