JSON to BDL type conversion rules
Specific type conversion rules apply when parsing a JSON string to fill a BDL variable.
JSON source string | Target Genero BDL type |
---|---|
The JSON string must be a JSON object in the
form:
|
RECORD ... END RECORD |
The JSON string must be a JSON array in the
form:
|
DYNAMIC ARRAY OF ... |
The JSON string must be a JSON object in the
form:
|
DICTIONARY OF ... |
The JSON value should be |
BOOLEAN |
A JSON number. The JSON number can be assigned to any language numeric type. The limits of the
target type cause potential overflows errors. On error the target variable will be initialized to
|
TINYINT , SMALLINT ,
INTEGER , BIGINT , SMALLFLOAT ,
FLOAT , DECIMAL , MONEY |
The JSON value must be a string formatted as |
DATE |
A JSON string representing a datetime or a JSON number. If the value is a JSON string, it must be formatted as If the value is a JSON number, it is interpreted as UNIX™ time (seconds since the Epoch 00:00:00 UTC, January 1, 1970). Note that the |
DATETIME |
The JSON value must be a string formatted as " |
INTERVAL |
The JSON string value must be encoded in Base64. The Base64 encoding is described in [RFC4648]. |
BYTE |
A JSON string or number. If the JSON value is a number, the resulting BDL string value uses the locale specific decimal point. If the JSON value is a string: Any character in the Basic Multilingual Plane (U+0000 through
U+FFFF) may be escaped: |
TEXT , CHAR ,
VARCHAR , STRING |