Added snippets

This commit is contained in:
DaanV2
2020-11-17 09:56:41 +01:00
parent d3acaad5cb
commit 52503e904f
22 changed files with 406 additions and 33 deletions

View File

@@ -5,6 +5,25 @@
"title": "The minecraft manifest schema",
"description": "The minecraft manifest schema",
"required": ["format_version", "header"],
"examples": [
{
"format_version": 2,
"header": {
"description": "pack.description",
"name": "pack.name",
"uuid": "UUID2",
"min_engine_version": [1, 16, 0],
"version": [1, 0, 0]
},
"modules": [
{
"type": "data",
"uuid": "UUID2",
"version": [1, 0, 0]
}
]
}
],
"allOf": [
{
"if": {

View File

@@ -4,6 +4,9 @@
"type": "array",
"title": "The minecraft world x pack schema",
"description": "TODO description",
"examples": [
[{ "pack_id": "UUID", "version": [1, 0, 0] }]
],
"definitions": {
"uuidv4": { "$ref": "./UUIDV4.json" },
"version": { "$ref": "./Version.json" }