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# Duration in milliseconds.
13duration: Float!
14
15# Skill sets measured in this framework.
16# Returns empty array if no skill sets are configured.
17skillSets: [FrameworkSkillSet!]!
18
19}