Google BigQuery · Schema

TableReference

AnalyticsBig DataCloudData WarehouseServerlessSQL

Properties

Name Type Description
projectId string The ID of the project containing the table
datasetId string The ID of the dataset containing the table
tableId string The ID of the table
View JSON Schema on GitHub

JSON Schema

google-bigquery-tablereference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TableReference",
  "title": "TableReference",
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "description": "The ID of the project containing the table"
    },
    "datasetId": {
      "type": "string",
      "description": "The ID of the dataset containing the table"
    },
    "tableId": {
      "type": "string",
      "description": "The ID of the table"
    }
  }
}