Apache Kafka · JSON Structure

Kafka Rest Proxy Produce Response Structure

ProduceResponse schema from Apache kafka

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

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

Properties

error_code cluster_id topic_name partition_id offset timestamp

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-rest-proxy-produce-response-structure.json",
  "name": "ProduceResponse",
  "description": "ProduceResponse schema from Apache kafka",
  "properties": {
    "error_code": {
      "type": "integer"
    },
    "cluster_id": {
      "type": "string"
    },
    "topic_name": {
      "type": "string"
    },
    "partition_id": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    },
    "timestamp": {
      "type": "datetime"
    }
  }
}