{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-search-tables-response-schema.json",
"title": "SearchTablesResponse",
"description": "SearchTablesResponse schema from Amazon Glue API",
"type": "object",
"properties": {
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/Token"
},
{
"description": "A continuation token, present if the current list segment is not the last."
}
]
},
"TableList": {
"allOf": [
{
"$ref": "#/components/schemas/TableList"
},
{
"description": "A list of the requested Table objects. The SearchTables response returns only the tables that you have access to."
}
]
}
}
}