{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-update-schema-input-schema.json", "title": "UpdateSchemaInput", "description": "UpdateSchemaInput 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:

" } ] }, "SchemaVersionNumber": { "allOf": [ { "$ref": "#/components/schemas/SchemaVersionNumber" }, { "description": "Version number required for check pointing. One of VersionNumber or Compatibility has to be provided." } ] }, "Compatibility": { "allOf": [ { "$ref": "#/components/schemas/Compatibility" }, { "description": "The new compatibility setting for the schema." } ] }, "Description": { "allOf": [ { "$ref": "#/components/schemas/DescriptionString" }, { "description": "The new description for the schema." } ] } }, "required": [ "SchemaId" ] }