-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvalueConstraints
43 lines (43 loc) · 941 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
{
"@context": "https://raw.githubusercontent.com/ReproNim/reproschema/main/releases/1.0.0/reproschema",
"id": "valueConstraints",
"category": "ResponseOption",
"maxValue": 5,
"minValue": 0,
"choices": [
{
"name": {
"en": "1 = Disagree strongly"
},
"value": 1
},
{
"name": {
"en": "2 = Disagree a little"
},
"value": 2
},
{
"name": {
"en": "3 = Neutral, no opinion"
},
"value": 3
},
{
"name": {
"en": "4 = Agree a little"
},
"value": 4
},
{
"name": {
"en": "5 = Agree strongly"
},
"value": 5
}
],
"multipleChoice": false,
"valueType": [
"xsd:integer"
]
}