annotate schema/valueextents.json @ 75:6b6668cdb016 jsonrpc

Remove the term "plugin" in various places
author Chris Cannam
date Thu, 06 Oct 2016 13:38:16 +0100
parents 0c8629d9855d
children
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@74 4 "description": "schema for a structure giving the extents of a value range",
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