Overview
This structure contains the basic set of information about a skill. The information represented in this structure is not comprehensive and only includes certain key attributes of a skill.
Format
Panel | ||
---|---|---|
| ||
|
...
Element | Data Type | Required | Description | Sample Data | |
---|---|---|---|---|---|
SkillGroupIdentity | On Insert: Yes On Update: Either SkillGroupIdentity/SkillName or SkillUid is required | This is the skill group to which the skill belongs. This structure represents the unique key fields associated with identifying a resource skill group. | |||
SkillId | Int32 | On Insert: NoOn Update: No | The user Id is a unique identifier for a skill. For internal use only. | ||
SkillName | String | On Insert: Yes On Update: No Either SkillGroupIdentity/SkillName or SkillUid is required | The name of the skill. It is unique within a skill group. | Financial Services | |
SkillUid | Int64 | On Insert: No On Update: Either SkillGroupIdentity/SkillName or SkillUid is required | A unique and immutable identifier for a skill. This will be generated automatically upon creation of a new skill. Do not specify this if creating a new skill. | ||
InactiveFlag | Boolean | No | If set to "true", skill is inactive. If set to "false", skill is active. Leave null to leave inactive status of skill as is. | false |
Usage Example(s)
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<b:SkillSummary> <b:SkillGroupIdentity> <b:SkillGroupId i:nil="true"/> <b:SkillGroupName>Vertical Expertise</b:SkillGroupName> <b:SkillGroupUid>1152921504606850401</b:SkillGroupUid> </b:SkillGroupIdentity> <b:SkillId i:nil="true"/> <b:SkillName>Financial Services</b:SkillName> <b:SkillUid>1152921504606868637</b:SkillUid> <b:InactiveFlag>false</b:InactiveFlag> </b:SkillSummary> |
...