Search Schemas
schemas_search_schemas | R Documentation |
Search the schemas¶
Description¶
Search the schemas
Usage¶
Arguments¶
Keywords
[required] Specifying this limits the results to only schemas that include the provided keywords.
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.
Value¶
A list with the following syntax:
list(
NextToken = "string",
Schemas = list(
list(
RegistryName = "string",
SchemaArn = "string",
SchemaName = "string",
SchemaVersions = list(
list(
CreatedDate = as.POSIXct(
"2015-01-01"
),
SchemaVersion = "string",
Type = "OpenApi3"|"JSONSchemaDraft4"
)
)
)
)
)
Request syntax¶
svc$search_schemas(
Keywords = "string",
Limit = 123,
NextToken = "string",
RegistryName = "string"
)