Skip to content

Instantly share code, notes, and snippets.

@garrytrinder
Created March 23, 2024 19:16
Show Gist options
  • Save garrytrinder/0ac37d835a7addf0208b146beeae8f9c to your computer and use it in GitHub Desktop.
Save garrytrinder/0ac37d835a7addf0208b146beeae8f9c to your computer and use it in GitHub Desktop.
{
"$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