Skip to main content

schemas

Creates, updates, deletes, gets or lists a schemas resource.

Overview

Nameschemas
TypeResource
Idconfluent.schema_registry.schemas

Fields

NameDatatypeDescription
maxIdintegerMaximum ID
referencesarrayReferences to other schemas
schemastringSchema string identified by the ID
schemaTypestringSchema type

Methods

NameAccessible byRequired ParamsDescription
get_schemaSELECTidRetrieves the schema string identified by the input ID.
get_schemasSELECTGet the schemas matching the specified parameters.
get_schema_onlyEXECidRetrieves the schema identified by the input ID.

SELECT examples

Get the schemas matching the specified parameters.

SELECT
maxId,
references,
schema,
schemaType
FROM confluent.schema_registry.schemas
;