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)
null1. Absence of a value
2. Non-computable expression
3. null value of the JSON field
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"]