FieldType

Définit un type de champ BigQuery.

Représentation 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.
}
Champs
Champ d'union field_type. Type de champ. field_type ne peut être qu'un des éléments suivants :
type

string

Type BigQuery simple, par exemple &STRING, ou INT64. Consultez la page https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types.

arrayType

object (FieldType)

Type des éléments du tableau, s'il s'agit d'un type ARRAY.

structType

object (StructType)

Type de champ "Structure", s'il s'agit d'un type "STRUCT".

StructType

Définit un type de structure.

Représentation JSON
{
  "fields": [
    {
      object (StructField)
    }
  ]
}
Champs
fields[]

object (StructField)

Liste numérotée de champs pour une structure donnée.

Champ de structure

Paire clé-valeur qui définit un champ de structure unique.

Représentation JSON
{
  "fieldName": string,
  "fieldType": {
    object (FieldType)
  }
}
Champs
fieldName

string

Nom du champ.

fieldType

object (FieldType)

Type de champ.