Skip to content

Describe Schema

schemas_describe_schema R Documentation

Retrieve the schema definition

Description

Retrieve the schema definition.

Usage

schemas_describe_schema(RegistryName, SchemaName, SchemaVersion)

Arguments

RegistryName

[required] The name of the registry.

SchemaName

[required] The name of the schema.

SchemaVersion

Specifying this limits the results to only this schema version.

Value

A list with the following syntax:

list(
  Content = "string",
  Description = "string",
  LastModified = as.POSIXct(
    "2015-01-01"
  ),
  SchemaArn = "string",
  SchemaName = "string",
  SchemaVersion = "string",
  Tags = list(
    "string"
  ),
  Type = "string",
  VersionCreatedDate = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$describe_schema(
  RegistryName = "string",
  SchemaName = "string",
  SchemaVersion = "string"
)