changes.mady.by.user Vaibhav Bhuva
Saved on May 16, 2023
...
Current Format
New format as per QuML Spec
"responseDeclaration": { "response1": { "maxScore": 1, "cardinality": "single", "type": "integer", "correctResponse": { "value": "0", "outcomes": { "SCORE": 1 } }, "mapping": [ { "response": 0, "outcomes": { "score": 1 } } ] } }
"responseDeclaration": { "response1": { "cardinality": "single", "type": "integer", "correctResponse": { "value": 0 }, "mapping": [ { "value": 0, "score": 1 } ] } }, "outcomeDeclaration": { "maxScore": { "cardinality": "single", "type": "integer", "defaultValue": 1 } }
"responseDeclaration": { "response1": { "maxScore": 1, "cardinality": "multiple", "type": "integer", "correctResponse": { "value": [1,0], "outcomes": { "SCORE": 1 } }, "mapping": [ { "response": 1, "outcomes": { "score": 0.5 } }, { "response": 0, "outcomes": { "score": 0.5 } } ] } }
"responseDeclaration": { "response1": { "cardinality": "multiple", "type": "integer", "correctResponse": { "value": [1,0] }, "mapping": [ { "value": 1, "score": 0.5 }, { "value": 0, "score": 0.5 } ] } }, "outcomeDeclaration": { "maxScore": { "cardinality": "multiple", "type": "integer", "defaultValue": 1 } }