ConnectorStatus 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-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" } } }