PUSH Score object

Represents a test score, including possible score transformations.

Fields

Field Type Description
percentage
required
Integer The raw score expressed as a percentage, with a range of [0, 100].
transformations
optional
List of PUSH Transformation objects An optional list of score transformations.

Example

{
  "percentage": 100,
  "transformations": [
    {
      "id": "pass-at-seventy-percent",
      "passed": true,
      "result": "you passed"
    }
  ]
}

 

Last updated on