-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapiDocs.json
More file actions
50 lines (50 loc) · 1.89 KB
/
Copy pathapiDocs.json
File metadata and controls
50 lines (50 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"paths": {
"/MIDI/Last": {
"get": {
"summary": "Recently received MIDI messages",
"description": "The last few MIDI messages the plugin has seen, as raw hex bytes, most recent last. Intended for working out what a controller sends while setting up an event mapping.",
"responses": {
"200": {
"description": "Recent messages",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "string"
}
},
"example": [
"0x90 0x3C 0x64",
"0x80 0x3C 0x00"
]
}
}
}
}
}
},
"/MIDI/Devices": {
"get": {
"summary": "Available MIDI input devices",
"description": "The MIDI input ports visible to the player, for choosing which to listen on.",
"responses": {
"200": {
"description": "Device names",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
}
}
}