Apache Kafka · JSON Structure

Kafka Connect Task Info Structure

TaskInfo schema from Apache kafka

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

TaskInfo is a JSON Structure definition published by Apache Kafka, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id config

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