Module GapiBigqueryV2Model.TableFieldSchema
type t={description : string;[Optional] The field description. The maximum length is 16K characters.
fields : t list;[Optional] Describes the nested schema fields if the type property is set to RECORD.
mode : string;[Optional] The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
name : string;[Required] The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 128 characters.
_type : string;[Required] The field data type. Possible values include STRING, INTEGER, FLOAT, BOOLEAN, TIMESTAMP or RECORD (where RECORD indicates that the field contains a nested schema).
}
val description : (t, string) GapiLens.tval fields : (t, t list) GapiLens.tval mode : (t, string) GapiLens.tval name : (t, string) GapiLens.tval _type : (t, string) GapiLens.tval empty : tval render : t -> GapiJson.json_data_model listval parse : t -> GapiJson.json_data_model -> tval to_data_model : t -> GapiJson.json_data_modelval of_data_model : GapiJson.json_data_model -> t