Skip to content

Instantly share code, notes, and snippets.

@ranisalt
Created April 25, 2024 15:16
Show Gist options
  • Save ranisalt/af47cdb742fab8ac8c947a5879162acf to your computer and use it in GitHub Desktop.
Save ranisalt/af47cdb742fab8ac8c947a5879162acf to your computer and use it in GitHub Desktop.
Tibia launcher manifest JSON schema
{
"$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