Rejected characters are /< > : " / \ | ? * Does not protect against strings containing non-printable control characters, or strings of reserved filenames like CON, PRN, AUX, NUL.
43 lines
930 B
JSON
43 lines
930 B
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": "^[^<>:\"/\\|?*]+$"
|
|
}
|
|
},
|
|
"required": ["title", "requires-steamodded", "categories", "author", "repo", "downloadURL"]
|
|
}
|
|
|