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