| <AREA | Attribute Description Table |
| (r)equalto="string" (r)greaterthan="string" (r)greaterthanorequalto="string" (r)lessthan="string" (r)lessthanorequalto="string" (r)notequalto="string" > No Child Elements </AREA > | |
| (r): Attribute or child element is required. | |
| Attribute | Usage |
|---|---|
| equalto | Equal to operator for comparing two values. |
| greaterthan | Greater than operator for comparing two values. |
| greaterthanorequalto | Greater than or equal to operator for comparing two values. |
| lessthan | Less than operator for comparing two values. |
| lessthanorequalto | Less than or equal to operator for comparing two values. |
| notequalto | Eliminates a particular value from the search. |
| <?xml version="1.0" encoding="UTF-8"?> <ARCXML version="1.1"> <REQUEST> <GET_METADATA> <SEARCH_METADATA foldermask="4" sort="name"> <SEARCH_METADATA > <AREA greaterthanorequalto="0" lessthanorequalto="500" /> </SEARCH_METADATA> </SEARCH_METADATA> </GET_METADATA> </REQUEST> </ARCXML> |