Skip to main content
Glama

execute_sql_readonly

Read-onlyIdempotent

Run a read-only SQL query in the project and return the result. Prefer this tool over execute_sql if possible.

This tool is restricted to only SELECT statements. INSERT, UPDATE, and DELETE statements and stored procedures aren't allowed. If the query doesn't include a SELECT statement, an error is returned. For information on creating queries, see the GoogleSQL documentation.

Example Queries:

-- Count the number of penguins in each island.
SELECT island, COUNT(*) AS population
FROM bigquery-public-data.ml_datasets.penguins GROUP BY island

-- Evaluate a bigquery ML Model.
SELECT * FROM ML.EVALUATE(MODEL `my_dataset.my_model`)

-- Evaluate BigQuery ML model on custom data
SELECT *
FROM ML.EVALUATE(MODEL `my_dataset.my_model`, (SELECT * FROM `my_dataset.my_table`))

-- Predict using BigQuery ML model:
SELECT *
FROM ML.PREDICT(MODEL `my_dataset.my_model`, (SELECT * FROM `my_dataset.my_table`))

-- Forecast data using AI.FORECAST
SELECT *
FROM AI.FORECAST(TABLE `project.dataset.my_table`, data_col => 'num_trips',
  timestamp_col => 'date', id_cols => ['usertype'], horizon => 30)

Queries executed using the execute_sql_readonly tool will always have the job label goog-mcp-server: true automatically set in addition to any custom labels provided in the request. Queries are charged to the project specified in the project_id field.

Query Execution Behavior:

  • If the query completes within the synchronous timeout (default 20 seconds or custom timeout_ms), the tool returns job_complete: true and the result rows directly. For fast queries, job_id may be omitted as no persistent background job is created; no further action or polling is needed.

  • If the query takes longer than timeout_ms, the tool returns job_complete: false and a job_id. In this case, use the get_query_results tool with job_id to poll until job_complete: true, or use cancel_job to abort the running query.

  • You can optionally specify timeout_ms to configure the maximum synchronous wait time in milliseconds (defaults to 20,000 ms), and job_timeout_ms to enforce a hard server-side timeout after which BigQuery automatically terminates the job.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesRequired. The query to execute in the form of a GoogleSQL query.
dryRunNoOptional. If set to true, BigQuery doesn't run the job. Instead, if the query is valid, BigQuery returns statistics about the job such as how many bytes would be processed. If the query is invalid, an error returns. The default value is false.
labelsNoOptional. The labels associated with this query. Labels can be used to organize and group query jobs. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label keys must start with a letter and each label in the map must have a different key.
projectIdYesRequired. Project that will be used for query execution and billing.
timeoutMsNoOptional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).
jobTimeoutMsNoOptional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
rowsNoAn object with as many results as can be contained within the maximum permitted reply size. To get any additional rows, you can call GetQueryResults and specify the jobReference returned above.
jobIdNoOutput only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.
errorsNoOutput only. The first errors or warnings encountered during the running of the job. The final message includes the number of errors that caused the process to stop. Errors here do not necessarily mean that the job has completed or was unsuccessful. For more information about error messages, see [Error messages](https://cloud.google.com/bigquery/docs/error-messages).
schemaNoThe schema of the results. Present only when the query completes successfully.
queryIdNoOutput only. The ID of the query.
jobCompleteNoWhether the query has completed or not. If rows or totalRows are present, this will always be true. If this is false, totalRows will not be available.
totalSlotMsNoOutput only. Number of slot ms the user is actually billed for.
totalBytesBilledNoOutput only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.
numDmlAffectedRowsNoOutput only. The number of rows affected by a DML statement.
totalBytesProcessedNoOutput only. The total number of bytes processed for this query.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  2. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  3. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  4. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  5. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  6. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  7. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  8. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  9. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  10. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  11. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  12. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  13. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  14. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  15. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  16. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  17. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  18. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  19. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  20. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  21. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  22. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  23. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  24. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  25. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  26. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  27. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  28. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  29. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  30. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  31. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  32. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  33. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  34. Changed1 schema field changed
    • addedInput schema / properties / labels
      Added value: +{
      +  "additionalProperties": {
      +    "type": "string"
      +  },
      +  "description": "Optional. The labels associated with this query. Labels can be used to organize and group query jobs. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label keys must start with a letter and each label in the map must have a different key.",
      +  "type": "object"
      +}
  35. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."
  36. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
  37. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."
  38. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
  39. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."
  40. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
  41. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."
  42. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
  43. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."
  44. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
  45. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."
  46. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
  47. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."
  48. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  49. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  50. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  51. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  52. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  53. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  54. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  55. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  56. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  57. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  58. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  59. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  60. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  61. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  62. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  63. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  64. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  65. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  66. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  67. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  68. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  69. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  70. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  71. Changed4 schema fields changed
    • addedOutput schema / $defs / DataGovernanceTagsInfo
      Added value: +{
      +  "properties": {
      +    "dataGovernanceTags": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      +      "type": "object"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DataPolicyList
      Added value: +{
      +  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      +  "properties": {
      +    "dataPolicies": {
      +      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      +      "items": {
      +        "$ref": "#/$defs/DataPolicyOption"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Added value: +{
      +  "$ref": "#/$defs/DataGovernanceTagsInfo",
      +  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Added value: +{
      +  "$ref": "#/$defs/DataPolicyList",
      +  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      +}
  72. Changed4 schema fields changed
    • removedOutput schema / $defs / DataGovernanceTagsInfo
      Removed value: -{
      -  "properties": {
      -    "dataGovernanceTags": {
      -      "additionalProperties": {
      -        "type": "string"
      -      },
      -      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      -      "type": "object"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / DataPolicyList
      Removed value: -{
      -  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      -  "properties": {
      -    "dataPolicies": {
      -      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      -      "items": {
      -        "$ref": "#/$defs/DataPolicyOption"
      -      },
      -      "type": "array"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Removed value: -{
      -  "$ref": "#/$defs/DataGovernanceTagsInfo",
      -  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Removed value: -{
      -  "$ref": "#/$defs/DataPolicyList",
      -  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      -}
  73. Changed4 schema fields changed
    • addedOutput schema / $defs / DataGovernanceTagsInfo
      Added value: +{
      +  "properties": {
      +    "dataGovernanceTags": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      +      "type": "object"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DataPolicyList
      Added value: +{
      +  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      +  "properties": {
      +    "dataPolicies": {
      +      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      +      "items": {
      +        "$ref": "#/$defs/DataPolicyOption"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Added value: +{
      +  "$ref": "#/$defs/DataGovernanceTagsInfo",
      +  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Added value: +{
      +  "$ref": "#/$defs/DataPolicyList",
      +  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      +}
  74. Changed4 schema fields changed
    • removedOutput schema / $defs / DataGovernanceTagsInfo
      Removed value: -{
      -  "properties": {
      -    "dataGovernanceTags": {
      -      "additionalProperties": {
      -        "type": "string"
      -      },
      -      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      -      "type": "object"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / DataPolicyList
      Removed value: -{
      -  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      -  "properties": {
      -    "dataPolicies": {
      -      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      -      "items": {
      -        "$ref": "#/$defs/DataPolicyOption"
      -      },
      -      "type": "array"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Removed value: -{
      -  "$ref": "#/$defs/DataGovernanceTagsInfo",
      -  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Removed value: -{
      -  "$ref": "#/$defs/DataPolicyList",
      -  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      -}
  75. Changed4 schema fields changed
    • addedOutput schema / $defs / DataGovernanceTagsInfo
      Added value: +{
      +  "properties": {
      +    "dataGovernanceTags": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      +      "type": "object"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DataPolicyList
      Added value: +{
      +  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      +  "properties": {
      +    "dataPolicies": {
      +      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      +      "items": {
      +        "$ref": "#/$defs/DataPolicyOption"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Added value: +{
      +  "$ref": "#/$defs/DataGovernanceTagsInfo",
      +  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Added value: +{
      +  "$ref": "#/$defs/DataPolicyList",
      +  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      +}
  76. Changed4 schema fields changed
    • removedOutput schema / $defs / DataGovernanceTagsInfo
      Removed value: -{
      -  "properties": {
      -    "dataGovernanceTags": {
      -      "additionalProperties": {
      -        "type": "string"
      -      },
      -      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      -      "type": "object"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / DataPolicyList
      Removed value: -{
      -  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      -  "properties": {
      -    "dataPolicies": {
      -      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      -      "items": {
      -        "$ref": "#/$defs/DataPolicyOption"
      -      },
      -      "type": "array"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Removed value: -{
      -  "$ref": "#/$defs/DataGovernanceTagsInfo",
      -  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Removed value: -{
      -  "$ref": "#/$defs/DataPolicyList",
      -  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      -}
  77. Changed4 schema fields changed
    • addedOutput schema / $defs / DataGovernanceTagsInfo
      Added value: +{
      +  "properties": {
      +    "dataGovernanceTags": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      +      "type": "object"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DataPolicyList
      Added value: +{
      +  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      +  "properties": {
      +    "dataPolicies": {
      +      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      +      "items": {
      +        "$ref": "#/$defs/DataPolicyOption"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Added value: +{
      +  "$ref": "#/$defs/DataGovernanceTagsInfo",
      +  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Added value: +{
      +  "$ref": "#/$defs/DataPolicyList",
      +  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      +}
  78. Changed4 schema fields changed
    • removedOutput schema / $defs / DataGovernanceTagsInfo
      Removed value: -{
      -  "properties": {
      -    "dataGovernanceTags": {
      -      "additionalProperties": {
      -        "type": "string"
      -      },
      -      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      -      "type": "object"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / DataPolicyList
      Removed value: -{
      -  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      -  "properties": {
      -    "dataPolicies": {
      -      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      -      "items": {
      -        "$ref": "#/$defs/DataPolicyOption"
      -      },
      -      "type": "array"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Removed value: -{
      -  "$ref": "#/$defs/DataGovernanceTagsInfo",
      -  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Removed value: -{
      -  "$ref": "#/$defs/DataPolicyList",
      -  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      -}
  79. Changed4 schema fields changed
    • addedOutput schema / $defs / DataGovernanceTagsInfo
      Added value: +{
      +  "properties": {
      +    "dataGovernanceTags": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      +      "type": "object"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DataPolicyList
      Added value: +{
      +  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      +  "properties": {
      +    "dataPolicies": {
      +      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      +      "items": {
      +        "$ref": "#/$defs/DataPolicyOption"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Added value: +{
      +  "$ref": "#/$defs/DataGovernanceTagsInfo",
      +  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Added value: +{
      +  "$ref": "#/$defs/DataPolicyList",
      +  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      +}
  80. Changed4 schema fields changed
    • removedOutput schema / $defs / DataGovernanceTagsInfo
      Removed value: -{
      -  "properties": {
      -    "dataGovernanceTags": {
      -      "additionalProperties": {
      -        "type": "string"
      -      },
      -      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      -      "type": "object"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / DataPolicyList
      Removed value: -{
      -  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      -  "properties": {
      -    "dataPolicies": {
      -      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      -      "items": {
      -        "$ref": "#/$defs/DataPolicyOption"
      -      },
      -      "type": "array"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Removed value: -{
      -  "$ref": "#/$defs/DataGovernanceTagsInfo",
      -  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Removed value: -{
      -  "$ref": "#/$defs/DataPolicyList",
      -  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      -}
  81. Changed4 schema fields changed
    • addedOutput schema / $defs / DataGovernanceTagsInfo
      Added value: +{
      +  "properties": {
      +    "dataGovernanceTags": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      +      "type": "object"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DataPolicyList
      Added value: +{
      +  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      +  "properties": {
      +    "dataPolicies": {
      +      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      +      "items": {
      +        "$ref": "#/$defs/DataPolicyOption"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Added value: +{
      +  "$ref": "#/$defs/DataGovernanceTagsInfo",
      +  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Added value: +{
      +  "$ref": "#/$defs/DataPolicyList",
      +  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      +}
  82. Added
  83. Removed
  84. Added
  85. Removed
  86. Added
  87. Removed
  88. Added
  89. Removed
  90. Added
  91. Removed
  92. Added
  93. Removed
  94. Added
  95. Removed
  96. Added

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the `readOnlyHint` and `destructiveHint` annotations, the description adds crucial behavioral details: it automatically sets a job label, bills to the specified project, and explains the synchronous vs asynchronous execution model including timeouts and polling necessity. It also wraps up with clear query execution behavior, which is not captured by annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is thorough but well-structured, starting with a clear purpose and preference, followed by restrictions and examples, and then detailed execution behavior. It uses headings and bullet points to break down complex information, and though long, every sentence contributes to operational clarity with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

While the tool is complex with parameters like `dryRun` and `labels`, the description covers the main execution flow and error conditions but doesn't explicitly describe the output schema or return structure details. However, since an output schema is present sites can infer results, and the description explains job completion states. Missing a few details on `dryRun` and `labels` beyond schema, but overall adequate for the complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and each parameter is described in the schema, so the description doesn't repeat that. However, it adds context for `timeout_ms` and `job_timeout_ms` by explaining their roles in the execution flow, which goes slightly beyond the schema. Given high coverage, baseline 3 applies; the description adds minor extra value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool runs a read-only SQL query and returns results, specifying it only supports SELECT statements. It distinguishes itself from `execute_sql` by explicitly preferring this tool when possible, making it easy to identify its specific role among siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly instructs to prefer this tool over `execute_sql` when possible, and clarifies that non-SELECT statements are not allowed alerting users to errors. It also provides guidance on asynchronous behavior, referencing `get_query_results` and `cancel_job` for long-running queries, making when-to-use alternatives clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources