To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
The primary repository for this project is hosted at https://github.com/piper-audio/piper .
This repository is a read-only copy which is updated automatically every hour.
root / json / schema / outputdescriptor.json @ 213:5e3397af978f
History | View | Annotate | Download (647 Bytes)
| 1 |
{
|
|---|---|
| 2 |
"id": "http://vamp-plugins.org/piper/json/schema/outputdescriptor#", |
| 3 |
"$schema": "http://json-schema.org/draft-04/schema#", |
| 4 |
"description": "schema for metadata about an output of a feature extractor", |
| 5 |
"type": "object", |
| 6 |
"properties": {
|
| 7 |
"basic": {
|
| 8 |
"$ref": "http://vamp-plugins.org/piper/json/schema/basic#" |
| 9 |
}, |
| 10 |
"static": {
|
| 11 |
"$ref": "http://vamp-plugins.org/piper/json/schema/staticoutputdescriptor#" |
| 12 |
}, |
| 13 |
"configured": {
|
| 14 |
"$ref": "http://vamp-plugins.org/piper/json/schema/configuredoutputdescriptor#" |
| 15 |
} |
| 16 |
}, |
| 17 |
"required": [ "basic", "configured" ], |
| 18 |
"additionalProperties": false |
| 19 |
} |
| 20 |
|