Created
April 25, 2024 15:16
-
-
Save ranisalt/af47cdb742fab8ac8c947a5879162acf to your computer and use it in GitHub Desktop.
Tibia launcher manifest JSON schema
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://json-schema.org/draft/2020-12/schema", | |
"title": "Tibia launcher manifest", | |
"type": "object", | |
"properties": { | |
"version": { | |
"type": "string" | |
}, | |
"files": { | |
"type": "array", | |
"items": { | |
"type": "object", | |
"properties": { | |
"url": { | |
"type": "string" | |
}, | |
"localfile": { | |
"type": "string" | |
}, | |
"packedhash": { | |
"type": "string" | |
}, | |
"packedsize": { | |
"type": "integer" | |
}, | |
"unpackedhash": { | |
"type": "string" | |
}, | |
"unpackedsize": { | |
"type": "integer" | |
}, | |
"executable": { | |
"type": "boolean" | |
} | |
}, | |
"required": [ | |
"url", | |
"localfile", | |
"packedhash", | |
"packedsize", | |
"unpackedhash", | |
"unpackedsize" | |
] | |
} | |
}, | |
"executable": { | |
"type": "string" | |
}, | |
"generation": { | |
"type": "string" | |
}, | |
"variant": { | |
"type": "string" | |
} | |
}, | |
"required": [ | |
"version", | |
"files", | |
"executable", | |
"generation", | |
"variant" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment