1
0
Files
balatro-mod-index/schema/meta.schema.json
2025-01-01 18:37:34 +01:00

32 lines
639 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Balatro Mod Metadata",
"type": "object",
"properties": {
"title": {
"type": "string"
},
"mod-loader": {
"type": "string",
"enum": ["steamodded", "balamod"]
},
"category": {
"type": "string",
"enum": ["Gameplay", "UI", "Card Mods"]
},
"author": {
"type": "string"
},
"repo": {
"type": "string",
"format": "uri"
},
"downloadURL": {
"type": "string",
"format": "uri"
}
},
"required": ["title", "mod-loader", "category", "author", "repo", "downloadURL"]
}