view schema/featureset.json @ 151:769467c9a4fd

Pull out serialisedarray schema
author Chris Cannam <c.cannam@qmul.ac.uk>
date Wed, 05 Oct 2016 09:58:49 +0100
parents eb08485be9f0
children a99929c1df42
line wrap: on
line source
{
    "id": "http://vamp-plugins.org/json/schema/featureset#",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "schema for a Vamp::Plugin::FeatureSet serialisation",
    "type": "object",
    "patternProperties": {
	"^[a-zA-Z0-9_-]+$": {
	    "type": "array",
	    "items": { "$ref": "http://vamp-plugins.org/json/schema/feature#" }
	}
    },
    "additionalProperties": false
}