compare_registries
Analyze and identify discrepancies between two Schema Registry instances by comparing contexts and configurations for accurate alignment.
Instructions
Compare two Schema Registry instances and show differences.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_configs | No | ||
include_contexts | No | ||
source_registry | Yes | ||
target_registry | Yes |
Input Schema (JSON Schema)
{
"properties": {
"include_configs": {
"default": true,
"title": "Include Configs",
"type": "boolean"
},
"include_contexts": {
"default": true,
"title": "Include Contexts",
"type": "boolean"
},
"source_registry": {
"title": "Source Registry",
"type": "string"
},
"target_registry": {
"title": "Target Registry",
"type": "string"
}
},
"required": [
"source_registry",
"target_registry"
],
"type": "object"
}