PI and entity search

With PI and Entity Search you can search documents with PI and Data Breach Entities that have been identified by Data Breach Response.

You can search for:

  • Documents that have any PI identified.
  • Documents that have Data Breach Entities identified.
  • Documents containing specific PI types.
  • Documents filtered by the fields specific to the Privacy Workflow and available in the Privacy UI.

You can save PI and Entity Search queries as a saved search. These saved can be used as the building blocks in other Relativity features. For example, you are required to select a saved search when creating batches and using Review Center. For instructions on how to create batches and use Review Center, see Creating and editing batch sets and Review Center.

Using PI and Entity search

To create a search query, select PI and Entity Search from the drop-down menu on the document list page.

Searchable fields

You can search for the following fields using PI and Entity Search.

Name Description
PI Count The count of PI found on a document. PI Count can also be used to query the count of specific PI Types on a document.
PI Types The PI Types that appear on a document.
Entity Count The number of Breached Entities that appear on a document.
Document ID The ID number of a document.
Batch ID The batch that a document is assigned to.
Duplicate Of The document ID that a document is a duplicate of.
Is Duplicate Documents that were identified as duplicates.
Document Flags User or system created flags applied to a document.
Date Added The date a document was added.
Reviewed Status The status of whether a document has been locked or unlocked.
Batched Status The status of whether a document is currently batched out.
Document Categories Document categories applied to a document.
Date Last Updated The date the document was last updated
Unable to Map PI to Viewer Documents where PI could not be mapped to the viewer. For example, poorly OCR’d documents.

Search syntax

You can use the following operators with PI and Entity Search.

Operator Description
CONTAINS Compares two values to see if the value on the left contains the value on the right.
= Compares two values to determine if they are equal.
!= Compares two values to determine if they are not equal, returns true if not equal.
< Compares two values to see if the value on the left is less than the value on the right.
<= Compares two values to see if the value on the left is less than or equal to the value on the right.
> Compares two values to see if the value on the left is greater than the value on the right.
>= Compares two values to see if the value on the left is greater than or equal to the value on the right.
AND Compares two values and returns true if both conditions are satisfied.

Example search strings

Following are examples of common search strings.

Note: Field Names and values must be surrounded by quotes.

Syntax Example Description
CONTAINS PI CONTAINS PI Returns documents that contain at least one piece of PI.
CONTAINS DATA BREACH ENTITY CONTAINS DATA BREACH ENTITY Returns documents that contain at least one Breached Entity.
CONTAINS PI TYPE <PI Type Name> CONTAINS PI TYPE 'Social Security Number' Returns documents that contain at least one piece of the specified PI type.
<Field Name> CONTAINS <Value> 'PI Types' CONTAINS 'Phone Number' Returns documents that contain the Value specified for the Field Name.
<Field Name> = <Value> 'Is Duplicate' = true Returns documents that match the value specified for the field name.
<Field Name> != <Value> 'PI Types' != 'Patient ID' Returns documents that do not match the value specified for the field name.
<Field Name> < <Value> 'Entity Count' < 3 Returns documents that are less than the value specified for the field name.
<Field Name> <= <Value> 'PI Count' <= 10 Returns documents that are less than or equal to the value specified for the field name.
<Field Name> > <Value> 'PI Count' > 10 Returns documents that are greater than the value specified for the field name.
<Field Name> >= <Value> 'Entity Count' >= 1 Returns documents that are greater than or equal to the value specified for the field name.