<xs:complexType name="IndexRangeContext">
<xs:annotation>
<xs:documentation>Describes the data context for a log in terms of a starting and ending index. When this context is used, each realization of the log includes all data points from the log's channel set that follow between the specified start and end index.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="witsml:AbstractLogDataContext">
<xs:sequence>
<xs:element name="StartIndex" type="witsml:AbstractIndexValue" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>When the log header defines the direction as: - "Increasing", the endIndex is the ending (maximum) index value at which the last non-null data point is located. - “Decreasing”, the endIndex is the ending (minimum) index value at which the last non-null data point is located.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EndIndex" type="witsml:AbstractIndexValue" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>When the log header defines the direction as: - "Increasing", the startIndex is the starting (minimum) index value at which the first non-null data point is located. - "Decreasing", the startIndex is the starting (maximum) index value at which the first non-null data point is located.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
|