GetTablesResponse schema from Amazon Glue API
{ "$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-tables-response-schema.json", "title": "GetTablesResponse", "description": "GetTablesResponse schema from Amazon Glue API", "type": "object", "properties": { "TableList": { "allOf": [ { "$ref": "#/components/schemas/TableList" }, { "description": "A list of the requested <code>Table</code> objects." } ] }, "NextToken": { "allOf": [ { "$ref": "#/components/schemas/Token" }, { "description": "A continuation token, present if the current list segment is not the last." } ] } } }