Google BigQuery · Schema

TableList

AnalyticsBig DataCloudData WarehouseServerlessSQL

Properties

Name Type Description
kind string The resource type
tables array Tables in the requested dataset
nextPageToken string A token to request the next page of results
totalItems integer The total number of tables in the dataset
View JSON Schema on GitHub

JSON Schema

google-bigquery-tablelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TableList",
  "title": "TableList",
  "type": "object",
  "properties": {
    "kind": {
      "type": "string",
      "description": "The resource type"
    },
    "tables": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Table"
      },
      "description": "Tables in the requested dataset"
    },
    "nextPageToken": {
      "type": "string",
      "description": "A token to request the next page of results"
    },
    "totalItems": {
      "type": "integer",
      "description": "The total number of tables in the dataset"
    }
  }
}