Mercurial > hg > piper
annotate schema/basic.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@23 | 1 { |
Chris@23 | 2 "id": "http://vamp-plugins.org/json/schema/basic#", |
Chris@23 | 3 "$schema": "http://json-schema.org/draft-04/schema#", |
Chris@74 | 4 "description": "schema for a common unit of basic metadata", |
Chris@23 | 5 "type": "object", |
Chris@23 | 6 "properties": { |
Chris@28 | 7 "identifier": { |
Chris@28 | 8 "type": "string", |
Chris@28 | 9 "pattern": "^[a-zA-Z0-9_-]+$" |
Chris@28 | 10 }, |
Chris@28 | 11 "name": { |
Chris@28 | 12 "type": "string" |
Chris@28 | 13 }, |
Chris@28 | 14 "description": { |
Chris@28 | 15 "type": "string" |
Chris@28 | 16 } |
Chris@23 | 17 }, |
Chris@23 | 18 "required": [ "identifier" ], |
Chris@23 | 19 "additionalProperties": false |
Chris@23 | 20 } |