Module: Google::Cloud::Dataplex::V1::Schema::Type

Defined in:
proto_docs/google/cloud/dataplex/v1/metadata.rb

Overview

Type information for fields in schemas and partition schemas.

Constant Summary collapse

TYPE_UNSPECIFIED =

SchemaType unspecified.

0
BOOLEAN =

Boolean field.

1
BYTE =

Single byte numeric field.

2
INT16 =

16-bit numeric field.

3
INT32 =

32-bit numeric field.

4
INT64 =

64-bit numeric field.

5
FLOAT =

Floating point numeric field.

6
DOUBLE =

Double precision numeric field.

7
DECIMAL =

Real value numeric field.

8
STRING =

Sequence of characters field.

9
BINARY =

Sequence of bytes field.

10
TIMESTAMP =

Date and time field.

11
DATE =

Date field.

12
TIME =

Time field.

13
RECORD =

Structured field. Nested fields that define the structure of the map. If all nested fields are nullable, this field represents a union.

14
NULL =

Null field that does not have values.

100