Created
March 23, 2024 19:16
-
-
Save garrytrinder/0ac37d835a7addf0208b146beeae8f9c to your computer and use it in GitHub Desktop.
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 characters
{ | |
"$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"] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment