Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 9ae196867e3a58f8f9f81771d7f6826e608eccb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:reg="http://eclipse.org/wst/ws/internal/model/v10/registry"
targetNamespace="http://eclipse.org/wst/ws/internal/model/v10/registry">

	<xsd:import
	namespace="http://www.w3.org/XML/1998/namespace"
	schemaLocation="http://www.w3.org/2001/xml.xsd"/>

	<xsd:element name="registry" type="reg:Registry"/>
	
	<xsd:complexType name="Registry">
		<xsd:sequence>
			<xsd:element name="name" type="reg:Name" minOccurs="1" maxOccurs="unbounded"/>
			<xsd:element name="description" type="reg:Description" minOccurs="1" maxOccurs="unbounded"/>
		</xsd:sequence>
		<xsd:attribute name="id" type="xsd:anyURI" use="optional"/>
		<xsd:attribute name="ref" type="xsd:anyURI" use="optional"/>
		<xsd:attribute name="location" type="xsd:anyURI" use="optional"/>
	</xsd:complexType>

	<xsd:element name="name" type="reg:Name"/>

	<xsd:complexType name="Name">
		<xsd:simpleContent>
			<xsd:extension base="xsd:string">
				<xsd:attribute ref="xml:lang" use="optional"/>
			</xsd:extension>
		</xsd:simpleContent>
	</xsd:complexType>

	<xsd:element name="description" type="reg:Description"/>

	<xsd:complexType name="Description">
		<xsd:simpleContent>
			<xsd:extension base="xsd:string">
				<xsd:attribute ref="xml:lang" use="optional"/>
			</xsd:extension>
		</xsd:simpleContent>
	</xsd:complexType>

</xsd:schema>

Back to the top