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

View File

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