annotate schema/loadresponse.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@29 1 {
Chris@29 2 "id": "http://vamp-plugins.org/json/schema/loadresponse#",
Chris@29 3 "$schema": "http://json-schema.org/draft-04/schema#",
Chris@74 4 "description": "schema for a response to a request to load a feature extractor; may be served in the result field of a load-method rpcresponse",
Chris@29 5 "type": "object",
Chris@29 6 "properties": {
Chris@75 7 "handle": {
Chris@29 8 "type": "number"
Chris@29 9 },
Chris@29 10 "staticData": {
Chris@75 11 "$ref": "http://vamp-plugins.org/json/schema/extractorstaticdata#"
Chris@29 12 },
Chris@29 13 "defaultConfiguration": {
Chris@75 14 "$ref": "http://vamp-plugins.org/json/schema/configuration#"
Chris@29 15 }
Chris@29 16 },
Chris@29 17 "additionalProperties": false
Chris@29 18 }
Chris@29 19