Pack Configuration
Configuration for a pack. It changed the behavior of the pack for this pack
id < /th > < td > packs/packConfiguration.json < /td > < /tr > < tr > < th>schema
|
http://json-schema.org/draft-07/schema#
|
Properties
Example
{
"version_origin": "game_file",
"version_file": "config.jet",
"version_property": "buildVersion"
}
version_origin
Description
|
Where the version is taken from. game_file : from the game_file
|
Type
|
String
|
Required
|
Yes
|
Enum
|
|
version_file
Description
|
The file where the version is taken from
|
Type
|
String
|
Required
|
Yes
|
Examples
|
config.jet
|
version_property
Description
|
The property where the version is taken from
|
Type
|
String
|
Required
|
Yes
|
Examples
|
buildVersion
|
Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "packs/packConfiguration.json",
"title": "Pack Configuration",
"description": "Configuration for a pack. It changed the behavior of the pack for this pack",
"examples": [
{
"version_origin": "game_file",
"version_file": "config.jet",
"version_property": "buildVersion"
}
],
"type": "object",
"properties": {
"version_origin": {
"description": "Where the version is taken from. game_file : from the game_file",
"enum": [
"game_file"
],
"type": "string"
},
"version_file": {
"examples": [
"config.jet"
],
"description": "The file where the version is taken from",
"type": "string"
},
"version_property": {
"examples": [
"buildVersion"
],
"description": "The property where the version is taken from",
"type": "string"
}
},
"required": [
"version_origin",
"version_file",
"version_property"
]
}