CmdbTypes Schema
DoubleCondition Complex Type
CmdbTypes Schema : DoubleCondition Complex Type

Glossary Item Box

Description

Condition of type Double
Namespace http://schemas.hp.com/ucmdb/1/types

Base Type

Diagram

doubleOperator Element value Element name Element Sequence condition Element Sequence DoubleCondition Complex Type

Overview

DoubleCondition Extension of Condition Complex Type
Condition of type Double
Sequence
Sequence
name xs:string
The property's name
value optional xs:double
The condition value to be compared to the CI or Relation's property value
doubleOperator Restriction of xs:string
Comparison, In, and IsNull operators

Used By

Source

<xs:complexType name="DoubleCondition" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Condition of type Double</xs:documentation>
  </xs:annotation>
  <xs:complexContent>
    <xs:extension base="types:Condition">
      <xs:sequence>
        <xs:element name="condition" type="types:DoubleProp" />
        <xs:element name="doubleOperator">
          <xs:annotation>
            <xs:documentation>
                                Comparison, In, and IsNull operators
                            </xs:documentation>
          </xs:annotation>
          <xs:simpleType>
            <xs:restriction base="xs:string">
              <xs:enumeration value="Equal" />
              <xs:enumeration value="NotEqual" />
              <xs:enumeration value="Greater" />
              <xs:enumeration value="GreaterEqual" />
              <xs:enumeration value="Less" />
              <xs:enumeration value="LessEqual" />
              <xs:enumeration value="In" />
              <xs:enumeration value="IsNull" />
            </xs:restriction>
          </xs:simpleType>
        </xs:element>
      </xs:sequence>
    </xs:extension>
  </xs:complexContent>
</xs:complexType>

See Also