Skip to main content

Datapackpublishedfiles Model

Overview

This table is used to manage published files associated with datapacks, storing information such as file content, versioning, release notes, and the status of the published files. It serves as a point of reference for the data packs' file lifecycle, from creation to release.

Fields

FieldTypeDescriptionRequired
idstringUnique identifier for each published file entry.
fileIdstringIdentifier linking to the original file.
fileDataobjectData or metadata related to the file.
featuresstringFeatures included in this file release.
releaseNotesstringNotes describing changes, updates, or details of this release.
versionReleaseTypestringType of release
versionstringVersion number of the published file.
activeStatusstringIndicates whether the file is currently active or deprecated.
created_atdateTimestamp when the entry was created.
modified_atdateTimestamp when the entry was last modified.
datapackIdstringIdentifier linking this published file to a specific data pack.

Relationships

  • Belongsto Unknown
  • Belongsto Unknown

Sample JSON

{
"id": "example_value",
"fileId": "example_value",
"fileData": "example_value",
"features": "example_value",
"releaseNotes": "example_value",
"versionReleaseType": "example_value",
"version": "example_value",
"activeStatus": "example_value",
"created_at": "example_value",
"modified_at": "example_value",
"datapackId": "example_value"
}