FieldType

لتعريف نوع حقل BigQuery

تمثيل 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.
}
الحقول
حقل الاتحاد field_type. نوع الحقل يمكن أن يكون field_type واحدًا فقط مما يلي:
type

string

نوع BigQuery بسيط، مثل يُرجى الاطّلاع على https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types.

arrayType

object (FieldType)

نوع عناصر المصفوفة#، إذا كان هذا النوع هو 'ARRAY'.

structType

object (StructType)

نوع حقل البنية، إذا كان النوع 'STRUCT'.

نوع البنية

لتعريف نوع بنية.

تمثيل JSON
{
  "fields": [
    {
      object (StructField)
    }
  ]
}
الحقول
fields[]

object (StructField)

قائمة مرتبة للحقول الخاصة ببنية معيّنة.

بنية البنية

زوج مؤلف من مفتاح وقيمة يُعرِّف حقلاً واحدًا للبنية.

تمثيل JSON
{
  "fieldName": string,
  "fieldType": {
    object (FieldType)
  }
}
الحقول
fieldName

string

اسم الحقل.

fieldType

object (FieldType)

نوع الحقل