CmdbTypes Schema
StrListCondition Complex Type
CmdbTypes Schema : StrListCondition Complex Type

Glossary Item Box

Description

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

Base Type

Diagram

strListOperator Element value Element name Element Sequence condition Element Sequence StrListCondition Complex Type

Overview

StrListCondition Extension of Condition Complex Type
Condition of type list of strings
Sequence
Sequence
name xs:string
The property's name
value optional xs:string
The condition value to be compared to the CI or Relation's property value
strListOperator Restriction of xs:string
Is in list or is null

Used By

Source

<xs:complexType name="StrListCondition" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Condition of type list of strings</xs:documentation>
  </xs:annotation>
  <xs:complexContent>
    <xs:extension base="types:Condition">
      <xs:sequence>
        <xs:element name="condition" type="types:StrProp" />
        <xs:element name="strListOperator">
          <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