53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Balatro Mod Metadata",
|
|
"type": "object",
|
|
"properties": {
|
|
"title": {
|
|
"type": "string"
|
|
},
|
|
"requires-steamodded": {
|
|
"type": "boolean"
|
|
},
|
|
"requires-talisman": {
|
|
"type": "boolean"
|
|
},
|
|
"categories": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"enum": ["Content", "Joker", "Quality of Life", "Technical", "Miscellaneous", "Resource Packs", "API"]
|
|
},
|
|
"minItems": 1,
|
|
"uniqueItems": true
|
|
},
|
|
"author": {
|
|
"type": "string"
|
|
},
|
|
"repo": {
|
|
"type": "string",
|
|
"format": "uri"
|
|
},
|
|
"downloadURL": {
|
|
"type": "string",
|
|
"format": "uri"
|
|
},
|
|
"folderName": {
|
|
"type": "string",
|
|
"pattern": "^[^<>:\"/\\|?*]+$"
|
|
},
|
|
"version": {
|
|
"type": "string"
|
|
},
|
|
"automatic-version-check": {
|
|
"type": "boolean"
|
|
},
|
|
"last-updated": {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"exclusiveMaximum": 18446744073709551616
|
|
}
|
|
},
|
|
"required": ["title", "requires-steamodded", "requires-talisman", "categories", "author", "repo", "downloadURL"]
|
|
}
|