root / projects / DailyProductionReport_1.0 / XML / Version1.0 / WITSML131 / cs_wellLogData.xsd @ 16

Revision 16, 2.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_wellLogData">
19                <xsd:annotation>
20                        <xsd:documentation>WITSML Log - Curve Information.
21                        The order of the blocks in the container should match the order specified by
22                        direction.</xsd:documentation>
23                </xsd:annotation>
24                <xsd:sequence>
25                        <xsd:element name="data" type="witsml:data" minOccurs="0" maxOccurs="unbounded">
26                                <xsd:annotation>
27                                        <xsd:documentation>A comma delimited list of data values.
28                                        This essentially represents one row of
29                                        a table where the curve mnemonics represent the column headings.
30                                        The first value in the list represents columnIndex=1.</xsd:documentation>
31                                </xsd:annotation>
32                        </xsd:element>
33                </xsd:sequence>
34        </xsd:complexType>
35        <!--                                                         -->
36        <xsd:complexType name="data">
37                <xsd:annotation>
38                        <xsd:documentation>The actual data corresponding to the curves defined in
39                        the LOGCURVEINFO element. A comma delimited list of data values with one
40                        value for each curve on the log (e.g., "xxx,yyy, zzz"). For array curves,
41                        the value of the array curve will be a space delimited list of values that
42                        are contained within the commas that delimit the value for that curve
43                        (e.g., "xxx,aa bb cc,zzz").
44                        This essentially represents one row of a table where the curve
45                        mnemonics represent the column headings.
46                        The order of the nodes for each block should match the order implied
47                        by "direction".</xsd:documentation>
48                </xsd:annotation>
49                <xsd:simpleContent>
50                        <xsd:extension base="xsd:string">
51                                <xsd:attribute name="id" type="witsml:refString" use="optional">
52                                        <xsd:annotation>
53                                                <xsd:documentation>A pointer to the block descriptor's uid that this level represents.
54                                                If more than one block descriptor is specified then this attribute is required.</xsd:documentation>
55                                        </xsd:annotation>
56                                </xsd:attribute>
57                        </xsd:extension>
58                </xsd:simpleContent>
59        </xsd:complexType>
60</xsd:schema>
Note: See TracBrowser for help on using the browser.