annotate schema/featureset.json @ 67:ada4cd9daaba docrefactor

Pull out serialisedarray schema
author Chris Cannam
date Wed, 05 Oct 2016 09:58:49 +0100
parents b4d0c04dec75
children 0c8629d9855d
rev   line source
Chris@24 1 {
Chris@24 2 "id": "http://vamp-plugins.org/json/schema/featureset#",
Chris@24 3 "$schema": "http://json-schema.org/draft-04/schema#",
Chris@24 4 "description": "schema for a Vamp::Plugin::FeatureSet serialisation",
Chris@30 5 "type": "object",
Chris@30 6 "patternProperties": {
Chris@50 7 "^[a-zA-Z0-9_-]+$": {
Chris@30 8 "type": "array",
Chris@30 9 "items": { "$ref": "http://vamp-plugins.org/json/schema/feature#" }
Chris@30 10 }
Chris@24 11 },
Chris@24 12 "additionalProperties": false
Chris@24 13 }