get_subject_config
Retrieve configuration settings for a specific Kafka Schema Registry subject. Supports backward compatibility with options to specify subject, context, and registry.
Instructions
Get configuration settings for a specific subject.
NOTE: This tool is maintained for backward compatibility. Consider using the 'subject://{name}/{context}/{subject}/config' resource instead for better performance.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | ||
registry | No | ||
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"
},
"subject": {
"title": "Subject",
"type": "string"
}
},
"required": [
"subject"
],
"type": "object"
}