comparison json/schema/configurationrequest.json @ 172:ee9d66f669d2

Merge JSON and Cap'n Proto schema
author Chris Cannam <c.cannam@qmul.ac.uk>
date Fri, 07 Oct 2016 15:42:12 +0100
parents 4c2ff04a89cf
children ffe01c8286c4
comparison
equal deleted inserted replaced
168:5cd428fc703c 172:ee9d66f669d2
1 {
2 "id": "http://vamp-plugins.org/json/schema/configurationrequest#",
3 "$schema": "http://json-schema.org/draft-04/schema#",
4 "description": "schema for a request to configure a feature extractor; may be served in the params field of a configure-method rpcrequest",
5 "type": "object",
6 "properties": {
7 "handle": {
8 "type": "number"
9 },
10 "configuration": {
11 "$ref": "http://vamp-plugins.org/json/schema/configuration#"
12 }
13 },
14 "required": [ "handle", "configuration" ],
15 "additionalProperties": false
16 }
17