StandardPackages Model
Overview
This table defines standardized packages or modules used in applications—these could be preconfigured software bundles, features, or deployment templates. They appear to be highly customizable and extensible, possibly related to user roles, applications, and bundles.
Fields
| Field | Type | Description | Required |
|---|---|---|---|
| id | string | A unique identifier for the package. | ❌ |
| title | string | The name or title of the package. Used in UI, dropdowns, or listings. | ✅ |
| bundle_id | any | The identifier for the bundle associated with the package. | ❌ |
| detailoverride | any | A field that may contain custom details or override default details. | ❌ |
| activityIsJSON | any | Indicates whether the activity data is stored in JSON format. | ❌ |
| showSettings | boolean | A flag determining whether settings should be displayed. | ❌ |
| application_id | string | The identifier for the application related to the package. | ❌ |
| status | string | The current status of the package. | ❌ |
| user_id | string | The identifier of the user associated with the package. | ❌ |
| bundleBuildId | string | Tracks the build/version ID of the bundle this package belongs to. | ❌ |
| created_at | date | The date and time when the package was created. | ❌ |
| modified_at | date | The date and time when the package was last modified. | ❌ |
| integration_type | string | Specifies the type of integration the package supports. | ❌ |
| package_settings | any | Configuration settings related to the package. | ❌ |
| licenseInfo | any | Information regarding the licensing of the package. | ❌ |
| line_item_type | string | Defines the type of line item associated with the package. | ❌ |
| children | array | Contains references to child elements or sub-packages.Nested packages, modules, or linked sub-packages | ❌ |
| name | string | The name associated with the package. | ❌ |
| pages | any | Page configurations tied to the package — may include layouts, tabs, etc. | ❌ |
| ref_id | any | An external or internal reference ID used for mapping or version control. | ❌ |
| description | string | A brief explanation or summary of the package. | ✅ |
| package_id | string | Maps this standard package to a broader package group — could be used in inheritance or cloning setups. | ❌ |
| configuration | array | Configuration details specific to the package. | ❌ |
| files | array | Stores file-related information for the package.May include metadata or references to files | ❌ |
| type | string | Specifies the type or category of the package. | ❌ |
Sample JSON
{
"id": "example_value",
"title": "example_value",
"bundle_id": "example_value",
"detailoverride": "example_value",
"activityIsJSON": "example_value",
"showSettings": "example_value",
"application_id": "example_value",
"status": "example_value",
"user_id": "example_value",
"bundleBuildId": "example_value",
"created_at": "example_value",
"modified_at": "example_value",
"integration_type": "example_value",
"package_settings": "example_value",
"licenseInfo": "example_value",
"line_item_type": "example_value",
"children": "example_value",
"name": "example_value",
"pages": "example_value",
"ref_id": "example_value",
"description": "example_value",
"package_id": "example_value",
"configuration": "example_value",
"files": "example_value",
"type": "example_value"
}