update_subject_mode
Change the mode for a specified subject in the Kafka Schema Registry to manage schema compatibility and updates effectively. Input requires subject and mode details.
Instructions
Update the mode for a specific subject.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | ||
mode | Yes | ||
registry | No | ||
subject | Yes |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Context"
},
"mode": {
"title": "Mode",
"type": "string"
},
"registry": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Registry"
},
"subject": {
"title": "Subject",
"type": "string"
}
},
"required": [
"subject",
"mode"
],
"type": "object"
}