OBJECT

AiDimensionScore

An AI grade for one rubric dimension. The score is normalized to a 0–1 scale (there is no separate maximum; the question's overall maximum is on CommonTask.maxScore).

link GraphQL Schema definition

1type AiDimensionScore {
2
3# The rubric dimension this score applies to, e.g. "Email Formatting".
4dimension: String!
5
6# Score for this dimension, normalized to a 0–1 scale.
7score: Float!
8
9}