Filter Schema
Property Element
Description
A property used to filter.
Diagram
Property Element
Overview
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
Namexs:stringrequired  The filter property's name.
Valuexs:anySimpleTyperequired  The filter properties value.
RegExpxs:booleanoptionalfalse Indicates if the Value attribute contains a regular expression.
Source
<xs:element name="Property" minOccurs="0" maxOccurs="unbounded" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <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>
See Also