compare_contexts_across_registries
Analyze and align context differences between source and target registries to ensure consistency in Kafka Schema Registry configurations.
Instructions
Compare contexts across two registries.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
source_context | Yes | ||
source_registry | Yes | ||
target_context | No | ||
target_registry | Yes |
Input Schema (JSON Schema)
{
"properties": {
"source_context": {
"title": "Source Context",
"type": "string"
},
"source_registry": {
"title": "Source Registry",
"type": "string"
},
"target_context": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Target Context"
},
"target_registry": {
"title": "Target Registry",
"type": "string"
}
},
"required": [
"source_registry",
"target_registry",
"source_context"
],
"type": "object"
}