Overview
This structure contains the complete set of information about a skill group. The structure is used both to retrieve detailed detailed skill group information and to pass information about a a skill group back to the server to get updated.
Format
Panel | ||
---|---|---|
| ||
|
Elements
SkillId
Element | Data Type | Required? | Description |
---|
SkillGroupIdentity
Either SkillGroupIdentity and Skill name combination or SkillUid is required.
This structure represents the unique key fields associated with identifying a resource skill group.
SkillGroupId | Int32 | No | The skill group Id is a unique identifier for a skill. For internal use only. |
SkillGroupName | String | Either |
SkillGroupName or SkillGroupUid is required. |
A unique identifier for a skill group. |
SkillGroupUid |
SkillUid
Int64 | Either |
SkillGroupName or SkillGroupUid is required. | A unique and immutable identifier for a skill |
InactiveFlag
Boolean
No
If set to "true", the skill is inactive. If set to "false", the skill is active.
NewSkillName
group. | |||
NewSkillGroupName | String | No | In order to update the name of an existing skill group, specify the new skill group name here. |
SortOrder | Int16 | No | The sort order of the |
skill group on the list. |
Usage Example(s)
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<req:Skill> <!--Optional:--> <com:SkillGroupIdentity> <com:SkillGroupName>Technology</com:SkillGroupName> </com:SkillGroupIdentity> <com:SkillName>HTML</com:SkillName> <com:InactiveFlag>0</com:InactiveFlag> <!--Optional:--> <com:NewSkillName>HTML2</com:NewSkillName> <!--Optional:--> <com:SortOrder>3</com:SortOrder> </req:Skill> |
...