Amazon Glue · Schema
GetRegistryResponse
GetRegistryResponse schema from Amazon Glue API
AnalyticsData CatalogData IntegrationData PipelineETLServerless
Properties
| Name | Type | Description |
|---|---|---|
| RegistryName | object | |
| RegistryArn | object | |
| Description | object | |
| Status | object | |
| CreatedTime | object | |
| UpdatedTime | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-get-registry-response-schema.json",
"title": "GetRegistryResponse",
"description": "GetRegistryResponse schema from Amazon Glue API",
"type": "object",
"properties": {
"RegistryName": {
"allOf": [
{
"$ref": "#/components/schemas/SchemaRegistryNameString"
},
{
"description": "The name of the registry."
}
]
},
"RegistryArn": {
"allOf": [
{
"$ref": "#/components/schemas/GlueResourceArn"
},
{
"description": "The Amazon Resource Name (ARN) of the registry."
}
]
},
"Description": {
"allOf": [
{
"$ref": "#/components/schemas/DescriptionString"
},
{
"description": "A description of the registry."
}
]
},
"Status": {
"allOf": [
{
"$ref": "#/components/schemas/RegistryStatus"
},
{
"description": "The status of the registry."
}
]
},
"CreatedTime": {
"allOf": [
{
"$ref": "#/components/schemas/CreatedTimestamp"
},
{
"description": "The date and time the registry was created."
}
]
},
"UpdatedTime": {
"allOf": [
{
"$ref": "#/components/schemas/UpdatedTimestamp"
},
{
"description": "The date and time the registry was updated."
}
]
}
}
}