Set List Format - off-sync/score-sync GitHub Wiki
Set Lists are stored in a JSON based format.
{
"title": <string>,
"date": <string>,
"sets": [
{
"blocks": [
{
"songs": [
{
"id": <string>,
"title": <string>,
"artist": <string>,
"key": <string>,
"tempo": <int>,
"comments": <string>
}
]
}
]
}
]
}
Example:
{
"title": "Wedding",
"date": "2018-03-23T18:35:00Z",
"sets": [
{
"blocks": [
{
"songs": [
{
"id": "........-....-....-....-............",
"title": "Let Me Entertain You",
"artist": "Robbie Williams",
"key": "E",
"tempo": 125,
"comments": "Sliding guitar intro"
}
]
}
]
}
]
}