1<?xml version="1.0"?>
2<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
3        <xsd:element name="root">
4                <xsd:complexType>
5                        <xsd:sequence>
6                                <xsd:element ref="tid" maxOccurs="unbounded"/>
7                        </xsd:sequence>
8                </xsd:complexType>
9                <xsd:unique name="uid">
10                        <xsd:selector xpath=".//tid"/>
11                        <xsd:field xpath="./ /."/>
12                </xsd:unique>
13        </xsd:element>
14        <xsd:element name="tid" type="xsd:string"/>
15</xsd:schema>
16