Amazon Glue · JSON Structure

Glue Get Schema Versions Diff Input Structure

GetSchemaVersionsDiffInput schema from Amazon Glue API

Type: object Properties: 4 Required: 4
AnalyticsData CatalogData IntegrationData PipelineETLServerless

GetSchemaVersionsDiffInput is a JSON Structure definition published by Amazon Glue, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

SchemaId FirstSchemaVersionNumber SecondSchemaVersionNumber SchemaDiffType

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-get-schema-versions-diff-input-structure.json",
  "name": "GetSchemaVersionsDiffInput",
  "description": "GetSchemaVersionsDiffInput schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "SchemaId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SchemaId"
        },
        {
          "description": "<p>This is a wrapper structure to contain schema identity fields. The structure contains:</p> <ul> <li> <p>SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. One of <code>SchemaArn</code> or <code>SchemaName</code> has to be provided.</p> </li> <li> <p>SchemaId$SchemaName: The name of the schema. One of <code>SchemaArn</code> or <code>SchemaName</code> has to be provided.</p> </li> </ul>"
        }
      ]
    },
    "FirstSchemaVersionNumber": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SchemaVersionNumber"
        },
        {
          "description": "The first of the two schema versions to be compared."
        }
      ]
    },
    "SecondSchemaVersionNumber": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SchemaVersionNumber"
        },
        {
          "description": "The second of the two schema versions to be compared."
        }
      ]
    },
    "SchemaDiffType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SchemaDiffType"
        },
        {
          "description": "Refers to <code>SYNTAX_DIFF</code>, which is the currently supported diff type."
        }
      ]
    }
  },
  "required": [
    "SchemaId",
    "FirstSchemaVersionNumber",
    "SecondSchemaVersionNumber",
    "SchemaDiffType"
  ]
}