Versions Compared

Key

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

Overview

This structure contains the complete set of information about a skill group. The structure is used to retrieve detailed skill group information from the server and it is included in the response for from PwsGetSkillGroup and PwsSaveSkillGroup.

...

Element

Data Type

Description

InactiveFlag

Boolean?????

This flag indicates whether the skill group is effectively inactive. If all skills in a skill group are inactive, then the skill group is considered inactive.

SkillGroupDetail

PwsSkillGroupDetail

This structure contains the complete set of information about a skill group. 

SkillSummaries

PwsSkillSummaryElement[]

This structure includes basic information about a skillThe list of skills that are part of the skill group.


Usage Example(s)


Code Block
languagexml
titleExample 01
collapsetrue
            <a:SkillGroup xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/">
               <b:InactiveFlag>false</b:InactiveFlag>
               <b:SkillGroupDetail>
                  <b:SkillGroupId i:nil="true"/>
                  <b:SkillGroupName>Certification</b:SkillGroupName>
                  <b:SkillGroupUid>1152921504606850615</b:SkillGroupUid>
                  <b:NewSkillGroupName i:nil="true"/>
                  <b:SortOrder>0</b:SortOrder>
               </b:SkillGroupDetail>
               <b:SkillSummaries>
                  <b:PwsSkillSummaryElement>
                     <b:SkillSummary>
                        <b:SkillGroupIdentity>
                           <b:SkillGroupId i:nil="true"/>
                           <b:SkillGroupName>Certification</b:SkillGroupName>
                           <b:SkillGroupUid>1152921504606850615</b:SkillGroupUid>
                        </b:SkillGroupIdentity>
                        <b:SkillId i:nil="true"/>
                        <b:SkillName>MS Network Engineer Certification</b:SkillName>
                        <b:SkillUid>1152921504606870446</b:SkillUid>
                        <b:InactiveFlag>false</b:InactiveFlag>
                     </b:SkillSummary>
                  </b:PwsSkillSummaryElement>
                  <b:PwsSkillSummaryElement>
                     <b:SkillSummary>
                        <b:SkillGroupIdentity>
                           <b:SkillGroupId i:nil="true"/>
                           <b:SkillGroupName>Certification</b:SkillGroupName>
                           <b:SkillGroupUid>1152921504606850615</b:SkillGroupUid>
                        </b:SkillGroupIdentity>
                        <b:SkillId i:nil="true"/>
                        <b:SkillName>MS .NET Developer Certification</b:SkillName>
                        <b:SkillUid>1152921504606870447</b:SkillUid>
                        <b:InactiveFlag>false</b:InactiveFlag>
                     </b:SkillSummary>
                  </b:PwsSkillSummaryElement>
               </b:SkillSummaries>
            </a:SkillGroup>

...