TaskStatus schema from Apache kafka
{ "$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" } } }