-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvalueConstraints
49 lines (49 loc) · 1023 Bytes
/
valueConstraints
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
43
44
45
46
47
48
49
{
"@context": "https://raw.githubusercontent.com/ReproNim/reproschema/main/releases/1.0.0/reproschema",
"id": "valueConstraints",
"category": "ResponseOption",
"maxValue": 5,
"minValue": 0,
"choices": [
{
"name": {
"en": "0 = Does Not Apply"
},
"value": 0
},
{
"name": {
"en": "1 = Rarely"
},
"value": 1
},
{
"name": {
"en": "2 = Occasionally"
},
"value": 2
},
{
"name": {
"en": "3 = Frequently"
},
"value": 3
},
{
"name": {
"en": "4 = Often"
},
"value": 4
},
{
"name": {
"en": "5 = Always"
},
"value": 5
}
],
"multipleChoice": false,
"valueType": [
"xsd:integer"
]
}