Supported Telemetry Data Types
Aug 15 2023 at 12:00 AM
The following data types are supported for device telemetry.
| Data Type String | Raptor Data Type | Number Bytes |
|---|---|---|
| bit, bool, boolean | bool | 1 |
| byte | byte | 1 |
| bytearray, byte[] | byte[] | |
| sbyte, short, int16 | short | 2 |
| uint16, ushort | ushort | 2 |
| int, int32 | int | 4 |
| uint, uint32 | uint | 4 |
| long, int64 | long | 8 |
| ulong, uint64 | ulong | 8 |
| double, float64, decimal | double | 8 |
| float, float32, single | float | 4 |
| string, text | string | |
| object | object | |
| datetime | datetime |
All data types can be made nullable by appending a ? character.
