Amazon Glue · Schema

RemoveSchemaVersionMetadataResponse

RemoveSchemaVersionMetadataResponse schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
SchemaArn object
SchemaName object
RegistryName object
LatestVersion object
VersionNumber object
SchemaVersionId object
MetadataKey object
MetadataValue object
View JSON Schema on GitHub

JSON Schema

glue-remove-schema-version-metadata-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-remove-schema-version-metadata-response-schema.json",
  "title": "RemoveSchemaVersionMetadataResponse",
  "description": "RemoveSchemaVersionMetadataResponse schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "SchemaArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GlueResourceArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the schema."
        }
      ]
    },
    "SchemaName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SchemaRegistryNameString"
        },
        {
          "description": "The name of the schema."
        }
      ]
    },
    "RegistryName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SchemaRegistryNameString"
        },
        {
          "description": "The name of the registry."
        }
      ]
    },
    "LatestVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LatestSchemaVersionBoolean"
        },
        {
          "description": "The latest version of the schema."
        }
      ]
    },
    "VersionNumber": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VersionLongNumber"
        },
        {
          "description": "The version number of the schema."
        }
      ]
    },
    "SchemaVersionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SchemaVersionIdString"
        },
        {
          "description": "The version ID for the schema version."
        }
      ]
    },
    "MetadataKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MetadataKeyString"
        },
        {
          "description": "The metadata key."
        }
      ]
    },
    "MetadataValue": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MetadataValueString"
        },
        {
          "description": "The value of the metadata key."
        }
      ]
    }
  }
}