Initial Commit
slip slop
This commit is contained in:
commit
064e672ab7
61 changed files with 3504 additions and 0 deletions
46
ain/tunes/create.ain
Normal file
46
ain/tunes/create.ain
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
# Create a tune with nested banjo, fiddle, notes, and references in one shot.
|
||||
# All fields except the top-level ones are optional — remove any block you don't need.
|
||||
# ain ain/base.ain ain/tunes/create.ain
|
||||
|
||||
[Host]
|
||||
/tunes/
|
||||
|
||||
[Method]
|
||||
POST
|
||||
|
||||
[Body]
|
||||
{
|
||||
"name": "Cluck Old Hen",
|
||||
"key": "A",
|
||||
"version": "full",
|
||||
"banjo": {
|
||||
"tuning": "double C",
|
||||
"learned_from": "Earl Scruggs",
|
||||
"date_learned": "2024-03-01",
|
||||
"callable": true,
|
||||
"review": false,
|
||||
"to_learn": false,
|
||||
"difficulty": null
|
||||
},
|
||||
"fiddle": {
|
||||
"tuning": "cross",
|
||||
"learned_from": "Alison Krauss",
|
||||
"date_learned": "2024-06-15",
|
||||
"callable": false,
|
||||
"review": true,
|
||||
"to_learn": false,
|
||||
"difficulty": null
|
||||
},
|
||||
"notes": [
|
||||
{ "note": "tricky B part — watch the timing" }
|
||||
],
|
||||
"references": [
|
||||
{
|
||||
"link": "https://www.youtube.com/watch?v=example",
|
||||
"site": "YouTube",
|
||||
"musicians": [
|
||||
{ "name": "Alison Krauss" }
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue