Blame view

config/xsd/info/instrumentInfo.xsd 993 Bytes
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:element name="instrument" type="InstrumentType"></xs:element>
    
    <xs:complexType name="InstrumentType">
d17bbdea   Benjamin Renard   Update XSD files ...
6
7
8
9
10
11
12
13
14
    	<xs:all>
    		<xs:element name="name" type="xs:string" minOccurs="0" maxOccurs="1"></xs:element>
    		<xs:element name="description" type="xs:string" minOccurs="0" maxOccurs="1"></xs:element>
    		<xs:element name="url" type="xs:string" minOccurs="0" maxOccurs="1"></xs:element>
    		<xs:element name="measurement_type" type="xs:string" minOccurs="0" maxOccurs="1"></xs:element>
    		<xs:element name="pi" type="xs:string" minOccurs="0" maxOccurs="1"></xs:element>
    		<xs:element name="instrument_type" type="xs:string" minOccurs="0" maxOccurs="1"></xs:element>
    		<xs:element name="mission_id" type="xs:string" minOccurs="0" maxOccurs="1"></xs:element>
    	</xs:all>
fbe3c2bb   Benjamin Renard   First commit
15
16
    	<xs:attribute name="id" type="xs:ID" use="required" />
    </xs:complexType>
d17bbdea   Benjamin Renard   Update XSD files ...
17
</xs:schema>