annotate schema/featureset.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/featureset#",
|
Chris@24
|
3 "$schema": "http://json-schema.org/draft-04/schema#",
|
Chris@74
|
4 "description": "schema for a set of features returned by a feature extractor, associating an output id with an array of features from that output",
|
Chris@30
|
5 "type": "object",
|
Chris@30
|
6 "patternProperties": {
|
Chris@50
|
7 "^[a-zA-Z0-9_-]+$": {
|
Chris@30
|
8 "type": "array",
|
Chris@30
|
9 "items": { "$ref": "http://vamp-plugins.org/json/schema/feature#" }
|
Chris@30
|
10 }
|
Chris@24
|
11 },
|
Chris@24
|
12 "additionalProperties": false
|
Chris@24
|
13 }
|