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