OBJECT

Framework

Framework associated with service plan

link GraphQL Schema definition

1type Framework {
2
3# Framework ID.
4id: ID!
5
6# Framework format type (e.g., 'behavioral', null for other formats).
7format: String
8
9# Framework title.
10title: String!
11
12# The framework's public description.
13description: String!
14
15# Duration in milliseconds.
16duration: Float!
17
18# Skill sets measured in this framework.
19# Returns empty array if no skill sets are configured.
20skillSets: [FrameworkSkillSet!]!
21
22# The scoring model for this framework.
23scoringModel: ScoringModel
24
25}