Revision 16, 1.7 kB
(checked in by ryland, 15 years ago)
|
|
Line | |
---|
1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <xsd:schema |
---|
3 | elementFormDefault="qualified" |
---|
4 | attributeFormDefault="unqualified" |
---|
5 | targetNamespace="http://www.witsml.org/schemas/131" |
---|
6 | xmlns:witsml="http://www.witsml.org/schemas/131" |
---|
7 | xmlns:xsd="http://www.w3.org/2001/XMLSchema" |
---|
8 | version="1.3.1"> |
---|
9 | <!-- --> |
---|
10 | <!-- POSC License Agreement |
---|
11 | This file is distributed under the POSC License Agreement at |
---|
12 | http://www.posc.org/about/license.shtml. |
---|
13 | Use of this file constitutes agreement with the POSC License Agreement. |
---|
14 | --> |
---|
15 | <!-- --> |
---|
16 | <xsd:include schemaLocation="typ_dataTypes.xsd"/> |
---|
17 | <!-- --> |
---|
18 | <xsd:complexType name="cs_calibrationParameter"> |
---|
19 | <xsd:annotation> |
---|
20 | <xsd:documentation>Parameters are given by name/ value pairs, with optional uom. |
---|
21 | The parameter name and uom are attributes, and the value is the value of the element.</xsd:documentation> |
---|
22 | </xsd:annotation> |
---|
23 | <xsd:simpleContent> |
---|
24 | <xsd:extension base="witsml:abstractNameString"> |
---|
25 | <xsd:attribute name="uom" type="witsml:uomString" use="optional"> |
---|
26 | <xsd:annotation> |
---|
27 | <xsd:documentation>The unit of measure of the parameter value.</xsd:documentation> |
---|
28 | </xsd:annotation> |
---|
29 | </xsd:attribute> |
---|
30 | <xsd:attribute name="name" type="witsml:nameString" use="required"> |
---|
31 | <xsd:annotation> |
---|
32 | <xsd:documentation>The name of the parameter.</xsd:documentation> |
---|
33 | </xsd:annotation> |
---|
34 | </xsd:attribute> |
---|
35 | </xsd:extension> |
---|
36 | </xsd:simpleContent> |
---|
37 | </xsd:complexType> |
---|
38 | <!-- --> |
---|
39 | </xsd:schema> |
---|