FieldType

Definiert einen BigQuery-Feldtyp.

JSON-Darstellung
{

  // 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.
}
Felder
Union-Feld field_type. Der Feldtyp. Für field_type ist nur einer der folgenden Werte zulässig:
type

string

Einfacher BigQuery-Typ, z. B. 'STRING' oder 'INT64' Siehe https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types.

arrayType

object (FieldType)

Typ der Arrayelemente, sofern es sich um einen ARRAY'-Typ handelt.

structType

object (StructType)

Typ des Struct-Felds, falls es sich um einen Konstruktionstyp handelt.

StructType

Definiert einen Strukturtyp.

JSON-Darstellung
{
  "fields": [
    {
      object (StructField)
    }
  ]
}
Felder
fields[]

object (StructField)

Eine sortierte Liste von Feldern für eine bestimmte Struktur.

StructField

Ein Schlüssel/Wert-Paar, das ein einzelnes Strukturfeld definiert.

JSON-Darstellung
{
  "fieldName": string,
  "fieldType": {
    object (FieldType)
  }
}
Felder
fieldName

string

Der Name des Feldes.

fieldType

object (FieldType)

Der Feldtyp.