Mercurial > hg > piper
view schema/basic.json @ 63:8f3ba64ec888 jsonrpc
Start reworking request-response into json-rpc format
author | Chris Cannam |
---|---|
date | Wed, 05 Oct 2016 09:19:05 +0100 |
parents | 4c3ac59c9089 |
children | 0c8629d9855d |
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 }