1
0
Files
balatro-mod-index/schema/meta.schema.json
2025-01-01 20:12:05 +01:00

31 lines
672 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Balatro Mod Metadata",
"type": "object",
"properties": {
"title": {
"type": "string"
},
"requires-steamodded": {
"type": "boolean",
},
"category": {
"type": "string",
"enum": ["Content", "Joker", "Quality of Life", "Technical", "Miscellaneous", "Resource Packs", "API"]
},
"author": {
"type": "string"
},
"repo": {
"type": "string",
"format": "uri"
},
"downloadURL": {
"type": "string",
"format": "uri"
}
},
"required": ["title", "mod-loader", "category", "author", "repo", "downloadURL"]
}