You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5013 8e941d3f-bd1b-0410-a28a-d453659cc2b4
23 lines
786 B
XML
23 lines
786 B
XML
<?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:group name="TContactGroupType">
|
|
<xsd:sequence>
|
|
<xsd:element name="firstName" type="xsd:string" />
|
|
<xsd:element name="lastName" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
|
|
<xsd:element name="Age" type="xsd:int" />
|
|
</xsd:sequence>
|
|
</xsd:group>
|
|
|
|
<xsd:complexType name="TClassSampleType">
|
|
<xsd:sequence>
|
|
<xsd:element name="intField" type="xsd:int" />
|
|
<xsd:group ref="n:TContactGroupType" minOccurs="0" maxOccurs="unbounded" />
|
|
</xsd:sequence>
|
|
<xsd:attribute name="strField" type="xsd:string"/>
|
|
</xsd:complexType>
|
|
|
|
</xsd:schema>
|