Mercurial > hg > piper
view schema/basic.json @ 113:65f05b129422
Add the few remaining examples
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Wed, 11 May 2016 13:59:23 +0100 |
parents | 6ff2abfeb379 |
children | a99929c1df42 |
line wrap: on
line source
{ "id": "http://vamp-plugins.org/json/schema/basic#", "$schema": "http://json-schema.org/draft-04/schema#", "description": "schema for the basic part of various Vamp descriptors", "type": "object", "properties": { "identifier": { "type": "string", "pattern": "^[a-zA-Z0-9_-]+$" }, "name": { "type": "string" }, "description": { "type": "string" } }, "required": [ "identifier" ], "additionalProperties": false }