CmdbTypes Schema
FloatCondition Complex Type
CmdbTypes Schema : FloatCondition Complex Type

Glossary Item Box

Description

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

Base Type

Diagram

floatOperator Element value Element name Element Sequence condition Element Sequence FloatCondition Complex Type

Overview

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

Used By

Source

<xs:complexType name="FloatCondition" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Condition of type Float</xs:documentation>
  </xs:annotation>
  <xs:complexContent>
    <xs:extension base="types:Condition">
      <xs:sequence>
        <xs:element name="condition" type="types:FloatProp" />
        <xs:element name="floatOperator">
          <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