forked from hoprnet/hoprnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
releases-schema.json
42 lines (42 loc) · 1.33 KB
/
releases-schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"type": "object",
"items": {
"type": "object",
"patternProperties": {
"^[a-z0-9-]+$": {
"type": "string",
"description": "the release id used for VM naming",
"properties": {
"version_major": {
"type": "integer",
"description": "major semver for the release"
},
"version_minor": {
"type": "integer",
"description": "minor semver for the release"
},
"git_ref": {
"type": "string",
"description": "regex which is matched against git refs and determins if the release is build and deployed"
},
"network": {
"type": "string",
"description": "the default network id to run release nodes in, see protocol-config.json"
},
"deprecated": {
"type": "boolean",
"description": "if true, this release is kept for historical purposes and not re-deployed",
"default": false
},
"default": {
"type": "boolean",
"description": "if true, this release's network is used as the default for packaged releases",
"default": false
}
},
"required": ["id", "git_ref", "network"],
"additionalProperties": false
}
}
}
}