schemas
Creates, updates, deletes, gets or lists a schemas resource.
Overview
| Name | schemas |
| Type | Resource |
| Id | confluent.schema_registry.schemas |
Fields
| Name | Datatype | Description |
|---|---|---|
maxId | integer | Maximum ID |
references | array | References to other schemas |
schema | string | Schema string identified by the ID |
schemaType | string | Schema type |
Methods
| Name | Accessible by | Required Params | Description |
|---|---|---|---|
get_schema | SELECT | id | Retrieves the schema string identified by the input ID. |
get_schemas | SELECT | | Get the schemas matching the specified parameters. |
get_schema_only | EXEC | id | Retrieves 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
;