export_subject
Export all versions of a subject with metadata and configurations from Kafka Schema Registry for backup or migration purposes using MCP server.
Instructions
Export all versions of a subject.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | ||
include_config | No | ||
include_metadata | No | ||
include_versions | No | all | |
registry | No | ||
subject | Yes |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Context"
},
"include_config": {
"default": true,
"title": "Include Config",
"type": "boolean"
},
"include_metadata": {
"default": true,
"title": "Include Metadata",
"type": "boolean"
},
"include_versions": {
"default": "all",
"title": "Include Versions",
"type": "string"
},
"registry": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Registry"
},
"subject": {
"title": "Subject",
"type": "string"
}
},
"required": [
"subject"
],
"type": "object"
}