You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support conversions for all relevant data types. Currently a conversion is only supported when the data type can be parsed as f32. Note that this may require additional work to handle other data types, as currently all data are read as a string
Acceptance criteria
Conversions should be supported for the following DTDL schema types:
double (f64)
float (f32)
integer (i32)
long (i64)
Array with elementSchema in the above list
The following types will not support conversions by design:
boolean
date
dateTime
duration
string
time
Array with an unsupported elementSchema
Enum
Map
Object
Geospatial schemas
Note: these two lists encompass all of the schemas supported by DTDL v3, so the above lists are complete
The text was updated successfully, but these errors were encountered:
Description
Support conversions for all relevant data types. Currently a conversion is only supported when the data type can be parsed as
f32
. Note that this may require additional work to handle other data types, as currently all data are read as a stringAcceptance criteria
Conversions should be supported for the following DTDL schema types:
double
(f64
)float
(f32
)integer
(i32
)long
(i64
)Array
withelementSchema
in the above listThe following types will not support conversions by design:
boolean
date
dateTime
duration
string
time
Array
with an unsupportedelementSchema
Enum
Map
Object
Note: these two lists encompass all of the schemas supported by DTDL v3, so the above lists are complete
The text was updated successfully, but these errors were encountered: