FieldType

Menentukan jenis kolom BigQuery.

Representasi 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.
}
Kolom
Kolom union field_type. Jenis kolom. field_type hanya dapat berupa salah satu dari berikut:
type

string

Jenis sederhana BigQuery, mis. 'STRING' atau 'INT64'. Lihat https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types.

arrayType

object (FieldType)

Jenis elemen array, jika ini adalah jenis 'ARRAY'.

structType

object (StructType)

Jenis kolom struktur, jika ini adalah jenis 'STRUCT'

Jenis Struct

Menentukan jenis struktur.

Representasi JSON
{
  "fields": [
    {
      object (StructField)
    }
  ]
}
Kolom
fields[]

object (StructField)

Daftar urut kolom untuk struktur tertentu.

StructField

Pasangan nilai kunci yang menentukan kolom struct tunggal.

Representasi JSON
{
  "fieldName": string,
  "fieldType": {
    object (FieldType)
  }
}
Kolom
fieldName

string

Nama kolom.

fieldType

object (FieldType)

Jenis kolom.