Meta data search expression examples
All meta data search expressions must be serialized as a JSON string so DocumentType="sys_Invoice" is serialized as "DocumentType=\"sys_Invoice\"".
Expression | Description |
|---|---|
| Equality search for DocumentType meta data with a value of sys_Invoice. |
| Inequality search for StorageState meta data with a value of 1. |
| Greater or equal search for DocumentSize meta data with a value of 123941. |
| Range search for FileSize meta data with a value between 123940 AND 123942. |
| Range search for CreateTimeStamp meta data with a value between 2021-04-19 22:00:00 AND 2021-04-20 21:59:59 UTC. |
| Range search for DocumentType meta data matching the pattern "Invoice". Matches "sys_Invoice" and "cst_Invoice", but not "invoice". |
| Combined search for DocumentType and DocumentType meta data. Matches all documents having a document type containing "_Invoice" and a document type version greater or equal to 3. |
| Combined search for DocumentType meta data. Matches all documents having a document type with a value of "sys_Invoice" or "sys_Mailroom" |