LOV List XML Structure
Describes the XML structure containing the metadata of multiple List Of Values Objects.
XML structure
<xs:schema id="ISHLovs" 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: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:choice>
<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:schema>
Example
<?xml version="1.0" encoding="utf-16"?>
<ishlovs>
<ishlov ishlovref="43" ishref="DDOCTYPE">
<label xml:space="preserve">Folder Content Type</label>
<description xml:space="preserve">The list of values holding the possible folder content types (also known as Document Type).</description>
</ishlov>
<ishlov ishlovref="290" ishref="DILLUSTRATIONTYPE">
<label xml:space="preserve">Illustration type</label>
<description xml:space="preserve"></description>
</ishlov>
<ishlov ishlovref="341" ishref="DINDEXCLASSIFICATION">
<label xml:space="preserve">Index Term Classification</label>
<description xml:space="preserve">Classification for index terms</description>
</ishlov>
<ishlov ishlovref="39" ishref="DLANGUAGE">
<label xml:space="preserve">Language</label>
<description xml:space="preserve">The list of values with all possible languages.</description>
</ishlov>
<ishlov ishlovref="267" ishref="DLIBRARYTYPE">
<label xml:space="preserve">Library type</label>
<description xml:space="preserve"></description>
</ishlov>
<ishlov ishlovref="289" ishref="DMASTERTYPE">
<label xml:space="preserve">Master type</label>
<description xml:space="preserve"></description>
</ishlov>
<ishlov ishlovref="256" ishref="DMODULETYPE">
<label xml:space="preserve">Module type</label>
<description xml:space="preserve"></description>
</ishlov>
<ishlov ishlovref="343" ishref="DPUBLICATIONTYPE">
<label xml:space="preserve">Publication type</label>
<description xml:space="preserve">type of publication.</description>
</ishlov>
<ishlov ishlovref="40" ishref="DRESOLUTION">
<label xml:space="preserve">Resolution</label>
<description xml:space="preserve">This list of values contains all possible resolutions of an illustration.</description>
</ishlov>
<ishlov ishlovref="350" ishref="DUSERTYPE">
<label xml:space="preserve">User types</label>
<description xml:space="preserve">This list of values contains all possible user types (e.g. Internal, External).</description>
</ishlov>
</ishlovs>