Checklist Model
Overview
Primary Key – Unique identifier for the checklist (UUID). The title or name of the checklist. Override settings or custom configurations for this checklist. Timestamp when the checklist was created. Timestamp when the checklist was last modified. Reference ID that could link to an external system or related entity. Identifier for the site associated with this checklist. The type of object the checklist is associated with. Type of object the checklist is related to (e.g., "task", "workflow"). Identifier for the organization associated with this checklist. Identifier for the user who owns or created the checklist. Identifier for the bundle build related to this checklist. Identifier linking the checklist to a specific application. List of checklist items, likely in a JSON or serialized format.
Fields
| Field | Type | Description | Required |
|---|---|---|---|
| id | string | Primary Key – Unique identifier for the checklist (UUID). | ❌ |
| title | string | The title or name of the checklist. | ✅ |
| override | any | Override settings or custom configurations for this checklist. | ❌ |
| created_at | date | Timestamp when the checklist was created. | ❌ |
| modified_at | date | Timestamp when the checklist was last modified. | ❌ |
| ref_id | any | Reference ID that could link to an external system or related entity. | ❌ |
| sites_id | string | Identifier for the site associated with this checklist. | ✅ |
| objectId | any | The type of object the checklist is associated with. | ❌ |
| objectType | any | Type of object the checklist is related to (e.g., "task", "workflow"). | ❌ |
| org_id | string | Identifier for the organization associated with this checklist. | ✅ |
| users_id | string | Identifier for the user who owns or created the checklist. | ✅ |
| bundleBuildId | string | Identifier for the bundle build related to this checklist. | ❌ |
| applicationId | string | Identifier linking the checklist to a specific application. | ❌ |
| checklistItems | array | List of checklist items, likely in a JSON or serialized format. | ❌ |
Relationships
- Belongsto Unknown
- Belongsto Unknown
- Belongsto Unknown
- Belongsto Unknown
Sample JSON
{
"id": "example_value",
"title": "example_value",
"override": "example_value",
"created_at": "example_value",
"modified_at": "example_value",
"ref_id": "example_value",
"sites_id": "example_value",
"objectId": "example_value",
"objectType": "example_value",
"org_id": "example_value",
"users_id": "example_value",
"bundleBuildId": "example_value",
"applicationId": "example_value",
"checklistItems": "example_value"
}