OBJECT

BehavioralDimension

link GraphQL Schema definition

1type BehavioralDimension {
2
3# The behavioral domain being measured.
4domain: BehavioralDomainKey!
5
6# Percentile score from 0-100.
7percentile: Int!
8
9# Raw score before percentile mapping.
10rawScore: Int!
11
12# Whether this dimension meets the job profile requirements.
13# Null if no behavioral profile is configured for the test.
14fit: BehavioralFit
15
16}