Blame view

config/xsd/parameter/getlocalfile.xsd 1.46 KB
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
<?xml version="1.0" encoding="UTF-8"?>

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
	<xs:include schemaLocation="parameter.xsd" />

e8fa18b6   Benjamin Renard   Add the possibili...
6
	<xs:complexType name="clb-local-type">
f5c53312   Benjamin Renard   Get calib info in...
7
8
9
		<xs:attribute name="name" type="xs:string" />
	</xs:complexType>

fbe3c2bb   Benjamin Renard   First commit
10
	<xs:complexType name="localFileParamType">
f5c53312   Benjamin Renard   Get calib info in...
11
		<xs:sequence>
e8fa18b6   Benjamin Renard   Add the possibili...
12
			<xs:element name="clb" type="clb-local-type" minOccurs="0"
f5c53312   Benjamin Renard   Get calib info in...
13
14
				maxOccurs="unbounded" />
		</xs:sequence>
fbe3c2bb   Benjamin Renard   First commit
15
16
17
18
19
20
		<xs:attribute name="id" type="xs:string" use="required" />
		<xs:attribute name="type" type="xs:string" />
		<xs:attribute name="size" type="xs:string" />
		<xs:attribute name="minSampling" type="xs:string" use="required" />
		<xs:attribute name="maxSampling" type="xs:string" use="required" />
		<xs:attribute name="useNearestValue" type="xs:boolean" />
f5c53312   Benjamin Renard   Get calib info in...
21
22
23
24
25
26
27
28
		<xs:attribute name="timeFormat">
    		<xs:simpleType>
    			<xs:restriction base="xs:string">
    				<xs:enumeration value="ISO" />
    				<xs:enumeration value="DOUBLE" />
    			</xs:restriction>
    		</xs:simpleType>
    	</xs:attribute>
fbe3c2bb   Benjamin Renard   First commit
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
	</xs:complexType>

	<xs:complexType name="local-vi-type">
		<xs:complexContent>
			<xs:extension base="GetterType">
				<xs:sequence>
					<xs:element name="param" type="localFileParamType"
						minOccurs="1" maxOccurs="unbounded" />
				</xs:sequence>
				<xs:attribute name="id" type="xs:string" use="required" />
			</xs:extension>
		</xs:complexContent>
	</xs:complexType>

	<xs:element name="localvi" substitutionGroup="Getter" type="local-vi-type" />
</xs:schema>