annotate schema/loadrequest.json @ 75:6b6668cdb016
jsonrpc
Remove the term "plugin" in various places
author |
Chris Cannam |
date |
Thu, 06 Oct 2016 13:38:16 +0100 |
parents |
0c8629d9855d |
children |
7989989a8c3c |
rev |
line source |
Chris@29
|
1 {
|
Chris@29
|
2 "id": "http://vamp-plugins.org/json/schema/loadrequest#",
|
Chris@29
|
3 "$schema": "http://json-schema.org/draft-04/schema#",
|
Chris@74
|
4 "description": "schema for a request to load a feature extractor; may be served in the params field of a load-method rpcrequest",
|
Chris@29
|
5 "type": "object",
|
Chris@29
|
6 "properties": {
|
Chris@43
|
7 "pluginKey": {
|
Chris@29
|
8 "type": "string"
|
Chris@29
|
9 },
|
Chris@29
|
10 "inputSampleRate": {
|
Chris@29
|
11 "type": "number"
|
Chris@29
|
12 },
|
Chris@29
|
13 "adapterFlags": {
|
Chris@33
|
14 "type": "array",
|
Chris@33
|
15 "items": {
|
Chris@33
|
16 "$ref": "http://vamp-plugins.org/json/schema/enums#/definitions/adapter_flags"
|
Chris@33
|
17 }
|
Chris@29
|
18 }
|
Chris@29
|
19 },
|
Chris@43
|
20 "required": [ "pluginKey", "inputSampleRate" ],
|
Chris@29
|
21 "additionalProperties": false
|
Chris@29
|
22 }
|
Chris@29
|
23
|