{ "$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-table-versions-response-schema.json", "title": "GetTableVersionsResponse", "description": "GetTableVersionsResponse schema from Amazon Glue API", "type": "object", "properties": { "TableVersions": { "allOf": [ { "$ref": "#/components/schemas/GetTableVersionsList" }, { "description": "A list of strings identifying available versions of the specified table." } ] }, "NextToken": { "allOf": [ { "$ref": "#/components/schemas/Token" }, { "description": "A continuation token, if the list of available versions does not include the last one." } ] } } }