SoapListPredicateParameter data structure

Element

Description

Type

Occurrences

anyValue

Indicates whether the Any Value flag is selected

Boolean

1

name

Name of the predicate

string

1

values

List of predicate values

SoapListPredicateValue

0-unlimited

Specification:

<xs:complexType name="SoapListPredicateParameter">

  <xs:sequence>

    <xs:element name="anyValue" type="xs:boolean" />

    <xs:element name="name" nillable="true" type="xs:string" />

    <xs:element minOccurs="0" maxOccurs="unbounded" name="values" nillable="true" type="ns:SoapListPredicateValue" />

  </xs:sequence>

</xs:complexType>

Example

<sch:listPredicate>
  <sch:anyValue>false</sch:anyValue>
  <sch:name>Priority</sch:name>
  <sch:values>
    <sch:value>Critical</sch:value>
    <sch:value>High</sch:value>
  </sch:values>
</sch:listPredicate>