Apache Kafka · JSON Structure

Kafka Connect Config Validation Result Structure

ConfigValidationResult schema from Apache kafka

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

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

Properties

name error_count groups configs

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-config-validation-result-structure.json",
  "name": "ConfigValidationResult",
  "description": "ConfigValidationResult schema from Apache kafka",
  "properties": {
    "name": {
      "type": "string"
    },
    "error_count": {
      "type": "integer"
    },
    "groups": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "configs": {
      "type": "array",
      "items": {
        "type": "object"
      }
    }
  }
}