export_context
Export all subjects within a specified context, including metadata, configurations, and versions, for Kafka Schema Registry management and analysis.
Instructions
Export all subjects within a context.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | Yes | ||
include_config | No | ||
include_metadata | No | ||
include_versions | No | all | |
registry | No |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"title": "Context",
"type": "string"
},
"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"
}
},
"required": [
"context"
],
"type": "object"
}