Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 1.12 KB

SchemaFieldType.md

File metadata and controls

12 lines (7 loc) · 1.12 KB

SchemaFieldType

Type represents the underlying data type of the field. Type is required and cannot be unspecified. - STRING: String values. - INTEGER: Integer values (64-bit). - FLOAT: Floating point values (32-bit). - DOUBLE: Double floating point values (64-bit). - BOOLEAN: Boolean values. - TIMESTAMP: Timestamp values. - BYTES: Raw byte values.

Properties

Name Type Description Notes
value str Type represents the underlying data type of the field. Type is required and cannot be unspecified. - STRING: String values. - INTEGER: Integer values (64-bit). - FLOAT: Floating point values (32-bit). - DOUBLE: Double floating point values (64-bit). - BOOLEAN: Boolean values. - TIMESTAMP: Timestamp values. - BYTES: Raw byte values. defaults to "TYPE_UNSPECIFIED", must be one of ["TYPE_UNSPECIFIED", "STRING", "INTEGER", "FLOAT", "DOUBLE", "BOOLEAN", "TIMESTAMP", "BYTES", ]

[Back to Model list] [Back to API list] [Back to README]