{{item.chord}}
{{item.key}}
Example
{
"chords":
[
{
"chord": "RROL",
"key": "email"
},
{
"chord": "RMOR",
"key": "i"
},
{
"chord": "RMOO",
"key": "ant"
}
]
}
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "Will be added a later date >> e.g http://twiddler/userid/custom.mapping.schema.json",
"title": "Twiddler Mapping",
"description": "Custom Twiddler Mapping",
"type": "object"
"properties" : {
"chords" : {
"description" : "List of custom keys and associated chords",
"type" : "array",
"items" : {
"description" : "custom key and associated chord",
"type" : "object",
"properties" : {
"chord" : {
"type" : "string"
},
"key" : {
"type" : "string"
},
"required": [ "chord", "key" ]
}
}
}
}
"required": [ "chords" ]
}