Mercurial > hg > piper
view schema/configurationresponse.json @ 113:65f05b129422
Add the few remaining examples
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Wed, 11 May 2016 13:59:23 +0100 |
parents | 7477df97f332 |
children | b4d0c04dec75 |
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 response field of an object matching the plain response schema", "type": "object", "properties": { "outputList": { "type": "array", "items": { "$ref": "http://vamp-plugins.org/json/schema/outputdescriptor#" } } }, "required": [ "outputList" ], "additionalProperties": false }