{// Union field field_type can be only one of the following:"type": string,"arrayType": {object (FieldType)},"structType": {object (StructType)}// End of list of possible types for union field field_type.}
Fields
Union field field_type. Field type. field_type can be only one of the following:
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["Defines FieldType, which represents a BigQuery field type and can be a simple type, an array, or a struct."],["Includes StructType for defining struct types with an ordered list of fields."],["Uses StructField to represent a single field within a struct, containing a field name and type."],["Provides JSON representations for FieldType, StructType, and StructField to illustrate their structure and data."]]],["This defines BigQuery field types using JSON representation. A field can be a simple type (`string`), an array (`arrayType`), or a struct (`structType`). Structs (`StructType`) are defined by an ordered list of fields, each represented as a `StructField`. Each `StructField` has a `fieldName` (string) and a `fieldType`. The `fieldType` is recursive, potentially being a simple type, array, or another struct. `field_type` can only be one of the listed options.\n"]]