Reference 360 SaaS
- Reference 360 SaaS
- All Products
Field Type
| Supported Filter Operators
| Filter Values
|
|---|---|---|
Boolean | _equals _notEquals _isEmpty | Boolean |
Decimal or Integer
| _equals _notEquals _isEmpty _greaterThan _greaterThanEquals _lessThan _lessThanEquals | Number
|
String
| _equals _notEquals _isEmpty _startsWith _endsWith _contains _doesNotContain | Text
|
Date
| _equals _notEquals _isEmpty _from> _to _range | ISO 8601 date For example, 2019-12-24 . |
DateTime | _equals _notEquals _isEmpty _from _to _range | ISO 8601 date and time For example,
2019-12-15T14:17:04Z . |
Reference Data
| _equals _notEquals _isEmpty _in | Values in the Code attribute or values in the display attributes for the reference data.
|
{ "state":{ "_equals":"NY" } }
{ "state":{ "_notEquals:":"NY" } }
{ "age":{ "_greaterThan":68 } }
{ "age":{ "_greaterThanEquals":68 } }
{ "age":{ "_lessThan":68 } }
{ "age":{ "_lessThanEquals":68 } }
{ "state":{ "_in":[ "NY", "CA" ] } }
{ "_and":[ { "state":"CA" }, { "age":68 } ] }
{ "_or":[ { "state":"CA" }, { "age":68 } ] }
{ { "state":"NY" }, { "age":68 } }