Loader

The loader (used for the fast launcher feature)

id < /th >  < td > packs/loader.json < /td >  < /tr >  < tr >  < th>schema http://json-schema.org/draft-07/schema#

Properties

Name Type
path String
version String

Example

{
    "path": "loaders/tjpp7/champdup.zip",
    "version": "1.0.0"
}

path

Description The path (or URL) to the loader zip
Type String
Required Yes

version

Description The version of the loader (in case you update your loader, change this version)
Type String
Required Yes

Schema

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "Loader",
    "$id": "packs/loader.json",
    "examples": [
        {
            "path": "loaders/tjpp7/champdup.zip",
            "version": "1.0.0"
        }
    ],
    "description": "The loader (used for the fast launcher feature)",
    "type": "object",
    "properties": {
        "path": {
            "description": "The path (or URL) to the loader zip",
            "type": "string"
        },
        "version": {
            "description": "The version of the loader (in case you update your loader, change this version)",
            "type": "string"
        }
    },
    "required": [
        "path",
        "version"
    ]
}