Amazon Glue · Schema

DeleteSchemaResponse

DeleteSchemaResponse schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
SchemaArn object
SchemaName object
Status object
View JSON Schema on GitHub

JSON Schema

glue-delete-schema-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-delete-schema-response-schema.json",
  "title": "DeleteSchemaResponse",
  "description": "DeleteSchemaResponse schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "SchemaArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GlueResourceArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the schema being deleted."
        }
      ]
    },
    "SchemaName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SchemaRegistryNameString"
        },
        {
          "description": "The name of the schema being deleted."
        }
      ]
    },
    "Status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SchemaStatus"
        },
        {
          "description": "The status of the schema."
        }
      ]
    }
  }
}