mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 10:17:22 +01:00
41 lines
1.3 KiB
JSON
41 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "Local Penumbra Mod Data",
|
|
"description": "The locally stored data for an installed mod in Penumbra",
|
|
"type": "object",
|
|
"properties": {
|
|
"FileVersion": {
|
|
"description": "Major version of the local data schema used.",
|
|
"type": "integer",
|
|
"minimum": 3,
|
|
"maximum": 3
|
|
},
|
|
"ImportDate": {
|
|
"description": "The date and time of the installation of the mod as a Unix Epoch millisecond timestamp.",
|
|
"type": "integer"
|
|
},
|
|
"LocalTags": {
|
|
"description": "User-defined local tags for the mod.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"uniqueItems": true
|
|
},
|
|
"Favorite": {
|
|
"description": "Whether the mod is favourited by the user.",
|
|
"type": "boolean"
|
|
},
|
|
"PreferredChangedItems": {
|
|
"description": "Preferred items to list as the main item of a group.",
|
|
"type": "array",
|
|
"items": {
|
|
"minimum": 0,
|
|
"type": "integer"
|
|
},
|
|
"uniqueItems": true
|
|
}
|
|
},
|
|
"required": [ "FileVersion" ]
|
|
}
|