Mercurial > hg > piper
view schema/configurationresponse.json @ 151:769467c9a4fd
Pull out serialisedarray schema
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Wed, 05 Oct 2016 09:58:49 +0100 |
parents | 9f009d879594 |
children | 0c8629d9855d |
line wrap: on
line source
{ "id": "http://vamp-plugins.org/json/schema/configurationresponse#", "$schema": "http://json-schema.org/draft-04/schema#", "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", "type": "object", "properties": { "pluginHandle": { "type": "number" }, "outputList": { "type": "array", "items": { "$ref": "http://vamp-plugins.org/json/schema/outputdescriptor#" } } }, "required": [ "outputList" ], "additionalProperties": false }