CmdbTypes Schema
IntCondition Complex Type
CmdbTypes Schema : IntCondition Complex Type

Glossary Item Box

Description

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

Base Type

Diagram

intOperator Element value Element name Element Sequence condition Element Sequence IntCondition Complex Type

Overview

IntCondition Extension of Condition Complex Type
Condition of type integer
Sequence
Sequence
name xs:string
The property's name
value optional xs:integer
The condition value to be compared to the CI or Relation's property value
intOperator Restriction of xs:string
Integer comparison operators

Used By

Source

<xs:complexType name="IntCondition" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Condition of type integer</xs:documentation>
  </xs:annotation>
  <xs:complexContent>
    <xs:extension base="types:Condition">
      <xs:sequence>
        <xs:element name="condition" type="types:IntProp" />
        <xs:element name="intOperator">
          <xs:annotation>
            <xs:documentation>
                                Integer comparison 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