Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

4. Sequence Question Type

To Be Updated(TBU)The question of type Sequence, will have a list of options. User/Student has to arrange(by drag & drop) the options in the proper/right order. For every drag & drop of the option, the RESPONSE event will trigger.

Code Block
languagejs
titleTelemetry Assess Event
linenumberstrue
collapsetrue
{
  "eid": "ASSESS",
  "ets": 1549362785346,
  "ver": "3.0",
  "mid": "ASSESS:34b9203a6cc4378fc4e6cb6bb70fa2ea",
  "actor": {
    "id": "95e4942d-cbe8-477d-aebd-ad8e6de4bfc8",
    "type": "User"
  },
  "context": {
    "channel": "b00bc992ef25f1a9a8d63291e20efc8d",
    "pdata": {
      "id": "dev.sunbird.portal",
      "ver": "1.14.0",
      "pid": "sunbird-portal.contenteditor.contentplayer"
    },
    "env": "contentplayer",
    "sid": "yD79BBAExQCP3nZmR2Q9rO1jl8hDho0X",
    "did": "51a59362a5d4be51d9f83552f0b8c3e0",
    "cdata": [
      {
        "id": "8c12bdb10e98842175a3638660814c10",
        "type": "ContentSession"
      }
    ],
    "rollup": {}
  },
  "object": {
    "id": "do_112692350547279872110",
    "type": "Content",
    "ver": "1.0"
  },
  "tags": [],
  "edata": {
    "item": {
      "id": "7272c492-4d67-4ad4-837c-b2d9a6345335",
      "maxscore": 1,
      "exlength": 0,
      "params": [],
      "uri": "",
      "title": "Order of the planets in the solar system(Order starts from closest to sun)",
      "mmc": [],
      "mc": [],
      "desc": ""
    },
    "index": 2,
    "pass": "Yes",
    "score": 1,
    "resvalues": [
      {
        "SEQ": [
          {
            "text": "Venus",
            "image": "",
            "audio": "",
            "audioName": "",
            "hint": "",
            "sequenceOrder": 2
          }
        ]
      },
      {
        "SEQ": [
          {
            "text": "Mars",
            "image": "",
            "audio": "",
            "audioName": "",
            "hint": "",
            "sequenceOrder": 4
          }
        ]
      },
      {
        "SEQ": [
          {
            "text": "Earth",
            "image": "",
            "audio": "",
            "audioName": "",
            "hint": "",
            "sequenceOrder": 3
          }
        ]
      },
      {
        "SEQ": [
          {
            "text": "Mercury",
            "image": "",
            "audio": "",
            "audioName": "",
            "hint": "",
            "sequenceOrder": 1
          }
        ]
      }
    ],
    "duration": 262
  }
}


Interpretation of Data :

To Be Updated(TBU)

5. ReOrder Question Type

...

  • edata.pass => User/Student is result after attempting the question (Yes/No)
  • edata.index => Position/Order of the question in the question-set
  • edata.score => User/Student score after attempting the question(For the questions which has partial answer enabled, edata.score will be < edata.item.maxscore if user/student answered partially).
  • edata.resvalues => Order of the options while evaluation

edata.resvalues is an array of objects[ {}, {}, ..]. 


5. ReOrder Question Type

The question of type reorder 

Code Block
languagejs
titleTelemetry Assess Event
{
  "eid": "ASSESS",
  "ets": 1549362273576,
  "ver": "3.0",
  "mid": "ASSESS:ef81a0500263337ef870790714b84097",
  "actor": {
    "id": "95e4942d-cbe8-477d-aebd-ad8e6de4bfc8",
    "type": "User"
  },
  "context": {
    "channel": "b00bc992ef25f1a9a8d63291e20efc8d",
    "pdata": {
      "id": "dev.sunbird.portal",
      "ver": "1.14.0",
      "pid": "sunbird-portal.contenteditor.contentplayer"
    },
    "env": "contentplayer",
    "sid": "yD79BBAExQCP3nZmR2Q9rO1jl8hDho0X",
    "did": "51a59362a5d4be51d9f83552f0b8c3e0",
    "cdata": [
      {
        "id": "8c12bdb10e98842175a3638660814c10",
        "type": "ContentSession"
      }
    ],
    "rollup": {}
  },
  "object": {
    "id": "do_112692350547279872110",
    "type": "Content",
    "ver": "1.0"
  },
  "tags": [],
  "edata": {
    "item": {
      "id": "c4be86dd-181d-49ee-9577-924ab6b4ab49",
      "maxscore": 1,
      "exlength": 0,
      "params": [],
      "uri": "",
      "title": "VSV Reorder Form the sentance using below words",
      "mmc": [],
      "mc": [],
      "desc": ""
    },
    "index": 1,
    "pass": "Yes",
    "score": 1,
    "resvalues": ["what", "are", "you", "looking", "for", "?"],
    "duration": 14
  }
}

...