FieldType

Definisce un tipo di campo BigQuery.

Rappresentazione 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.
}
Campi
Campo unione field_type. Tipo di campo. field_type può essere solo uno dei seguenti:
type

string

Tipo semplice di BigQuery, ad esempio 'STRING' o 'INT64'. Consulta https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types.

arrayType

object (FieldType)

Tipo degli elementi dell'array, se si tratta di un tipo 'ARRAY'.

structType

object (StructType)

Tipo di campo Struct, se è un tipo 'STRUCT'.

StructType

Definisce un tipo di struct.

Rappresentazione JSON
{
  "fields": [
    {
      object (StructField)
    }
  ]
}
Campi
fields[]

object (StructField)

Un elenco ordinato dei campi per una data struttura.

StructField

Una coppia chiave-valore che definisce un singolo campo struct.

Rappresentazione JSON
{
  "fieldName": string,
  "fieldType": {
    object (FieldType)
  }
}
Campi
fieldName

string

Nome del campo.

fieldType

object (FieldType)

Tipo di campo.