view schema/processresponse.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 b4d0c04dec75
children 0c8629d9855d
line wrap: on
line source
{
    "id": "http://vamp-plugins.org/json/schema/processresponse#",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "schema for a serialised response from processing a data block using a Vamp plugin; normally served as the content field of an object matching the plain response schema",
    "type": "object",
    "properties": {
	"pluginHandle": {
	    "type": "number"
	},
	"features": {
	    "$ref": "http://vamp-plugins.org/json/schema/featureset#"
	}
    },
    "required": [ "pluginHandle", "features" ],
    "additionalProperties": false
}