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