get_schema_versions
Retrieve all schema versions for a specific subject in the Kafka Schema Registry. Use this tool for backward compatibility, or switch to the 'schema://{name}/{context}/{subject}/versions' resource for improved performance.
Instructions
Get all versions of a schema for a subject.
NOTE: This tool is maintained for backward compatibility. Consider using the 'schema://{name}/{context}/{subject}/versions' 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"
}