Created
March 23, 2024 19:16
-
-
Save garrytrinder/0ac37d835a7addf0208b146beeae8f9c to your computer and use it in GitHub Desktop.
Revisions
-
garrytrinder created this gist
Mar 23, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ { "$schema": "http://json-schema.org/draft-07/schema#", "type": "array", "items": { "type": "object", "properties": { "position": { "type": "string" }, "value": { "type": "string" }, "modifiers": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": { "type": "integer" } }, "required": ["key", "value"] } } }, "required": ["position", "value", "modifiers"] } }