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