Strategy ONE
dataTypeEnum
| Data Type | JSON Serialization Format | Description |
|---|---|---|
| string | JSON string | MUST be encoded in UTF-8 |
| integer | JSON number | int. -2,147,483,648 ~ 2,147,483,647 |
| bigInteger | JSON number | int64. -9223372036854775808 ~ 9223372036854775807 |
| bool | Boolean value | true / false |
| double | JSON number | Double precision decimal value |
| bigDecimal | JSON string | Represents numeric values with fixed precision and scale |
| date | JSON string | Represents date. valid date format |
| time | JSON string | Represents time. valid time format |
| datetime | JSON string | DATE(T)TIME, eg 2016-10-02T10:00:05 |
