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 / json / schema / loadresponse.json @ 214:970fd3bd8c92

History | View | Annotate | Download (1010 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
            "patternProperties": {
19
                "^[a-zA-Z0-9_-]+$": {
20
                    "type": "object",
21
                    "patternProperties": {
22
                        "^[a-zA-Z0-9_-]+$": {
23
                            "type": "number"
24
                        }
25
                    }
26
                }
27
            }
28
        }
29
    },
30
    "required": [ "handle", "staticData", "defaultConfiguration" ],
31
    "additionalProperties": false
32
}
33