check_compatibility
Verify schema compatibility with the latest version in Kafka Schema Registry to ensure data consistency and prevent integration issues.
Instructions
Check if a schema is compatible with the latest version.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | ||
registry | No | ||
schema_definition | Yes | ||
schema_type | No | AVRO | |
subject | Yes |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Context"
},
"registry": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Registry"
},
"schema_definition": {
"additionalProperties": true,
"title": "Schema Definition",
"type": "object"
},
"schema_type": {
"default": "AVRO",
"title": "Schema Type",
"type": "string"
},
"subject": {
"title": "Subject",
"type": "string"
}
},
"required": [
"subject",
"schema_definition"
],
"type": "object"
}