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.t
val fields : (tt list) GapiLens.t
val mode : (t, string) GapiLens.t
val name : (t, string) GapiLens.t
val _type : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t