Qri

Visit qri.io

Data Types

Qri data types


Scalar Types

namedescriptionexample
nullThe set of values that do not existnull
bytean unsigned 8 bit integer0xF
integer64-bit int-3000
float64-bit floating point number45.5678908765
stringUTF-8 string"apples"

Compound Types

namedescriptionexample
mapkey-value dictionary of all other types{ "foo" : "bar" }
arrayordered list of heterogenous elements[null,5,"hello"]
byte array

Complex Types

Complex types blend data structures with behaviour.

namedescriptionexample
linkstring reference to a foreign type
streama typed iterator

Streams are a runtime-only type that serialize to an array when persisted.