getSubjectSchemas

The getSubjectSchemas service retrieves all schemas for all subjects from the Schema Registry, optionally filtered to latest versions only.

Input Parameters

latest (Boolean, optional) Set to true to retrieve only the latest version of each schema. Default is false.
$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:
  subject (String, required) The subject name.
  id (Integer, required) The unique schema identifier.
  version (Integer, required) The schema version number.
  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.