c@171: { c@178: "id": "http://vamp-plugins.org/piper/json/schema/loadrequest#", c@171: "$schema": "http://json-schema.org/draft-04/schema#", c@171: "description": "schema for a request to load a feature extractor; may be served in the params field of a load-method rpcrequest", c@171: "type": "object", c@171: "properties": { c@171: "key": { c@171: "type": "string" c@171: }, c@171: "inputSampleRate": { c@171: "type": "number" c@171: }, c@171: "adapterFlags": { c@171: "type": "array", c@171: "items": { c@178: "$ref": "http://vamp-plugins.org/piper/json/schema/enums#/definitions/adapter_flags" c@171: } c@171: } c@171: }, c@171: "required": [ "key", "inputSampleRate" ], c@171: "additionalProperties": false c@171: } c@171: