Skip to main content

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

FieldTypeDescriptionRequired
idstringPrimary Key – Unique identifier for the content package (UUID).
ref_idanyAn external or reference ID. Might be used to link to an external system or as a unique code for identification outside the database.
namestringName of the content package, typically used for identifying the package.
application_idstringThe identifier for the associated application. This could be used to map the content package to a specific app.
bundleBuildIdstringIdentifier for the build of the bundle. Useful for versioning or deployment tracking.
user_idstringThe identifier for the user who created or is associated with the content package.
created_atdateTimestamp when the content package was created.
modified_atdateTimestamp when the content package was last modified.
descriptionstringA brief description of the content package's purpose or content.
line_item_typestringThe type of line item associated with the content package, possibly indicating its categorization or usage.
bundleIdstringAnother identifier for the associated bundle, potentially for cross-referencing.
package_idstringA unique identifier for the content package, which might be used for packaging or distribution purposes.
statusstringThe status of the content package (e.g., "active", "inactive", "archived").
versionstringVersion 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"
}