annotate schema/processinput.json @ 51:944a65cd4314
outputid-string-in-featureset
Make RequestResponse types more consistent by adding plugin to ConfigurationResponse and introducing a FinishRequest
author |
Chris Cannam |
date |
Mon, 19 Sep 2016 13:35:56 +0100 |
parents |
32a4d9731320 |
children |
1dc498c79115 |
rev |
line source |
Chris@40
|
1 {
|
Chris@40
|
2 "id": "http://vamp-plugins.org/json/schema/processblock#",
|
Chris@40
|
3 "$schema": "http://json-schema.org/draft-04/schema#",
|
Chris@40
|
4 "description": "schema for a serialised input into a plugin process call",
|
Chris@40
|
5 "type": "object",
|
Chris@40
|
6 "properties": {
|
Chris@40
|
7 "timestamp": {
|
Chris@40
|
8 "$ref": "http://vamp-plugins.org/json/schema/realtime#"
|
Chris@40
|
9 },
|
Chris@46
|
10 "inputBuffers": {
|
Chris@40
|
11 "type": "array",
|
Chris@40
|
12 "items": {
|
Chris@40
|
13 "type": "object",
|
Chris@40
|
14 "properties": {
|
Chris@40
|
15 "values": {
|
Chris@40
|
16 "type": "array",
|
Chris@40
|
17 "items": { "type": "number" }
|
Chris@40
|
18 },
|
Chris@40
|
19 "b64values": {
|
Chris@40
|
20 "type": "string"
|
Chris@40
|
21 }
|
Chris@40
|
22 }
|
Chris@40
|
23 }
|
Chris@40
|
24 }
|
Chris@40
|
25 },
|
Chris@40
|
26 "additionalProperties": false
|
Chris@40
|
27 }
|
Chris@40
|
28
|
Chris@40
|
29
|