36 lines
784 B
JSON
36 lines
784 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Balatro Mod Metadata",
|
|
"type": "object",
|
|
"properties": {
|
|
"title": {
|
|
"type": "string"
|
|
},
|
|
"requires-steamodded": {
|
|
"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"
|
|
}
|
|
},
|
|
"required": ["title", "requires-steamodded", "categories", "author", "repo", "downloadURL"]
|
|
}
|
|
|