Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

This structure is in the response for PwsGetSkill and PwsGetSkillList and it 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
titlePwsSkillSummary
  • PwsSkillSummary
    • SkillGroupIdentity: PwsSkillGroupRef
    • SkillId: Int32
    • SkillName: String
    • SkillUid: Int64
    • InactiveFlag: Boolean

Elements

Element

Data Type

Required
?
Default

Description

Description
Sample Data

SkillGroupIdentity

PwsSkillGroupRef

Yes



SkillId

Int32

On Insert: No

On Update: No

The user Id is a unique identifier for a skill. For internal use only.


SkillName

String

On Insert: Yes

On Update: No

The name of the skill.  It is unique within a skill group.  

Financial Services

SkillUid

Int64

Either SkillName or SkillUid is required

A unique and immutable identifier for a skill.


InactiveFlag

Boolean

No

If set to "true", skill is inactive. If set to "false", skill is active. 

false

Usage Example(s)


Code Block
languagexml
titleExample 01
collapsetrue
                  <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>           

...