Skip to main content

versions

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

Overview

Nameversions
TypeResource
Idconfluent.schema_registry.versions

Fields

NameDatatypeDescription
subjectstringName of the subject
versionintegerVersion number

Methods

NameAccessible byRequired ParamsDescription
get_versionsSELECTidGet all the subject-version pairs associated with the input ID.
list_versionsSELECTsubjectRetrieves a list of versions registered under the specified subject.

SELECT examples

Get all the subject-version pairs associated with the input ID.

SELECT
subject,
version
FROM confluent.schema_registry.versions
WHERE id = '{{ id }}';