Moved to source folder

This commit is contained in:
DaanV2
2021-02-01 18:39:12 +01:00
parent c434801daf
commit ac0f3d12d6
1000 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"title": "Molang array of 3 numbers",
"description": "The minecraft molang definition that results in a 3 floats",
"anyOf": [{ "type": "string", "minLength": 0, "format": "molang" }]
}

View File

@@ -0,0 +1,7 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "molang_number1.8.0",
"title": "Molang number",
"description": "The minecraft molang definition that results in a float",
"anyOf": [{ "type": "string", "minLength": 0, "format": "molang" }, { "type": "number" }]
}

View File

@@ -0,0 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "molang.string.1.8.0",
"type": "string",
"title": "Molang / string definition",
"description": "Molang definition",
"format": "molang"
}