Mercurial > hg > piper
annotate schema/configurationresponse.json @ 67:ada4cd9daaba docrefactor
Pull out serialisedarray schema
author | Chris Cannam |
---|---|
date | Wed, 05 Oct 2016 09:58:49 +0100 |
parents | 944a65cd4314 |
children | 0c8629d9855d |
rev | line source |
---|---|
Chris@38 | 1 { |
Chris@38 | 2 "id": "http://vamp-plugins.org/json/schema/configurationresponse#", |
Chris@38 | 3 "$schema": "http://json-schema.org/draft-04/schema#", |
Chris@50 | 4 "description": "schema for a serialised response to a request to configure a Vamp plugin; normally served as the content field of an object matching the plain response schema", |
Chris@38 | 5 "type": "object", |
Chris@38 | 6 "properties": { |
Chris@51 | 7 "pluginHandle": { |
Chris@51 | 8 "type": "number" |
Chris@51 | 9 }, |
Chris@38 | 10 "outputList": { |
Chris@38 | 11 "type": "array", |
Chris@38 | 12 "items": { "$ref": "http://vamp-plugins.org/json/schema/outputdescriptor#" } |
Chris@38 | 13 } |
Chris@38 | 14 }, |
Chris@38 | 15 "required": [ "outputList" ], |
Chris@38 | 16 "additionalProperties": false |
Chris@38 | 17 } |
Chris@38 | 18 |