FieldType

Define un tipo de campo de BigQuery.

Representación JSON
{

  // 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.
}
Campos
Campo de unión field_type. Tipo de campo. Las direcciones (field_type) solo pueden ser una de las siguientes opciones:
type

string

El tipo simple de BigQuery, p. ej., 'STRING' o 'INT64' Consulte https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types.

arrayType

object (FieldType)

Es el tipo de elementos del arreglo, si es un tipo de ARRAY.

structType

object (StructType)

Tipo de campo struct, si es un tipo &struct3.

StructType

Define un tipo de estructura.

Representación JSON
{
  "fields": [
    {
      object (StructField)
    }
  ]
}
Campos
fields[]

object (StructField)

Una lista ordenada de campos para una estructura determinada.

Campo Struct

Un par clave-valor que define un solo campo de struct.

Representación JSON
{
  "fieldName": string,
  "fieldType": {
    object (FieldType)
  }
}
Campos
fieldName

string

Nombre del campo.

fieldType

object (FieldType)

Tipo de campo.