Objects in the API, such as users, companies, and events, can store custom attributes in the attributes
object. This allows you to extend the default data model with your own fields.
attributes
objectsnake_case
for all attribute names to maintain consistency across your application. For example:
user_id
created_at
last_login_time
signed_up_at
can be displayed as “Signed Up” in the interface.
Type | Description |
---|---|
string | Represents a string. |
number | Represents a number (supports both integers and floating point numbers). |
boolean | Represents either true or false . |
datetime | Represents a point in time, always stored as ISO 8601 in UTC. |
list | Represents a list of strings. |
snake_case
for all attribute namesdatetime
type, not as stringsboolean
for true/false values instead of strings