annotate schema/loadresponse.json @ 67:ada4cd9daaba docrefactor

Pull out serialisedarray schema
author Chris Cannam
date Wed, 05 Oct 2016 09:58:49 +0100
parents 9c1119f9160d
children 0c8629d9855d
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@50 4 "description": "schema for a serialised response to a load request for a Vamp Plugin; normally served as the content field of an object matching the plain response schema",
Chris@29 5 "type": "object",
Chris@29 6 "properties": {
Chris@29 7 "pluginHandle": {
Chris@29 8 "type": "number"
Chris@29 9 },
Chris@29 10 "staticData": {
Chris@29 11 "$ref": "http://vamp-plugins.org/json/schema/pluginstaticdata#"
Chris@29 12 },
Chris@29 13 "defaultConfiguration": {
Chris@29 14 "$ref": "http://vamp-plugins.org/json/schema/pluginconfiguration#"
Chris@29 15 }
Chris@29 16 },
Chris@29 17 "additionalProperties": false
Chris@29 18 }
Chris@29 19