2.2.5.6 FilterQueryType

The simple type rm:FilterQueryType derives from xs:string and restricts the value to one of a set of specified string values.

 <?xml version="1.0" encoding="utf-8"?>
 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://schemas.microsoft.com/2006/11/ResourceManagement">
   <xs:simpleType name="FilterQueryType">
     <xs:restriction base="xs:string">
       <xs:enumeration value="/ma-data"/>
       <xs:enumeration value="/mv-data"/>
       <xs:enumeration value="/Person"/>
       <xs:enumeration value="/ManagementPolicyRule"/>
       <xs:enumeration value="/Set"/>
  
     </xs:restriction>
   </xs:simpleType>
 </xs:schema>