lists Schema
Lists Element
lists Schema : Lists Element

Glossary Item Box

Description

A collection of lists of strings to be used as field values.
Namespace (none)

Diagram

List Element Sequence Lists Element

Overview

Lists
A collection of lists of strings to be used as field values.
Sequence
List 0..∞
A list of strings to be used as field values.
Sequence
Name xs:string
The name of the list.
Id xs:integer
The record ID of the list in the Lists table.
Items
A collection of values and folders.
Sequence
Item 0..∞
Either an individual value for use in fields, or a folder in a hierarchy of lists.

Source

<xs:element name="Lists" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>A collection of lists  of strings to be used as field values.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element name="List" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>
            A list of strings to be used as field values.
          </xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Name" type="xs:string">
              <xs:annotation>
                <xs:documentation>
                  The name of the list.
                </xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="Id" type="xs:integer">
              <xs:annotation>
                <xs:documentation>
                  The record ID of the list in the Lists table.
                </xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="Items">
              <xs:annotation>
                <xs:documentation>
                  A collection of values and folders.
                </xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="Item" minOccurs="0" maxOccurs="unbounded" />
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
</xs:element>

See Also