view schema/processrequest.json @ 60:8f72b4c0c71c

List response is an object, with plugins field; add finish request schema and example
author Chris Cannam
date Fri, 23 Sep 2016 14:19:32 +0100
parents d4bcfd5351f5
children 0c8629d9855d
line wrap: on
line source
{
    "id": "http://vamp-plugins.org/json/schema/processrequest#",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "schema for a serialised request to process a data block using a Vamp plugin; normally served as the content field of an object matching the plain request schema",
    "type": "object",
    "properties": {
	"pluginHandle": {
	    "type": "number"
	},
	"processInput": {
	    "$ref": "http://vamp-plugins.org/json/schema/processinput#"
	}
    },
    "required": [ "pluginHandle", "processInput" ],
    "additionalProperties": false
}