CmdbTypes Schema
BooleanCondition Complex Type
CmdbTypes Schema : BooleanCondition Complex Type

Glossary Item Box

Description

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

Base Type

Diagram

booleanOperator Element value Element name Element Sequence condition Element Sequence BooleanCondition Complex Type

Overview

BooleanCondition Extension of Condition Complex Type
Condition of type Boolean
Sequence
Sequence
name xs:string
The property's name
value optional xs:boolean
The condition value to be compared to the CI or Relation's property value
booleanOperator Restriction of xs:string
Equal or not equal

Used By

Source

<xs:complexType name="BooleanCondition" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Condition of type Boolean</xs:documentation>
  </xs:annotation>
  <xs:complexContent>
    <xs:extension base="types:Condition">
      <xs:sequence>
        <xs:element name="condition" type="types:BooleanProp" />
        <xs:element name="booleanOperator">
          <xs:annotation>
            <xs:documentation>
                                Equal or not equal
                            </xs:documentation>
          </xs:annotation>
          <xs:simpleType>
            <xs:restriction base="xs:string">
              <xs:enumeration value="Equal" />
              <xs:enumeration value="NotEqual" />
            </xs:restriction>
          </xs:simpleType>
        </xs:element>
      </xs:sequence>
    </xs:extension>
  </xs:complexContent>
</xs:complexType>

See Also