Datapackbuilds Model
Overview
The datapackbuilds table stores information about the builds of data packs within the system. It includes metadata such as release notes, features, version, and the status of each data pack build.
Fields
| Field | Type | Description | Required |
|---|---|---|---|
| id | string | Primary Key – Unique identifier for the data pack build (UUID). | ❌ |
| pack_id | string | ID for the associated pack, which identifies the data pack to which the build belongs. | ❌ |
| release_notes | string | Notes about the release of the build, describing changes or new features. | ❌ |
| mode_of_platform | any | The platform mode used in the build, which could describe how the data pack interacts with different platforms or environments. | ❌ |
| features | string | A list of features available in the build, possibly in comma-separated format or JSON. | ❌ |
| version | string | The version of the data pack build, used to track changes between different builds. | ❌ |
| data_pack_data | object | Detailed data related to the data pack build, which may include configuration or metadata specific to the build. | ❌ |
| status | string | The current status of the data pack build (e.g., completed, in progress, failed). | ❌ |
| created_at | date | Timestamp when the data pack build was created. | ❌ |
| modified_at | date | Timestamp when the data pack build was last modified. | ❌ |
Relationships
- Belongsto Unknown
Sample JSON
{
"id": "example_value",
"pack_id": "example_value",
"release_notes": "example_value",
"mode_of_platform": "example_value",
"features": "example_value",
"version": "example_value",
"data_pack_data": "example_value",
"status": "example_value",
"created_at": "example_value",
"modified_at": "example_value"
}