Documentation Center

LOV ValueList XML Structure

Describes the XML structure containing the metadata of the values of multiple List Of Values Objects.

XML structure

<xs:schema id="ISHLovValues" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="ishlovs">
    <xs:complexType>
      <xs:sequence minOccurs="0" maxOccurs="unbounded">
        <xs:element ref="ishlov"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="ishlov">
    <xs:complexType>
      <xs:sequence minOccurs="1" maxOccurs="1">
        <xs:element ref="ishlovvalues"/>
      </xs:sequence>
      <xs:attribute name="ishlovref" use="required">
        <xs:simpleType>
          <xs:restriction base="xs:long">
            <xs:minInclusive value="0"/>
            <xs:maxInclusive value="9999999999"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
      <xs:attribute name="ishref" use="required">
        <xs:simpleType>
          <xs:restriction base="xs:string">
            <xs:maxLength value="255"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
    </xs:complexType>
  </xs:element>
  <xs:element name="ishlovvalues">
    <xs:complexType>
      <xs:sequence minOccurs="0" maxOccurs="unbounded">
        <xs:element ref="ishlovvalue"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="ishlovvalue">
    <xs:complexType>
      <xs:choice maxOccurs="unbounded">
        <xs:element name="label" minOccurs="1" maxOccurs="1" type="xs:string"/>
        <xs:element name="description" minOccurs="1" maxOccurs="1" type="xs:string"/>
        <xs:element name="active" minOccurs="1" maxOccurs="1">
          <xs:simpleType>
            <xs:restriction base="xs:string">
              <xs:enumeration value="true"/>
              <xs:enumeration value="false"/>
            </xs:restriction>
          </xs:simpleType>
        </xs:element>
      </xs:choice>
      <xs:attribute name="ishlovvalueref" use="required">
        <xs:simpleType>
          <xs:restriction base="xs:long">
            <xs:minInclusive value="0"/>
            <xs:maxInclusive value="9999999999"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
      <xs:attribute name="ishref" use="required">
        <xs:simpleType>
          <xs:restriction base="xs:string">
            <xs:maxLength value="255"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
    </xs:complexType>
  </xs:element>
</xs:schema>

Example

<ishlovs>
    <ishlov ishlovref="38" ishref="DSTATUS">
        <ishlovvalues>
            <ishlovvalue ishlovvalueref="315" ishref="VSTATUSDRAFT">
                <label xml:space="preserve">Draft</label>
                <description xml:space="preserve"></description>
                <active>true</active>
            </ishlovvalue>
            <ishlovvalue ishlovvalueref="5202" ishref="VSTATUSEXPIRED">
                <label xml:space="preserve">Expired</label>
                <description xml:space="preserve"></description>
                <active>true</active>
            </ishlovvalue>
            <ishlovvalue ishlovvalueref="5201" ishref="VSTATUSINTRANSLATION">
                <label xml:space="preserve">In translation</label>
                <description xml:space="preserve"></description>
                <active>true</active>
            </ishlovvalue>
            <ishlovvalue ishlovvalueref="574" ishref="VSTATUSOUTOFDATE">
                <label xml:space="preserve">Out of date</label>
                <description xml:space="preserve">A newer version exists and is approved</description>
                <active>true</active>
            </ishlovvalue>
            <ishlovvalue ishlovvalueref="5142" ishref="VSTATUSOUTOFDATEDRAFT">
                <label xml:space="preserve">Out of date draft</label>
                <description xml:space="preserve"></description>
                <active>true</active>
            </ishlovvalue>
            <ishlovvalue ishlovvalueref="319" ishref="VSTATUSRELEASED">
                <label xml:space="preserve">Released</label>
                <description xml:space="preserve"></description>
                <active>true</active>
            </ishlovvalue>
            <ishlovvalue ishlovvalueref="5150" ishref="VSTATUSSYSTEM">
                <label xml:space="preserve">System</label>
                <description xml:space="preserve">Status system</description>
                <active>true</active>
            </ishlovvalue>
            <ishlovvalue ishlovvalueref="5198" ishref="VSTATUSSYSTEMREADONLY">
                <label xml:space="preserve">System Read Only</label>
                <description xml:space="preserve">System Read Only</description>
                <active>true</active>
            </ishlovvalue>
            <ishlovvalue ishlovvalueref="4728" ishref="VSTATUSTOBEREVIEWED">
                <label xml:space="preserve">To be reviewed</label>
                <description xml:space="preserve"></description>
                <active>true</active>
            </ishlovvalue>
            <ishlovvalue ishlovvalueref="318" ishref="VSTATUSTOBETRANSLATED">
                <label xml:space="preserve">To be translated</label>
                <description xml:space="preserve"></description>
                <active>true</active>
            </ishlovvalue>
            <ishlovvalue ishlovvalueref="3997" ishref="VSTATUSTRANSLATED">
                <label xml:space="preserve">Translated</label>
                <description xml:space="preserve"></description>
                <active>true</active>
            </ishlovvalue>
        </ishlovvalues>
    </ishlov>
    <ishlov ishlovref="290" ishref="DILLUSTRATIONTYPE">
        <ishlovvalues>
            <ishlovvalue ishlovvalueref="5240" ishref="VILLUSTRATIONTYPEDIAGRAM">
                <label xml:space="preserve">Diagram</label>
                <description xml:space="preserve">Diagram</description>
                <active>true</active>
            </ishlovvalue>
            <ishlovvalue ishlovvalueref="5193" ishref="VILLUSTRATIONTYPEICON">
                <label xml:space="preserve">Icon</label>
                <description xml:space="preserve">Icon</description>
                <active>true</active>
            </ishlovvalue>
            <ishlovvalue ishlovvalueref="5192" ishref="VILLUSTRATIONTYPESCREENSHOT">
                <label xml:space="preserve">Screenshot</label>
                <description xml:space="preserve">Screenshot</description>
                <active>true</active>
            </ishlovvalue>
        </ishlovvalues>
    </ishlov>
</ishlovs>