Versions Compared

Key

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

...

Open Item: should Observations with rubric be a new primary category or a new object type? It depends on the PRD:

- if the editor workflow is generalised enough to embed in the question set editor or not

- if the behaviours like rendering_sequence and rubrics are applicable for any question set or not

Questions:

Code Block
Question Category definition 
hierarchyCategories: [ domain, criteria ]

Framework1
{
  domain
  criteria
}

Framework2
{
  topic
  learningOutcome
}
Code Block
Observation Type - 'External'
{
  "name": "ecm",
  "sequence": [
    { 
      "value": "ECM1",
      "name": "<Name_Of_The_ECM_1>",
      "pages": [["do_Question_1", "do_Question_3"], ["do_Question_2"]],
      "index": 0
    },
    { 
      "value": "ECM2",
      "name": "<Name_Of_The_ECM_2>",
      "pages": [["do_Question_4", "do_Question_5"], ["do_Question_6"]],
      "index": 1
    }
  ]
}

Observation Type - 'Self'
{
  "name": "criteria",
  "sequence": [
    { 
      "value": "CRITERIA1",
      "name": "<Name_Of_The_CRITERIA_1>",
      "pages": [["do_Question_1", "do_Question_3"], ["do_Question_2"]],
      "index": 0
    },
    { 
      "value": "CRITERIA2",
      "name": "<Name_Of_The_CRITERIA_2>",
      "pages": [["do_Question_4", "do_Question_5"], ["do_Question_6"]],
      "index": 1
    }
  ]
}