export_schema
Export Kafka Schema Registry schemas in a specified format. Define subject, version, context, and registry to generate the desired output.
Instructions
Export a single schema in the specified format.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | ||
format | No | json | |
registry | No | ||
subject | Yes | ||
version | No | latest |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Context"
},
"format": {
"default": "json",
"title": "Format",
"type": "string"
},
"registry": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Registry"
},
"subject": {
"title": "Subject",
"type": "string"
},
"version": {
"default": "latest",
"title": "Version",
"type": "string"
}
},
"required": [
"subject"
],
"type": "object"
}