Skip to content

DataPrime Types

TypeDescriptionEncoding
stringUTF-8 character sequence. Used for text, labels, identifiers.JSON string. e.g., "example text"
numberInteger or floating-point. Used in math and filters.JSON number. e.g., 42, 5.5
booleanLogical true/false values.JSON boolean. true or false
timestampA point in time, in nanoseconds.JSON number. e.g., 1609459200000000
intervalDuration value. String input, number internal (nanoseconds).JSON string or number (nanoseconds)
nullRepresents missing or undefined value.JSON null
regexpRegular expression for pattern matching.JSON string (rarely shown directly)
array<T>A list of values of the same primitive type.JSON array. e.g., ["a", "b", "c"]