update_subject_config
Modify configuration settings for a specific subject in Kafka Schema Registry to ensure compatibility and proper schema management.
Instructions
Update configuration settings for a specific subject.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
compatibility | Yes | ||
context | No | ||
registry | No | ||
subject | Yes |
Input Schema (JSON Schema)
{
"properties": {
"compatibility": {
"title": "Compatibility",
"type": "string"
},
"context": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Context"
},
"registry": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Registry"
},
"subject": {
"title": "Subject",
"type": "string"
}
},
"required": [
"subject",
"compatibility"
],
"type": "object"
}