Apache Kafka · Schema

TaskInfo

TaskInfo schema from Apache kafka

Distributed SystemsEvent StreamingMessagingOpen SourcePub-Sub

Properties

Name Type Description
id object
config object
View JSON Schema on GitHub

JSON Schema

kafka-connect-task-info-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-info-schema.json",
  "title": "TaskInfo",
  "description": "TaskInfo schema from Apache kafka",
  "type": "object",
  "properties": {
    "id": {
      "type": "object",
      "properties": {
        "connector": {
          "type": "string"
        },
        "task": {
          "type": "integer"
        }
      }
    },
    "config": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}