update_mode
Modify the operation mode of the Kafka Schema Registry to manage schema compatibility and control behavior.
Instructions
Update the mode of the Schema Registry.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | ||
mode | Yes | ||
registry | No |
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"
}
},
"required": [
"mode"
],
"type": "object"
}