Google BigQuery · Schema

TableDataList

AnalyticsBig DataCloudData WarehouseServerlessSQL

Properties

Name Type Description
kind string The resource type
rows array Rows of results
pageToken string A token to request the next page of results
totalRows string The total number of rows in the table
View JSON Schema on GitHub

JSON Schema

google-bigquery-tabledatalist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TableDataList",
  "title": "TableDataList",
  "type": "object",
  "properties": {
    "kind": {
      "type": "string",
      "description": "The resource type"
    },
    "rows": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Rows of results"
    },
    "pageToken": {
      "type": "string",
      "description": "A token to request the next page of results"
    },
    "totalRows": {
      "type": "string",
      "description": "The total number of rows in the table"
    }
  }
}