OBJECT
Framework
Framework associated with service plan
link GraphQL Schema definition
1 type Framework { 2 3 # Framework ID. 4 : ID! 5 6 # Framework format type (e.g., 'behavioral', null for other formats). 7 : String 8 9 # Framework title. 10 : String! 11 12 # Duration in milliseconds. 13 : Float! 14 15 # Skill sets measured in this framework. 16 # Returns empty array if no skill sets are configured. 17 : [FrameworkSkillSet!]! 18 19 }