{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-delete-schema-versions-input-schema.json",
"title": "DeleteSchemaVersionsInput",
"description": "DeleteSchemaVersionsInput schema from Amazon Glue API",
"type": "object",
"properties": {
"SchemaId": {
"allOf": [
{
"$ref": "#/components/schemas/SchemaId"
},
{
"description": "This is a wrapper structure that may contain the schema name and Amazon Resource Name (ARN)."
}
]
},
"Versions": {
"allOf": [
{
"$ref": "#/components/schemas/VersionsString"
},
{
"description": "<p>A version range may be supplied which may be of the format:</p> <ul> <li> <p>a single version number, 5</p> </li> <li> <p>a range, 5-8 : deletes versions 5, 6, 7, 8</p> </li> </ul>"
}
]
}
},
"required": [
"SchemaId",
"Versions"
]
}