Attribute types
Number
Quantities, sums and metrics
Number attributes store floating point numbers with up to four decimal places of precision.
An example of a number attribute is the twitter_follower_count
attribute on both the company and person objects.
Only single-select number attributes are supported.
Reading values
Number attribute values have a value
property:
Writing values
To write number values, simply pass your desired number, either as an integer or a float. Alternatively, you can use an object with a single value
property.
Please note that twitter_follower_count
is a system attribute and cannot be written to from the API.
Filtering
Numbers can be filtered by the operators $eq
, $gte
, $gt
,$lte
,$lt
. The implicit syntax does an exact equality check:
Was this page helpful?