{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-msk/refs/heads/main/json-schema/msk-api-compatible-kafka-version-schema.json", "title": "CompatibleKafkaVersion", "description": "\n

Contains source Apache Kafka versions and compatible target Apache Kafka versions.

", "type": "object", "properties": { "SourceVersion": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "sourceVersion" }, "description": "\n

An Apache Kafka version.

" } ] }, "TargetVersions": { "allOf": [ { "$ref": "#/components/schemas/__listOf__string" }, { "xml": { "name": "targetVersions" }, "description": "\n

A list of Apache Kafka versions.

" } ] } } }