{ "$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-schema-versions-diff-input-schema.json", "title": "GetSchemaVersionsDiffInput", "description": "GetSchemaVersionsDiffInput schema from Amazon Glue API", "type": "object", "properties": { "SchemaId": { "allOf": [ { "$ref": "#/components/schemas/SchemaId" }, { "description": "

This is a wrapper structure to contain schema identity fields. The structure contains:

" } ] }, "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 SYNTAX_DIFF, which is the currently supported diff type." } ] } }, "required": [ "SchemaId", "FirstSchemaVersionNumber", "SecondSchemaVersionNumber", "SchemaDiffType" ] }