Attribute Element
| Attribute | Use | Description | Valid Values |
|---|---|---|---|
| defaultValue | optional |
|
|
| description | optional |
string |
|
| descriptionKey | optional |
string |
|
| isList | optional |
boolean |
|
| label | required |
string |
|
| labelKey | optional |
string |
|
| name | required |
string |
|
| resourceKey | optional |
string |
|
| type | optional |
string |
|
| valueType | optional |
string encryptedString integer double boolean date enum structure |
XML Representation
<xs:element name="Attribute">
<xs:attribute name="name" type="xs:string" use="required"/>
<xs:attribute name="label" type="xs:string" use="required"/>
<xs:attribute name="labelKey" type="xs:string" use="optional"/>
<xs:attribute name="description" type="xs:string" use="optional"/>
<xs:attribute name="descriptionKey" type="xs:string" use="optional"/>
<xs:attribute name="resourceKey" type="xs:string" use="optional"/>
<xs:attribute name="type" type="xs:string" use="optional"/>
<xs:attribute name="valueType" type="ATTRIBUTE-VALUE-TYPE">
<xs:enumeration value="string"/>
<xs:enumeration value="encryptedString"/>
<xs:enumeration value="integer"/>
<xs:enumeration value="double"/>
<xs:enumeration value="boolean"/>
<xs:enumeration value="date"/>
<xs:enumeration value="enum"/>
<xs:enumeration value="structure"/>
</xs:attribute>
<xs:attribute name="defaultValue" type="EVALUATED-STRING" use="optional"/>
<xs:attribute name="isList" type="xs:boolean" use="optional" default="false"/>
</xs:element>