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

Revision 16, 3.2 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="cs_channelDefinition.xsd"/>
17        <xsd:include schemaLocation="cs_interval.xsd"/>
18        <!--                                                         -->
19        <xsd:complexType name="cs_groupDefinition">
20                <xsd:annotation>
21                        <xsd:documentation>WITSML realtime group definition component object.</xsd:documentation>
22                </xsd:annotation>
23                <xsd:sequence>
24                        <xsd:element name="id" type="witsml:str32" minOccurs="1" maxOccurs="1">
25                                <xsd:annotation>
26                                        <xsd:documentation>The id of this group.
27                                        The value should match a commonly agreed value.</xsd:documentation>
28                                </xsd:annotation>
29                        </xsd:element>
30                        <xsd:element name="multiplexed" type="witsml:logicalBoolean" minOccurs="1" maxOccurs="1">
31                                <xsd:annotation>
32                                        <xsd:documentation>True (value of "1" or "true") indicates that this group
33                                        will be represented by multiplexed data records. False (value of "0" or "false")
34                                        indicates that this group will be represented by de-multiplexed data channels.</xsd:documentation>
35                                </xsd:annotation>
36                        </xsd:element>
37                        <xsd:element name="interval" type="witsml:cs_interval" minOccurs="0" maxOccurs="1">
38                                <xsd:annotation>
39                                        <xsd:documentation>The depth or time interval over which the group data are
40                                        requested to be derived.</xsd:documentation>
41                                </xsd:annotation>
42                        </xsd:element>
43                        <xsd:choice minOccurs="0" maxOccurs="1">
44                                <xsd:element name="persistedAsLog" type="witsml:refNameString" minOccurs="0" maxOccurs="1">
45                                        <xsd:annotation>
46                                                <xsd:documentation>A pointer to the log (within the context of the current wellbore)
47                                                that will be used to persist this data.</xsd:documentation>
48                                        </xsd:annotation>
49                                </xsd:element>
50                                <xsd:element name="persistedAsWellLog" type="witsml:refNameString" minOccurs="0" maxOccurs="1">
51                                        <xsd:annotation>
52                                                <xsd:documentation>A pointer to the wellLog (within the context of the current wellbore)
53                                                that will be used to persist this data.</xsd:documentation>
54                                        </xsd:annotation>
55                                </xsd:element>
56                        </xsd:choice>
57                        <xsd:element name="comment" type="witsml:commentString" minOccurs="0" maxOccurs="1">
58                                <xsd:annotation>
59                                        <xsd:documentation>A comment or remark about this group.</xsd:documentation>
60                                </xsd:annotation>
61                        </xsd:element>
62                        <xsd:element name="channelDefinition" type="witsml:cs_channelDefinition" minOccurs="1" maxOccurs="unbounded">
63                                <xsd:annotation>
64                                        <xsd:documentation>The definition of a channel.</xsd:documentation>
65                                </xsd:annotation>
66                        </xsd:element>
67                </xsd:sequence>
68        </xsd:complexType>
69</xsd:schema>
Note: See TracBrowser for help on using the browser.