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.

Statistics Download as Zip
| Branch: | Revision:

root / schema / pluginconfiguration.json @ 28:4c3ac59c9089

History | View | Annotate | Download (730 Bytes)

1
{
2
    "id": "http://vamp-plugins.org/json/schema/pluginconfiguration#",
3
    "$schema": "http://json-schema.org/draft-04/schema#",
4
    "description": "schema for a serialised bundle of configuration data associated with a Vamp Plugin",
5
    "type": "object",
6
    "properties": {
7
        "parameterValues": {
8
            "type": "object",
9
            "patternProperties": {
10
                "^[a-zA-Z0-9_-]+$": {
11
                    "type": "number"
12
                }
13
            },
14
            "additionalProperties": false
15
        },
16
        "currentProgram": {
17
            "type": "string"
18
        },
19
        "channelCount": {
20
            "type": "integer"
21
        },
22
        "stepSize": {
23
            "type": "integer"
24
        },
25
        "blockSize": {
26
            "type": "integer"
27
        }
28
    },
29
    "required": [ "channelCount", "stepSize", "blockSize" ],
30
    "additionalProperties": false
31
}
32