generate_resource_templates
Create tailored resource URI templates for Kafka Schema Registry configurations by specifying registry name, context, and subject details.
Instructions
Generate resource URI templates for your specific configuration.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| registry_name | No | ||
| subject | No |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Context"
},
"registry_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Registry Name"
},
"subject": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Subject"
}
},
"type": "object"
}