blob: 0a11e14daa8a940846267ea302538a006db3f97b [file] [log] [blame]
Daniel Veillardbe9c6322003-11-22 20:37:51 +00001<?xml version="1.0"?>
2<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
3 <xs:simpleType name="string255">
4 <xs:restriction base="xs:token">
5 <xs:maxLength value="255"/>
6 </xs:restriction>
7 </xs:simpleType>
8 <xs:element name="title">
9 <xs:complexType>
10 <xs:simpleContent>
11 <xs:extension base="string255">
12 <xs:attribute name="lang" type="xs:language"/>
13 </xs:extension>
14 </xs:simpleContent>
15 </xs:complexType>
16 </xs:element>
17</xs:schema>