Skip to content

Data Types

TypeBytesComment
Boolean1Written as a byte. Can either be 0x00 or 0x01.
Byte1Signed, two's complement.
Short2Signed, two's complement.
Integer4Signed, two's complement.
Long8Signed, two's complement.
Float4Single-precision 32-bit IEEE 754 floating point.
Double8Double-precision 64-bit IEEE 754 floating point.
String8>=2Modified UTF-8 string. Prefixed by a short containing the length of the string.
String16>=2 and <= 240UCS-2 string, big-endian. Prefixed by a short containing the length of the string in characters. UCS-2 consists of 16-bit words, each of which represent a Unicode code point between U+0000 and U+FFFF inclusive.

Click here to learn about the Entity Metadata format.