Amazon Glue · JSON Structure

Glue Delete Schema Response Structure

DeleteSchemaResponse schema from Amazon Glue API

Type: object Properties: 3
AnalyticsData CatalogData IntegrationData PipelineETLServerless

DeleteSchemaResponse is a JSON Structure definition published by Amazon Glue, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

SchemaArn SchemaName Status

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-structure/glue-delete-schema-response-structure.json",
  "name": "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."
        }
      ]
    }
  }
}