The getSchemas service returns a list of schemas from the schema registry
server filtered by optional subject prefix, with support for including soft deleted schemas and
limiting results to latest versions only.
Input Parameters
| subjectPrefix (String, optional) |
Filter schemas by subject name prefix. |
| lookupDeleted (Boolean, optional) |
Set to true to include soft-deleted schemas in the results. Default is false.
|
| latest (Boolean, optional) |
Set to true to retrieve only the latest version of each schema. Default is true.
|
|
$connectionName (String, required)
|
Name of the Kafka connection configured with the
Confluent Schema Registry. |
Output Parameters
| schema (Record list, required) |
Array of schemas, each containing: |
| |
type (String, required) |
The schema type (e.g., AVRO, JSON, PROTOBUF). |
| |
content (String, required) |
The schema definition/content. |
| |
references (Record list, optional) |
Array of schema references, each containing: |
| name (String, required) |
The reference name. |
| subject (String, required) |
The subject of the referenced schema. |
| version (Integer, required) |
The version of the referenced schema. |
|
message (String, required)
|
The response message returned after the service
execution. |