Skip to main content
Glama

execute_sql

Destructive

Run a SQL query in the project and return the result. Prefer the execute_sql_readonly tool if possible.

This tool can execute any query that bigquery supports including:

  • SQL Queries (SELECT, INSERT, UPDATE, DELETE, CREATE, etc.)

  • AI/ML functions like AI.FORECAST, ML.EVALUATE, ML.PREDICT

  • Any other query that bigquery supports.

Example Queries:

-- Insert data into a table.
INSERT INTO `my_project.my_dataset`.my_table (name, age)
VALUES ('Alice', 30);

-- Create a table.
CREATE TABLE `my_project.my_dataset`.my_table (
  name STRING,
  age INT64);

-- DELETE data from a table.
DELETE FROM `my_project.my_dataset`.my_table WHERE name = 'Alice';

-- Create Dataset
CREATE SCHEMA `my_project.my_dataset` OPTIONS (location = 'US');

-- Drop table
DROP TABLE `my_project.my_dataset`.my_table;

-- Drop dataset
DROP SCHEMA `my_project.my_dataset`;

-- Create Model
CREATE OR REPLACE MODEL `my_project.my_dataset.my_model`
OPTIONS (
  model_type = 'LINEAR_REG'
  LS_INIT_LEARN_RATE=0.15,
  L1_REG=1,
  MAX_ITERATIONS=5,
  DATA_SPLIT_METHOD='SEQ',
  DATA_SPLIT_EVAL_FRACTION=0.3,
  DATA_SPLIT_COL='timestamp') AS
SELECT col1, col2, timestamp, label FROM `my_project.my_dataset.my_table`;

Queries executed using the execute_sql tool will always have the default 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.

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.

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.
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. Dates show when Glama detected each change.

  1. 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"
      +}
  2. 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."
  3. 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."
  4. 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."
  5. 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."
  6. 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."
  7. 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."
  8. 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."
  9. 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."
  10. 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."
  11. 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."
  12. 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."
  13. 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."
  14. 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."
  15. 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."
  16. 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."
  17. 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."
  18. 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."
  19. 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."
  20. 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."
  21. 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."
  22. 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."
  23. 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."
  24. 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."
  25. 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."
  26. 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."
  27. 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."
  28. 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."
  29. 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."
  30. 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."
  31. 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."
  32. 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."
  33. 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."
  34. 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."
  35. 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."
  36. 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."
  37. 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."
  38. 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."
      +}
  39. 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."
      -}
  40. 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."
      +}
  41. 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."
      -}
  42. 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."
      +}
  43. 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."
      -}
  44. 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."
      +}
  45. 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."
      -}
  46. 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."
      +}
  47. 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."
      -}
  48. 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."
      +}
  49. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  50. Changed5 schema fields changed
    • removedOutput schema / properties / numDmlAffectedRows
      Removed value: -{
      -  "description": "Output only. The number of rows affected by a DML statement.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / queryId
      Removed value: -{
      -  "description": "Output only. The ID of the query.",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesBilled
      Removed value: -{
      -  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesProcessed
      Removed value: -{
      -  "description": "Output only. The total number of bytes processed for this query.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalSlotMs
      Removed value: -{
      -  "description": "Output only. Number of slot ms the user is actually billed for.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
  51. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  52. Changed5 schema fields changed
    • removedOutput schema / properties / numDmlAffectedRows
      Removed value: -{
      -  "description": "Output only. The number of rows affected by a DML statement.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / queryId
      Removed value: -{
      -  "description": "Output only. The ID of the query.",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesBilled
      Removed value: -{
      -  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesProcessed
      Removed value: -{
      -  "description": "Output only. The total number of bytes processed for this query.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalSlotMs
      Removed value: -{
      -  "description": "Output only. Number of slot ms the user is actually billed for.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
  53. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  54. Changed5 schema fields changed
    • removedOutput schema / properties / numDmlAffectedRows
      Removed value: -{
      -  "description": "Output only. The number of rows affected by a DML statement.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / queryId
      Removed value: -{
      -  "description": "Output only. The ID of the query.",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesBilled
      Removed value: -{
      -  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesProcessed
      Removed value: -{
      -  "description": "Output only. The total number of bytes processed for this query.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalSlotMs
      Removed value: -{
      -  "description": "Output only. Number of slot ms the user is actually billed for.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
  55. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  56. Changed5 schema fields changed
    • removedOutput schema / properties / numDmlAffectedRows
      Removed value: -{
      -  "description": "Output only. The number of rows affected by a DML statement.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / queryId
      Removed value: -{
      -  "description": "Output only. The ID of the query.",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesBilled
      Removed value: -{
      -  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesProcessed
      Removed value: -{
      -  "description": "Output only. The total number of bytes processed for this query.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalSlotMs
      Removed value: -{
      -  "description": "Output only. Number of slot ms the user is actually billed for.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
  57. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  58. Changed5 schema fields changed
    • removedOutput schema / properties / numDmlAffectedRows
      Removed value: -{
      -  "description": "Output only. The number of rows affected by a DML statement.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / queryId
      Removed value: -{
      -  "description": "Output only. The ID of the query.",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesBilled
      Removed value: -{
      -  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesProcessed
      Removed value: -{
      -  "description": "Output only. The total number of bytes processed for this query.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalSlotMs
      Removed value: -{
      -  "description": "Output only. Number of slot ms the user is actually billed for.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
  59. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  60. Changed5 schema fields changed
    • removedOutput schema / properties / numDmlAffectedRows
      Removed value: -{
      -  "description": "Output only. The number of rows affected by a DML statement.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / queryId
      Removed value: -{
      -  "description": "Output only. The ID of the query.",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesBilled
      Removed value: -{
      -  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesProcessed
      Removed value: -{
      -  "description": "Output only. The total number of bytes processed for this query.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalSlotMs
      Removed value: -{
      -  "description": "Output only. Number of slot ms the user is actually billed for.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
  61. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  62. Changed5 schema fields changed
    • removedOutput schema / properties / numDmlAffectedRows
      Removed value: -{
      -  "description": "Output only. The number of rows affected by a DML statement.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / queryId
      Removed value: -{
      -  "description": "Output only. The ID of the query.",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesBilled
      Removed value: -{
      -  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesProcessed
      Removed value: -{
      -  "description": "Output only. The total number of bytes processed for this query.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalSlotMs
      Removed value: -{
      -  "description": "Output only. Number of slot ms the user is actually billed for.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
  63. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  64. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  65. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  66. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  67. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  68. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  69. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  70. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  71. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  72. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  73. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  74. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  75. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  76. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  77. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  78. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  79. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  80. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  81. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  82. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  83. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  84. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  85. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  86. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  87. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  88. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  89. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  90. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  91. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  92. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  93. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  94. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  95. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  96. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  97. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  98. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  99. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  100. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  101. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  102. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  103. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  104. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  105. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  106. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  107. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  108. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  109. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  110. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  111. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  112. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  113. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  114. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  115. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  116. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  117. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  118. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  119. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  120. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  121. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  122. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  123. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  124. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  125. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  126. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  127. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  128. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  129. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  130. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  131. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  132. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  133. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  134. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  135. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  136. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  137. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  138. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  139. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  140. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  141. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  142. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  143. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  144. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  145. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  146. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  147. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  148. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  149. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  150. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  151. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  152. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  153. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  154. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  155. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  156. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  157. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  158. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  159. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  160. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  161. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  162. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  163. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  164. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  165. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  166. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  167. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  168. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  169. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  170. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  171. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  172. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  173. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  174. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  175. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  176. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  177. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  178. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  179. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  180. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  181. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  182. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  183. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  184. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  185. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  186. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  187. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  188. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  189. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  190. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  191. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  192. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  193. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  194. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  195. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  196. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  197. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  198. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  199. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  200. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  201. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  202. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  203. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  204. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  205. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  206. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  207. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  208. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  209. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  210. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  211. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  212. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  213. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  214. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  215. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  216. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  217. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  218. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  219. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  220. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  221. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  222. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  223. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  224. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  225. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  226. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  227. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  228. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  229. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  230. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  231. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  232. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  233. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  234. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  235. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  236. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  237. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  238. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  239. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  240. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  241. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  242. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  243. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  244. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  245. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  246. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  247. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  248. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  249. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  250. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  251. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  252. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  253. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  254. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  255. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  256. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  257. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  258. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  259. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  260. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  261. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  262. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  263. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  264. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  265. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  266. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  267. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  268. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  269. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  270. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  271. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  272. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  273. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  274. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  275. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  276. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  277. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  278. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  279. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  280. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  281. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  282. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  283. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  284. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  285. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  286. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  287. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  288. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  289. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  290. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  291. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  292. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  293. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  294. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  295. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  296. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  297. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  298. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  299. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  300. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  301. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  302. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  303. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  304. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  305. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  306. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  307. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  308. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  309. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  310. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  311. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  312. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  313. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  314. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  315. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare destructiveHint=true and readOnlyHint=false, so the unsafe nature is covered. The description adds useful behavioral context by disclosing the default job label and that queries are billed to the specified project. This goes beyond the annotations without contradicting them.

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

Conciseness4/5

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

The description is front-loaded with the core purpose and the read-only alternative. The extensive example block is somewhat verbose but earns its place by illustrating the wide range of BigQuery SQL operations, including DDL, DML, and AI/ML functions.

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?

For a tool with rich annotations and a full output schema, the description provides sufficient context: what it does, when to prefer the alternative, supported query types, billing behavior, and label handling. Minor gaps like query timeout behavior are adequately covered by the output schema and the already complete parameter documentation.

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 description coverage is 100%, so all parameters are already documented in the schema. The description reinforces that projectId controls billing and demonstrates query syntax through examples, but it does not add significant new parameter-level meaning beyond the schema.

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 states a clear verb and resource: run a SQL query and return the result. It also explicitly distinguishes itself from the sibling execute_sql_readonly by saying users should prefer the read-only tool when possible. The examples further clarify the full range of SQL operations supported.

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?

The description gives explicit guidance to prefer execute_sql_readonly when possible, which tells an agent when not to use this tool. The mutation examples (INSERT, UPDATE, DELETE, CREATE, DROP) make it clear this tool is intended for cases where read-only execution is insufficient.

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.

TDQS

A4/5.0
Disambiguation5/5

Each tool targets a distinct concern: full SQL execution, read-only SQL execution, and specific metadata lookups for datasets and tables. The two SQL tools overlap intentionally but are clearly separated by the read-only restriction and explicit guidance to prefer the read-only variant.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern: execute_sql, get_dataset_info, list_table_ids. The readonly suffix on execute_sql_readonly is predictable and does not break the overall naming convention.

Tool Count5/5

Six tools is a well-scoped count for a BigQuery server: two query tools for read-only and full execution, plus four metadata discovery tools. Every tool serves a clear purpose without unnecessary bloat.

Completeness4/5

The set covers the core BigQuery workflows of running queries and discovering datasets/tables, with execute_sql capable of DDL, DML, and ML operations. Minor gaps exist around job management and project-level discovery, but these are not critical for most agent workflows.

Resources