{ "$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:
SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.
SchemaId$SchemaName: The name of the schema. One of SchemaArn or SchemaName has to be provided.
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"
]
}