Skip to main content

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

FieldTypeDescriptionRequired
idstringPrimary Key – Unique identifier for the data pack build (UUID).
pack_idstringID for the associated pack, which identifies the data pack to which the build belongs.
release_notesstringNotes about the release of the build, describing changes or new features.
mode_of_platformanyThe platform mode used in the build, which could describe how the data pack interacts with different platforms or environments.
featuresstringA list of features available in the build, possibly in comma-separated format or JSON.
versionstringThe version of the data pack build, used to track changes between different builds.
data_pack_dataobjectDetailed data related to the data pack build, which may include configuration or metadata specific to the build.
statusstringThe current status of the data pack build (e.g., completed, in progress, failed).
created_atdateTimestamp when the data pack build was created.
modified_atdateTimestamp 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"
}