Add fog json validation

This commit is contained in:
DaanV2
2020-11-18 10:00:43 +01:00
parent 79d08e5bc6
commit 38a6914389
2 changed files with 172 additions and 0 deletions

11
resource/fog/fog.json Normal file
View File

@@ -0,0 +1,11 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.resource.fog",
"examples": [],
"allOf": [
{
"if": { "properties": { "format_version": { "type": "string", "const": "1.16.100" } } },
"then": { "$ref": "./1.16.100/fog.json" }
}
]
}