Skip to content

Commit

Permalink
fix responseOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
yibeichan committed Jan 12, 2024
1 parent acd07f5 commit 9be140d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
14 changes: 8 additions & 6 deletions activities/DSM-5_Y/items/dsm_cross_ch20
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,21 @@
},
"responseOptions": {
"valueType": "xsd:integer",
"minValue": 1,
"maxValue": 2,
"multipleChoice": false,
"choices": [
{
"schema:value": 1,
"schema:name": "Yes"
"name": "Yes",
"value": 0
},
{
"schema:value": 2,
"schema:name": "No"
"name": "No",
"value": 2
},
{
"schema:value": -9,
"schema:name": "Missing"
"name": "Missing",
"value": -9
}
]
}
Expand Down
15 changes: 8 additions & 7 deletions activities/DSM-5_Y/items/dsm_cross_ch21
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,22 @@
},
"responseOptions": {
"valueType": "xsd:integer",
"minValue": 1,
"maxValue": 2,
"multipleChoice": false,
"choices": [
{
"schema:value": 1,
"schema:name": "Yes"
"name": "Yes",
"value": 0
},
{
"schema:value": 2,
"schema:name": "No"
"name": "No",
"value": 2
},
{
"schema:value": -9,
"schema:name": "Missing"
"name": "Missing",
"value": -9
}
]
}

}

0 comments on commit 9be140d

Please sign in to comment.