Tag Groups

The tag_groups table contains data about info field sections (tag groups) in the organization.

This table can be used to determine what sections exists, as well as metadata about the section such as when it was created.

Columns

Column Name Description Type Nullable
id The numerical identifier of the object. INT8 No
name The name of the section. VARCHAR Yes
created_by The numerical identifier of the user that created this section. Relates to the id column in the users table. INT8 Yes
created_at The UTC timestamp when this object was created. TIMESTAMP No
updated_at The UTC timestamp when this object was last updated. TIMESTAMP No
target_type The name of the class of object this section is available on. One of EntityType, EntityConnectionType, or CalendarEventType. VARCHAR Yes
target_id The numerical identifier of the related object for this section. Can be used with target_type to look up the object itself in the appropriate table. INT8 Yes
universal Whether the section is universal (and thus all fields in it are also universal) or not. BOOL Yes