annotate schema/configurationresponse.json @ 75:6b6668cdb016 jsonrpc

Remove the term "plugin" in various places
author Chris Cannam
date Thu, 06 Oct 2016 13:38:16 +0100
parents 0c8629d9855d
children
rev   line source
Chris@38 1 {
Chris@38 2 "id": "http://vamp-plugins.org/json/schema/configurationresponse#",
Chris@38 3 "$schema": "http://json-schema.org/draft-04/schema#",
Chris@74 4 "description": "schema for a response to a request to configure a feature extractor; may be served in the result field of a configure-method rpcresponse",
Chris@38 5 "type": "object",
Chris@38 6 "properties": {
Chris@75 7 "handle": {
Chris@51 8 "type": "number"
Chris@51 9 },
Chris@38 10 "outputList": {
Chris@38 11 "type": "array",
Chris@38 12 "items": { "$ref": "http://vamp-plugins.org/json/schema/outputdescriptor#" }
Chris@38 13 }
Chris@38 14 },
Chris@38 15 "required": [ "outputList" ],
Chris@38 16 "additionalProperties": false
Chris@38 17 }
Chris@38 18