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 / extractorstaticdata.json @ 216:72a3b8faba89

History | View | Annotate | Download (1.57 KB)

1
{
2
    "id": "http://vamp-plugins.org/piper/json/schema/extractorstaticdata#",
3
    "$schema": "http://json-schema.org/draft-04/schema#",
4
    "description": "schema for the static metadata associated with a feature extractor",
5
    "type": "object",
6
    "properties": {
7
        "key": {
8
            "type": "string"
9
        },
10
        "basic": {
11
            "$ref": "http://vamp-plugins.org/piper/json/schema/basic#"
12
        },
13
        "maker": {
14
            "type": "string"
15
        },
16
        "rights": {
17
            "type": "string"
18
        },
19
        "version": {
20
            "type": "integer"
21
        },
22
        "category": {
23
            "type": "array",
24
            "items": { "type": "string" }
25
        },
26
        "minChannelCount": {
27
            "type": "integer"
28
        },
29
        "maxChannelCount": {
30
            "type": "integer"
31
        },
32
        "parameters": {
33
            "type": "array",
34
            "items": { "$ref": "http://vamp-plugins.org/piper/json/schema/parameterdescriptor#" }
35
        },
36
        "programs": {
37
            "type": "array",
38
            "items": { "type": "string" }
39
        },
40
        "inputDomain": {
41
            "$ref": "http://vamp-plugins.org/piper/json/schema/enums#/definitions/input_domain"
42
        },
43
        "basicOutputInfo": {
44
            "type": "array",
45
            "items": { "$ref": "http://vamp-plugins.org/piper/json/schema/basic#" }
46
        },
47
        "staticOutputInfo": {
48
            "type": "object",
49
            "patternProperties": {
50
                "^[a-zA-Z0-9_-]+$": {
51
                    "$ref": "http://vamp-plugins.org/piper/json/schema/staticoutputdescriptor#"
52
                }
53
            },
54
            "additionalProperties": false
55
        }
56
    },
57
    "required": [ "key", "basic", "version",
58
                  "minChannelCount", "maxChannelCount",
59
                  "inputDomain", "basicOutputInfo" ],
60
    "additionalProperties": false
61
}
62