auto: Formatted json files

This commit is contained in:
DaanV2
2021-01-28 18:34:03 +01:00
parent dc534fca48
commit c434801daf
2 changed files with 12 additions and 14 deletions

View File

@@ -54,9 +54,7 @@
"commands": { "commands": {
"type": "string", "type": "string",
"description": "The event or commands to execute", "description": "The event or commands to execute",
"examples": [ "examples": ["@s example:event"],
"@s example:event"
],
"oneOf": [ "oneOf": [
{ "pattern": "^@s .+$", "title": "Event" }, { "pattern": "^@s .+$", "title": "Event" },
{ "pattern": "^/.+$", "title": "Command" }, { "pattern": "^/.+$", "title": "Command" },

View File

@@ -1,12 +1,12 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema", "$schema": "http://json-schema.org/draft-07/schema",
"title": "Texture list", "title": "Texture list",
"description": "A list of texture to load in", "description": "A list of texture to load in",
"type": "array", "type": "array",
"items": { "items": {
"title": "Filepath", "title": "Filepath",
"type": "string", "type": "string",
"pattern": "^textures/", "pattern": "^textures/",
"examples": ["textures/blocks/"] "examples": ["textures/blocks/"]
} }
} }