CmdbTypes Schema
DateCondition Complex Type
CmdbTypes Schema : DateCondition Complex Type

Glossary Item Box

Description

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

Base Type

Diagram

dateOperator Element value Element name Element Sequence condition Element Sequence DateCondition Complex Type

Overview

DateCondition Extension of Condition Complex Type
Condition of type Date
Sequence
Sequence
name xs:string
The property's name
value optional xs:dateTime
The condition value to be compared to the CI or Relation's property value
dateOperator Restriction of xs:string
Comparison, Changed, and Unchanged operators

Used By

Source

<xs:complexType name="DateCondition" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Condition of type Date</xs:documentation>
  </xs:annotation>
  <xs:complexContent>
    <xs:extension base="types:Condition">
      <xs:sequence>
        <xs:element name="condition" type="types:DateProp" />
        <xs:element name="dateOperator">
          <xs:annotation>
            <xs:documentation>
                                Comparison, Changed, and Unchanged 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="ChangedDuring" />
              <xs:enumeration value="UnchangedDuring" />
            </xs:restriction>
          </xs:simpleType>
        </xs:element>
      </xs:sequence>
    </xs:extension>
  </xs:complexContent>
</xs:complexType>

See Also