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