summaryrefslogtreecommitdiff
path: root/src/main/resources/boot/OD/Agent.xsd
blob: 998992a3c47e250d5c696dcd8a52eb87f3a8ed4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
	elementFormDefault="qualified" attributeFormDefault="unqualified">
	<xs:element name="Agent">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="Role" type="xs:string" maxOccurs="unbounded" />
				<xs:element name="Property" type="property" minOccurs="0"
					maxOccurs="unbounded" />
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="required" />
			<xs:attribute name="password" type="xs:string" use="required" />
			<xs:attribute name="id" type="xs:string" use="optional" />
		</xs:complexType>
	</xs:element>
	<xs:complexType name="property">
		<xs:simpleContent>
			<xs:extension base="xs:string">
				<xs:attribute name="name" type="xs:string" />
			</xs:extension>
		</xs:simpleContent>
	</xs:complexType>
</xs:schema>