CmdbTypes Schema
IntListCondition Complex Type
CmdbTypes Schema : IntListCondition Complex Type

Glossary Item Box

Description

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

Base Type

Diagram

intListOperator Element intValue Element Sequence intValues Element name Element Sequence condition Element Sequence IntListCondition Complex Type

Overview

IntListCondition Extension of Condition Complex Type
Condition of type integers list
Sequence
Sequence
name xs:string
The property's name
intValues optional intList Complex Type
The condition's list of values to be compared to the CI or Relation's property value
Sequence
intValue 0..∞ xs:integer
intListOperator Restriction of xs:string
Is in list or is null

Used By

Source

<xs:complexType name="IntListCondition" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Condition of type integers list</xs:documentation>
  </xs:annotation>
  <xs:complexContent>
    <xs:extension base="types:Condition">
      <xs:sequence>
        <xs:element name="condition" type="types:IntListProp" />
        <xs:element name="intListOperator">
          <xs:annotation>
            <xs:documentation>
                                Is in list or is null
                            </xs:documentation>
          </xs:annotation>
          <xs:simpleType>
            <xs:restriction base="xs:string">
              <xs:enumeration value="InList" />
              <xs:enumeration value="IsNull" />
            </xs:restriction>
          </xs:simpleType>
        </xs:element>
      </xs:sequence>
    </xs:extension>
  </xs:complexContent>
</xs:complexType>

See Also