Skip to main content
summaryrefslogtreecommitdiffstats
blob: e281a196efcc0e8ec075be61253f0956719972d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
	targetNamespace="http://test.org/"
	xmlns:tns="http://test.org/">
	
	<element name="MyElement" type="string"></element>

	<simpleType name="MyType">
		<restriction base="string"></restriction>
	</simpleType>

</schema>

Back to the top