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 / loadresponse.json @ 216:72a3b8faba89
History | View | Annotate | Download (1008 Bytes)
| 1 |
{
|
|---|---|
| 2 |
"id": "http://vamp-plugins.org/piper/json/schema/loadresponse#", |
| 3 |
"$schema": "http://json-schema.org/draft-04/schema#", |
| 4 |
"description": "schema for a successful response to a request to load a feature extractor; may be served in the result field of a load-method rpcresponse", |
| 5 |
"type": "object", |
| 6 |
"properties": {
|
| 7 |
"handle": {
|
| 8 |
"type": "number" |
| 9 |
}, |
| 10 |
"staticData": {
|
| 11 |
"$ref": "http://vamp-plugins.org/piper/json/schema/extractorstaticdata#" |
| 12 |
}, |
| 13 |
"defaultConfiguration": {
|
| 14 |
"$ref": "http://vamp-plugins.org/piper/json/schema/configuration#" |
| 15 |
}, |
| 16 |
"programParameters": {
|
| 17 |
"type": "object", |
| 18 |
"additionalProperties": {
|
| 19 |
"type": "object", |
| 20 |
"patternProperties": {
|
| 21 |
"^[a-zA-Z0-9_-]+$": {
|
| 22 |
"type": "number" |
| 23 |
} |
| 24 |
}, |
| 25 |
"additionalProperties": false |
| 26 |
} |
| 27 |
} |
| 28 |
}, |
| 29 |
"required": [ "handle", "staticData", "defaultConfiguration" ], |
| 30 |
"additionalProperties": false |
| 31 |
} |
| 32 |
|