type: object
properties:
subject_name:
type: string
description: The name of the schema subject.
example: customer-schema
schema_type:
type: string
enum:
- AVRO
- JSON
- PROTOBUF
description: The type of the schema.
example: AVRO
schema:
type: string
description: The schema definition in the specified format.
example: |-
{
"type": "record",
"name": "Customer",
"fields": [
{"name": "id", "type": "int"},
{"name": "name", "type": "string"}
]
}