ContentPackage Model
Overview
The contentpackage table stores metadata and configuration information related to content packages, including details about their association with bundles, applications, and versions.
Fields
| Field | Type | Description | Required |
|---|---|---|---|
| id | string | Primary Key – Unique identifier for the content package (UUID). | ❌ |
| ref_id | any | An external or reference ID. Might be used to link to an external system or as a unique code for identification outside the database. | ❌ |
| name | string | Name of the content package, typically used for identifying the package. | ✅ |
| application_id | string | The identifier for the associated application. This could be used to map the content package to a specific app. | ❌ |
| bundleBuildId | string | Identifier for the build of the bundle. Useful for versioning or deployment tracking. | ❌ |
| user_id | string | The identifier for the user who created or is associated with the content package. | ❌ |
| created_at | date | Timestamp when the content package was created. | ❌ |
| modified_at | date | Timestamp when the content package was last modified. | ❌ |
| description | string | A brief description of the content package's purpose or content. | ❌ |
| line_item_type | string | The type of line item associated with the content package, possibly indicating its categorization or usage. | ❌ |
| bundleId | string | Another identifier for the associated bundle, potentially for cross-referencing. | ✅ |
| package_id | string | A unique identifier for the content package, which might be used for packaging or distribution purposes. | ✅ |
| status | string | The status of the content package (e.g., "active", "inactive", "archived"). | ✅ |
| version | string | Version number or identifier for the content package, used for tracking updates or iterations. | ❌ |
Sample JSON
{
"id": "example_value",
"ref_id": "example_value",
"name": "example_value",
"application_id": "example_value",
"bundleBuildId": "example_value",
"user_id": "example_value",
"created_at": "example_value",
"modified_at": "example_value",
"description": "example_value",
"line_item_type": "example_value",
"bundleId": "example_value",
"package_id": "example_value",
"status": "example_value",
"version": "example_value"
}