Amazon Glue · Schema

GetTablesResponse

GetTablesResponse schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
TableList object
NextToken object
View JSON Schema on GitHub

JSON Schema

glue-get-tables-response-schema.json Raw ↑
{
  "$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."
        }
      ]
    }
  }
}