List Schema Versions
schemas_list_schema_versions | R Documentation |
Provides a list of the schema versions and related information¶
Description¶
Provides a list of the schema versions and related information.
Usage¶
Arguments¶
Limit
NextToken
The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.
RegistryName
[required] The name of the registry.
SchemaName
[required] The name of the schema.
Value¶
A list with the following syntax:
list(
NextToken = "string",
SchemaVersions = list(
list(
SchemaArn = "string",
SchemaName = "string",
SchemaVersion = "string",
Type = "OpenApi3"|"JSONSchemaDraft4"
)
)
)
Request syntax¶
svc$list_schema_versions(
Limit = 123,
NextToken = "string",
RegistryName = "string",
SchemaName = "string"
)