annotate schema/configurationrequest.json @ 51:944a65cd4314 outputid-string-in-featureset

Make RequestResponse types more consistent by adding plugin to ConfigurationResponse and introducing a FinishRequest
author Chris Cannam
date Mon, 19 Sep 2016 13:35:56 +0100
parents 22c33bd017ba
children 0c8629d9855d
rev   line source
Chris@35 1 {
Chris@35 2 "id": "http://vamp-plugins.org/json/schema/configurationrequest#",
Chris@35 3 "$schema": "http://json-schema.org/draft-04/schema#",
Chris@39 4 "description": "schema for a serialised request to configure a Vamp plugin; normally served as the content field of an object matching the plain request schema",
Chris@35 5 "type": "object",
Chris@35 6 "properties": {
Chris@35 7 "pluginHandle": {
Chris@35 8 "type": "number"
Chris@35 9 },
Chris@35 10 "configuration": {
Chris@35 11 "$ref": "http://vamp-plugins.org/json/schema/pluginconfiguration#"
Chris@35 12 }
Chris@35 13 },
Chris@35 14 "required": [ "pluginHandle", "configuration" ],
Chris@35 15 "additionalProperties": false
Chris@35 16 }
Chris@35 17