summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/tags/1.6-RC1/samples/helloworld-ws-sdo/src/main/resources/test.xsd
blob: 415e1648d4a0611978e48d58a745d25b5b1ce5be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://eclipse.org/SCAExample1/src/resources/clinicalLaboratory"
    xmlns:tns="http://eclipse.org/SCAExample1/src/resources/clinicalLaboratory"
    elementFormDefault="qualified">
    <complexType name="Practice">
        <sequence>
            <element name="name" type="string" />
        </sequence>
    </complexType>
    <complexType name="Laboratory">
        <sequence>
            <element name="name" type="string" />
            <element name="practices" type="tns:Practice" maxOccurs="unbounded" />
        </sequence>
    </complexType>
</schema>