FieldType(value)
Field value type in the Schema.
- `id`: a string representing the location id
- `longitude`: a number representing the longitude
coordinate of the location
- `latitude`: a number repesenting the latitude
coordinate of the location
- `address`: a string representing the full address of
the location
`latitude` and `longitude` must always be provided
together. At least one of a) `address` or b)
`latitude`-`longitude` pair must be provided.
DATETIME (7):
Field value type is Datetime. Datetime can be expressed as
either:
- a number representing milliseconds-since-the-epoch
- a string representing milliseconds-since-the-epoch. e.g.
`"1420070400001"`
- a string representing the `ISO
8601 <https://en.wikipedia.org/wiki/ISO_8601>`__ date or
date and time. e.g. `"2015-01-01"` or
`"2015-01-01T12:10:30Z"`
Enums |
|
---|---|
Name | Description |
FIELD_TYPE_UNSPECIFIED |
Field type is unspecified. |
OBJECT |
Field value type is Object. |
STRING |
Field value type is String. |
NUMBER |
Field value type is Number. |
INTEGER |
Field value type is Integer. |
BOOLEAN |
Field value type is Boolean. |
GEOLOCATION |
Field value type is Geolocation. Geolocation is expressed as an object with the following keys: |