CustomAttributes data structure

Element

Description

Type

Occurrences

customAttributes

List of category name and value pairs to associate with the new custom attribute.

SoapCustomAttribute

0 - unlimited

Specification

<xs:complexType name="CustomAttributes">

  <xs:sequence>

    <xs:element minOccurs="0" maxOccurs="unbounded" name="customAttribute" nillable="true" type="ns:SoapCustomAttribute"/>

  </xs:sequence>

</xs:complexType>

 

Example

<ns:customAttributes>

  <ns:customAttribute>

    <ns:name>IT Skill</ns:name>

    <ns:value>Oracle DBA</ns:value>

  </ns:customAttribute>

  <ns:customAttribute>

    <ns:name>Medical Training</ns:name>

    <ns:value>First Aid</ns:value>

  </ns:customAttribute>

</ns:customAttributes>