forked from projectatomic/nulecule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
param.json
33 lines (32 loc) · 984 Bytes
/
param.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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Parameter",
"description": "Name of the parameter as used in artifacts",
"type": "object",
"required": [ "name", "description" ],
"properties": {
"name": {
"description": "",
"type": "string",
"default": "null"
},
"description": {
"description": "A human readable description of the parameter.",
"type": "string",
"default": "null"
},
"constraints": {
"$ref": "file:constraint.json"
},
"default": {
"description": "An optional default value for the parameter.",
"type": "string",
"default": "null"
},
"hidden": {
"description": "An optional boolean signifying the parameter should be obscured when displayed.",
"type": "boolean",
"default": false
}
}
}