BigQueryTable

Message defining the location of a BigQuery table. A table is uniquely identified by its projectId, datasetId, and table_name. Within a query a table is often referenced with a string in the format of: <projectId>:<datasetId>.<tableId> or <projectId>.<datasetId>.<tableId>.

JSON representation
{
  "projectId": string,
  "datasetId": string,
  "tableId": string
}
Fields
projectId

string

The Google Cloud Platform project ID of the project containing the table. If omitted, project ID is inferred from the API call.

datasetId

string

Dataset ID of the table.

tableId

string

Name of the table.