annotate schema/processrequest.json @ 144:a2c41b5fcc0b
Update config response example
author |
Chris Cannam <c.cannam@qmul.ac.uk> |
date |
Fri, 23 Sep 2016 13:13:21 +0100 |
parents |
ad3d8d4da194 |
children |
0c8629d9855d |
rev |
line source |
c@116
|
1 {
|
c@116
|
2 "id": "http://vamp-plugins.org/json/schema/processrequest#",
|
c@116
|
3 "$schema": "http://json-schema.org/draft-04/schema#",
|
c@116
|
4 "description": "schema for a serialised request to process a data block using a Vamp plugin; normally served as the content field of an object matching the plain request schema",
|
c@116
|
5 "type": "object",
|
c@116
|
6 "properties": {
|
c@116
|
7 "pluginHandle": {
|
c@116
|
8 "type": "number"
|
c@116
|
9 },
|
c@117
|
10 "processInput": {
|
c@117
|
11 "$ref": "http://vamp-plugins.org/json/schema/processinput#"
|
c@116
|
12 }
|
c@116
|
13 },
|
c@118
|
14 "required": [ "pluginHandle", "processInput" ],
|
c@116
|
15 "additionalProperties": false
|
c@116
|
16 }
|
c@116
|
17
|