annotate schema/loadrequest.json @ 77:7989989a8c3c

Rename away a few more references to plugins
author Chris Cannam
date Thu, 06 Oct 2016 14:00:51 +0100
parents 0c8629d9855d
children
rev   line source
Chris@29 1 {
Chris@29 2 "id": "http://vamp-plugins.org/json/schema/loadrequest#",
Chris@29 3 "$schema": "http://json-schema.org/draft-04/schema#",
Chris@74 4 "description": "schema for a request to load a feature extractor; may be served in the params field of a load-method rpcrequest",
Chris@29 5 "type": "object",
Chris@29 6 "properties": {
Chris@77 7 "key": {
Chris@29 8 "type": "string"
Chris@29 9 },
Chris@29 10 "inputSampleRate": {
Chris@29 11 "type": "number"
Chris@29 12 },
Chris@29 13 "adapterFlags": {
Chris@33 14 "type": "array",
Chris@33 15 "items": {
Chris@33 16 "$ref": "http://vamp-plugins.org/json/schema/enums#/definitions/adapter_flags"
Chris@33 17 }
Chris@29 18 }
Chris@29 19 },
Chris@77 20 "required": [ "key", "inputSampleRate" ],
Chris@29 21 "additionalProperties": false
Chris@29 22 }
Chris@29 23