annotate schema/configurationrequest.json @ 114:fbcb2ee278b8
Change some names to harmonise better with SDK
author |
Chris Cannam <c.cannam@qmul.ac.uk> |
date |
Thu, 12 May 2016 12:26:29 +0100 |
parents |
17d6e8f89bc2 |
children |
0c8629d9855d |
rev |
line source |
c@106
|
1 {
|
c@106
|
2 "id": "http://vamp-plugins.org/json/schema/configurationrequest#",
|
c@106
|
3 "$schema": "http://json-schema.org/draft-04/schema#",
|
c@110
|
4 "description": "schema for a serialised request to configure a Vamp plugin; normally served as the content field of an object matching the plain request schema",
|
c@106
|
5 "type": "object",
|
c@106
|
6 "properties": {
|
c@106
|
7 "pluginHandle": {
|
c@106
|
8 "type": "number"
|
c@106
|
9 },
|
c@106
|
10 "configuration": {
|
c@106
|
11 "$ref": "http://vamp-plugins.org/json/schema/pluginconfiguration#"
|
c@106
|
12 }
|
c@106
|
13 },
|
c@106
|
14 "required": [ "pluginHandle", "configuration" ],
|
c@106
|
15 "additionalProperties": false
|
c@106
|
16 }
|
c@106
|
17
|