1
0

move schema for github actions

This commit is contained in:
Ö. Efe D.
2025-01-01 18:37:34 +01:00
parent 1ff481bd90
commit 52fac792da

31
schema/meta.schema.json Normal file
View File

@@ -0,0 +1,31 @@
{
"$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"]
}