Zatomic API

The Scoring Criteria Results object

NOTE: While similar and sharing the same criteria_id, the scoring criteria results object is different from the scoring criteria object.

Properties
criteria_id
string
Unique ID of the scoring criteria.
name
string
The criteria name.
criterion_results
list of criterion objects

Properties for the criterion object:

slug
string
The slug for the criterion. Will be unique within the criterion set.
score
integer
The score given to the criterion.
weight
integer
The weight assigned to the criterion.
weighted_score
integer
The weighted score given to the criterion.
feedback
string
Feedback for the criterion based on its score.
The Scoring Criteria Results Object
{
   "criteria_id": "sca_2rjp9HFpIsiYQrAiSbZlz85r3GC",
   "name": "Default",
   "criterion_results": [
      {
         "slug": "criterion_slug",
         "score": 0,
         "weight": 0,
         "weighted_score": 0,
         "feedback": "Specific feedback for the criterion."
      }
   ]
}