Files
lazarus-ccr/wst/trunk/tests/test_suite/files/case_sensitive.xsd

32 lines
1.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:n="urn:wst-test"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="urn:wst-test">
<xsd:simpleType name="String">
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="Date">
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="Boolean">
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:complexType name="TClassSampleType">
<xsd:sequence>
<xsd:element name="dateField" type="xsd:date" />
<xsd:element name="localDateField" type="n:Date" minOccurs="1" maxOccurs="1" />
<xsd:element name="booleanField" type="xsd:boolean" />
<xsd:element name="localBooleanField" type="n:Boolean" minOccurs="1" maxOccurs="1" />
<xsd:element name="stringField" type="xsd:string" />
<xsd:element name="localStringField" type="n:String" />
</xsd:sequence>
<xsd:attribute name="dateAtt" type="xsd:date" />
<xsd:attribute name="localDateAtt" type="n:Date" />
</xsd:complexType>
</xsd:schema>