annotate schema/processresponse.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@50 1 {
Chris@50 2 "id": "http://vamp-plugins.org/json/schema/processresponse#",
Chris@50 3 "$schema": "http://json-schema.org/draft-04/schema#",
Chris@74 4 "description": "schema for a response to a request to process a chunk of data using a feature extractor; may be served in the result field of a process-method rpcresponse",
Chris@50 5 "type": "object",
Chris@50 6 "properties": {
Chris@75 7 "handle": {
Chris@50 8 "type": "number"
Chris@50 9 },
Chris@50 10 "features": {
Chris@50 11 "$ref": "http://vamp-plugins.org/json/schema/featureset#"
Chris@50 12 }
Chris@50 13 },
Chris@75 14 "required": [ "handle", "features" ],
Chris@50 15 "additionalProperties": false
Chris@50 16 }
Chris@50 17