FieldType

Określa typ pola BigQuery.

Zapis 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.
}
Pola
Pole związkowe field_type. Typ pola. field_type może mieć tylko jedną z tych wartości:
type

string

Prosty typ BigQuery, np. 'STRING' lub#39;INT64'. Zobacz https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types.

arrayType

object (FieldType)

Typ tablicy, jeśli jest to typ &AR3Y;ARRAY'.

structType

object (StructType)

Typ pola strukturalnego, jeśli ten typ to '

Typ struktury

Określa typ konstrukcji.

Zapis JSON
{
  "fields": [
    {
      object (StructField)
    }
  ]
}
Pola
fields[]

object (StructField)

Uporządkowana lista pól dla określonego elementu.

Pole strukturalne

Para klucz-wartość definiująca pojedyncze pole strukturalne.

Zapis JSON
{
  "fieldName": string,
  "fieldType": {
    object (FieldType)
  }
}
Pola
fieldName

string

Nazwa pola.

fieldType

object (FieldType)

Typ pola.