view schema/configurationresponse.json @ 63:8f3ba64ec888 jsonrpc

Start reworking request-response into json-rpc format
author Chris Cannam
date Wed, 05 Oct 2016 09:19:05 +0100
parents 944a65cd4314
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
}