Skip to main content
summaryrefslogtreecommitdiffstats
blob: 254b97c97e239713ebf98fd43697257d0aca5cbf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.eclipse.org/webtools/news" xmlns:tns="http://www.eclipse.org/webtools/news">
	<element name="news">
		<complexType>
			<sequence>
				<element ref="tns:item" minOccurs="0" maxOccurs="unbounded"></element>
			</sequence>
		</complexType>
	</element>

	<element name="item">
		<complexType>
			<all>
				</all>
			<attribute name="title" type="string" use="required"></attribute>
			<attribute name="date" type="date" use="required"></attribute>
		</complexType>
	</element>

</schema>

Back to the top