Filter Schema
Filter Element
Description
The collection of properties used to filter.
Diagram
Property ElementSequenceFilter Element
Overview
Filter
The collection of properties used to filter.
Type optionalxs:string
For future use. Do not enter any value.
Sequence
Property0..∞
A property used to filter.
Name requiredxs:string
The filter property's name.
Value requiredxs:anySimpleType
The filter properties value.
RegExp optionalxs:boolean
Indicates if the Value attribute contains a regular expression.
Attributes
NameTypeUseDefaultFixedDescription
Typexs:stringoptional  For future use. Do not enter any value.
Source
<xs:element name="Filter" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>The collection of properties used to filter.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element name="Property" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>A property used to filter.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:attribute name="Name" type="xs:string" use="required">
            <xs:annotation>
              <xs:documentation>The filter property's name.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
          <xs:attribute name="Value" type="xs:anySimpleType" use="required">
            <xs:annotation>
              <xs:documentation>The filter properties value.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
          <xs:attribute name="RegExp" type="xs:boolean" use="optional" default="false">
            <xs:annotation>
              <xs:documentation>Indicates if the Value attribute contains a regular expression.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="Type" type="xs:string" use="optional">
      <!-- In future versions, this attribute will contain the  type (micclass) of the Test-Object, as a part of the filter. -->
      <xs:annotation>
        <xs:documentation>For future use. Do not enter any value.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>