annotate schema/valueextents.json @ 67:ada4cd9daaba docrefactor

Pull out serialisedarray schema
author Chris Cannam
date Wed, 05 Oct 2016 09:58:49 +0100
parents 1bf1ea70e386
children 0c8629d9855d
rev   line source
Chris@24 1 {
Chris@24 2 "id": "http://vamp-plugins.org/json/schema/valueextents#",
Chris@24 3 "$schema": "http://json-schema.org/draft-04/schema#",
Chris@24 4 "description": "schema for the extents structure in various Vamp descriptors",
Chris@24 5 "type": "object",
Chris@24 6 "properties": {
Chris@24 7 "min": { "type": "number" },
Chris@24 8 "max": { "type": "number" }
Chris@24 9 },
Chris@24 10 "required": [ "min", "max" ],
Chris@24 11 "additionalProperties": false
Chris@24 12 }
Chris@24 13