Description
Either an individual value for use in fields, or a folder in a hierarchy of lists.
Diagram
Overview
 |
Item
Either an individual value for use in fields, or a folder in a hierarchy of lists.
 |
logicalName required xs:string
Unique identifier for an item in the project.
|
 |
value required xs:string
An individual value. If this item is a list folder, the name of the folder.
|
 |
Sequence
 |
Item 0..∞
Either an individual value for use in fields, or a folder in a hierarchy of lists.
|
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
logicalName | xs:string | required | | | Unique identifier for an item in the project. |
value | xs:string | required | | | An individual value. If this item is a list folder, the name of the folder. |
Source
<xs:element name="Item" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>
Either an individual value for use in fields, or a folder in a hierarchy of lists.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="Item" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="logicalName" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>
Unique identifier for an item in the project.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="value" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>
An individual value. If this item is a list folder, the name of the folder.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
|
See Also