diff --git a/api_and_sdks/api/alerts_api/index.html b/api_and_sdks/api/alerts_api/index.html index 1b1222c..e894807 100644 --- a/api_and_sdks/api/alerts_api/index.html +++ b/api_and_sdks/api/alerts_api/index.html @@ -1465,8 +1465,7 @@

Alerts API

The Alerts API provides endpoints for retrieving and deleting alerts. Alerts can optionally be generated when a filter strategy's condition is met. See Alerts for more information on Philter alerts.

-

The curl example commands shown on this page are written assuming Philter has been enabled for SSL and it is using a self-signed certificate. If launched from a cloud marketplace, SSL will be enabled automatically with a self-signed SSL certificate. See the SSL/TLS settings for more information. -{style="note"}

+

The curl example commands shown on this page are written assuming Philter has been enabled for SSL and it is using a self-signed certificate. If launched from a cloud marketplace, SSL will be enabled automatically with a self-signed SSL certificate. See the SSL/TLS settings for more information.

Get Alerts

diff --git a/api_and_sdks/api/filtering_api/index.html b/api_and_sdks/api/filtering_api/index.html index 87481fe..90c1ba6 100644 --- a/api_and_sdks/api/filtering_api/index.html +++ b/api_and_sdks/api/filtering_api/index.html @@ -1579,11 +1579,10 @@

Filtering API

Philter’s filtering API provides access to Philter’s ability to filter sensitive information from text and to retrieve the health status of Philter.

-

The curl example commands shown on this page are written assuming Philter has been enabled for SSL and it is using a self-signed certificate. If launched from a cloud marketplace, SSL will be enabled automatically with a self-signed SSL certificate. See the SSL/TLS settings for more information. -{style="note"}

+

The curl example commands shown on this page are written assuming Philter has been enabled for SSL and it is using a self-signed certificate. If launched from a cloud marketplace, SSL will be enabled automatically with a self-signed SSL certificate. See the SSL/TLS settings for more information.

Each filter request can optionally have a context. When not provided, the context defaults to none. Contexts provide a means for logically grouping your documents during filtering. For example, documents pertaining to one health care provider may be submitted under the context hospital1, and documents pertaining to another health care provider may be submitted under the context hospital2.

-

The context for each filter request impacts how sensitive information is replaced when found in the text. Consistent anonymization can be enabled at either the context or document level. When enabled at the context level, all instances of a given piece of sensitive information will be replaced consistently by the same value. This allows for maintaining meaning across all documents in the context.

+

The context for each filter request impacts how sensitive information is replaced when found in the text. Consistent anonymization can be enabled at either the context or document level. When enabled at the context level, all instances of a given piece of sensitive information will be replaced consistently by the same value. This allows for maintaining meaning across all documents in the context.

Each filter request submitted to Philter is automatically assigned a document identifier. The document identifier is an alphanumeric value unique to that request. No two documents should be assigned the same document identifier. The document identifier is returned in the x-document-id header with each filter or explain API response.

Filter

The filter endpoint receives plain text or a PDF document and returns the redacted text or redacted PDF document.

diff --git a/api_and_sdks/api/policies_api/index.html b/api_and_sdks/api/policies_api/index.html index 157f739..456df0c 100644 --- a/api_and_sdks/api/policies_api/index.html +++ b/api_and_sdks/api/policies_api/index.html @@ -1501,8 +1501,7 @@

Policies API

The Policies API provides endpoints for retrieving, uploading, and deleting policies.

-

The curl example commands shown on this page are written assuming Philter has been enabled for SSL and it is using a self-signed certificate. If launched from a cloud marketplace, SSL will be enabled automatically with a self-signed SSL certificate. See the SSL/TLS settings for more information. -{style="note"}

+

The curl example commands shown on this page are written assuming Philter has been enabled for SSL and it is using a self-signed certificate. If launched from a cloud marketplace, SSL will be enabled automatically with a self-signed SSL certificate. See the SSL/TLS settings for more information.

Get Policy Names

diff --git a/howtos/evaluate_performance/index.html b/howtos/evaluate_performance/index.html index 452fd31..d10a202 100644 --- a/howtos/evaluate_performance/index.html +++ b/howtos/evaluate_performance/index.html @@ -1627,8 +1627,7 @@

How to Evaluate Philter's Performa

Guide to Evaluating Performance

We have created this guide to help guide you in evaluating Philter's performance on your data. The guide involves determining the types of sensitive information you want to redact, configuring those filters, optimizing the configuration, and then capturing the performance metrics.

-

We will gladly perform these steps for you and provide you a detailed Philter performance report generated from your data. Please contact us to start the process. -{style="note"}

+

We will gladly perform these steps for you and provide you a detailed Philter performance report generated from your data. Please contact us to start the process.

What You Need

To evaluate Philter's performance you need:

diff --git a/policies/filter_policies/index.html b/policies/filter_policies/index.html index 71a2eb3..6b1239a 100644 --- a/policies/filter_policies/index.html +++ b/policies/filter_policies/index.html @@ -1521,14 +1521,14 @@

An Example Policy

} } -

When an email address is identified by this policy, the email address is replaced with the text {{{REDACTED-email-address}}}. The %t gets replaced by the type of the filter. Likewise, when a phone number is found it is replaced with the text {{{REDACTED-phone-number}}}. You are free to change the redaction formats to whatever fits your use-case. See Filter Strategies for all replacement options.

+

When an email address is identified by this policy, the email address is replaced with the text {{{REDACTED-email-address}}}. The %t gets replaced by the type of the filter. Likewise, when a phone number is found it is replaced with the text {{{REDACTED-phone-number}}}. You are free to change the redaction formats to whatever fits your use-case. See Filter Strategies for all replacement options.

The name of the policy is email-and-phone-numbers. Policies can be named anything you like but their names must be unique from all other policies. As a best practice, the policy should be saved as [name].json, e.g. email-and-phone-numbers.json.

Applying a Policy to Text

To use this policy we will save it as /opt/Philter/profiles/email-and-phone-numbers.json. We must restart Philter for the new profile to be available for use. To apply the policy we will pass the policy's name to Philter when making a filter request, as shown in the example request below.

curl -k -X POST "https://localhost:8080/api/filter?c=context&p=email-and-phone-numbers" \
   -d @file.txt -H Content-Type "text/plain"
 
-

In this command, we have provided the parameter p along with a value that is the name of the policy we want to use for this request. If we had multiple policies in Philter we could choose a different policy for this request simply by changing the name given to the parameter p. For more details see Philter’s API.

+

In this command, we have provided the parameter p along with a value that is the name of the policy we want to use for this request. If we had multiple policies in Philter we could choose a different policy for this request simply by changing the name given to the parameter p. For more details see Philter’s API.

Philter will process the contents of file.txt by applying the policy named email-and-phone-numbers. As we saw in the policy above, this policy redacts email addresses and phone numbers. Philter will return the redacted text in response to the API call.

To manipulate the sensitive information by methods other than redaction, see the Filter Strategies.

diff --git a/policies/filters/common_filters/ages/index.html b/policies/filters/common_filters/ages/index.html index fbc6be0..32cbc51 100644 --- a/policies/filters/common_filters/ages/index.html +++ b/policies/filters/common_filters/ages/index.html @@ -1475,7 +1475,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/bank-routing-numbers/index.html b/policies/filters/common_filters/bank-routing-numbers/index.html index 28ab2b9..2dd8b63 100644 --- a/policies/filters/common_filters/bank-routing-numbers/index.html +++ b/policies/filters/common_filters/bank-routing-numbers/index.html @@ -1475,7 +1475,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/bitcoin-addresses/index.html b/policies/filters/common_filters/bitcoin-addresses/index.html index 0182423..c191e93 100644 --- a/policies/filters/common_filters/bitcoin-addresses/index.html +++ b/policies/filters/common_filters/bitcoin-addresses/index.html @@ -1475,7 +1475,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/creditcards/index.html b/policies/filters/common_filters/creditcards/index.html index 0a1ccfe..e41f857 100644 --- a/policies/filters/common_filters/creditcards/index.html +++ b/policies/filters/common_filters/creditcards/index.html @@ -1485,7 +1485,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/dates/index.html b/policies/filters/common_filters/dates/index.html index 461fa26..6ccaf05 100644 --- a/policies/filters/common_filters/dates/index.html +++ b/policies/filters/common_filters/dates/index.html @@ -1543,7 +1543,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/drivers-license-numbers/index.html b/policies/filters/common_filters/drivers-license-numbers/index.html index 194fc6d..9cd3e81 100644 --- a/policies/filters/common_filters/drivers-license-numbers/index.html +++ b/policies/filters/common_filters/drivers-license-numbers/index.html @@ -1475,7 +1475,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/email-addresses/index.html b/policies/filters/common_filters/email-addresses/index.html index 656acc8..4153af3 100644 --- a/policies/filters/common_filters/email-addresses/index.html +++ b/policies/filters/common_filters/email-addresses/index.html @@ -1487,7 +1487,7 @@

Optional Parameters

Filter Strategies

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. -See Filter Strategies for details.

+See Filter Strategies for details.

diff --git a/policies/filters/common_filters/iban-codes/index.html b/policies/filters/common_filters/iban-codes/index.html index aecace6..4816551 100644 --- a/policies/filters/common_filters/iban-codes/index.html +++ b/policies/filters/common_filters/iban-codes/index.html @@ -1485,7 +1485,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/ip-addresses/index.html b/policies/filters/common_filters/ip-addresses/index.html index 8cc5b55..aee67d7 100644 --- a/policies/filters/common_filters/ip-addresses/index.html +++ b/policies/filters/common_filters/ip-addresses/index.html @@ -1475,7 +1475,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/mac-addresses/index.html b/policies/filters/common_filters/mac-addresses/index.html index 8b8e713..a7de428 100644 --- a/policies/filters/common_filters/mac-addresses/index.html +++ b/policies/filters/common_filters/mac-addresses/index.html @@ -1475,7 +1475,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/passport-numbers/index.html b/policies/filters/common_filters/passport-numbers/index.html index 603e9ad..c478915 100644 --- a/policies/filters/common_filters/passport-numbers/index.html +++ b/policies/filters/common_filters/passport-numbers/index.html @@ -1475,7 +1475,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/phone-number-extensions/index.html b/policies/filters/common_filters/phone-number-extensions/index.html index b5fc0c2..757eeb2 100644 --- a/policies/filters/common_filters/phone-number-extensions/index.html +++ b/policies/filters/common_filters/phone-number-extensions/index.html @@ -1475,7 +1475,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/phone-numbers/index.html b/policies/filters/common_filters/phone-numbers/index.html index 3e0734d..ff4de86 100644 --- a/policies/filters/common_filters/phone-numbers/index.html +++ b/policies/filters/common_filters/phone-numbers/index.html @@ -1475,7 +1475,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/sections/index.html b/policies/filters/common_filters/sections/index.html index ae09b47..f735fcc 100644 --- a/policies/filters/common_filters/sections/index.html +++ b/policies/filters/common_filters/sections/index.html @@ -1495,7 +1495,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/ssns-and-tins/index.html b/policies/filters/common_filters/ssns-and-tins/index.html index b00e010..ed9c0e0 100644 --- a/policies/filters/common_filters/ssns-and-tins/index.html +++ b/policies/filters/common_filters/ssns-and-tins/index.html @@ -1475,7 +1475,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/tracking-numbers/index.html b/policies/filters/common_filters/tracking-numbers/index.html index e7dae2e..47ddc30 100644 --- a/policies/filters/common_filters/tracking-numbers/index.html +++ b/policies/filters/common_filters/tracking-numbers/index.html @@ -1475,7 +1475,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/urls/index.html b/policies/filters/common_filters/urls/index.html index 8a9062a..49e3a66 100644 --- a/policies/filters/common_filters/urls/index.html +++ b/policies/filters/common_filters/urls/index.html @@ -1480,7 +1480,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/vins/index.html b/policies/filters/common_filters/vins/index.html index 09719e6..e23c0a2 100644 --- a/policies/filters/common_filters/vins/index.html +++ b/policies/filters/common_filters/vins/index.html @@ -1475,7 +1475,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/common_filters/zip-codes/index.html b/policies/filters/common_filters/zip-codes/index.html index 75afa5f..cc7fd90 100644 --- a/policies/filters/common_filters/zip-codes/index.html +++ b/policies/filters/common_filters/zip-codes/index.html @@ -1480,7 +1480,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in order as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/custom_filters/dictionary/index.html b/policies/filters/custom_filters/dictionary/index.html index 0051de2..5be553f 100644 --- a/policies/filters/custom_filters/dictionary/index.html +++ b/policies/filters/custom_filters/dictionary/index.html @@ -1506,7 +1506,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/custom_filters/identifier/index.html b/policies/filters/custom_filters/identifier/index.html index 2cfb499..137ce45 100644 --- a/policies/filters/custom_filters/identifier/index.html +++ b/policies/filters/custom_filters/identifier/index.html @@ -1487,7 +1487,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/index.html b/policies/filters/index.html index c9c7f07..3722baa 100644 --- a/policies/filters/index.html +++ b/policies/filters/index.html @@ -1515,7 +1515,7 @@

Filters

These are predefined filters that are ready to be used as well as custom filters that let you define your own Phileas to identify sensitive information outside of what the predefined filters can identify. An example of a custom filter is a filter to identify your patient account numbers, where the structure of an account number is specific to your organization.

Each filter is capable of identifying and redacting a specific type of sensitive information. For example, there is a filter for phone numbers, a filter for US social security numbers, and a filter for person's names. You can enable any combination of these filters based on the types of sensitive information you need to redact.

This section of the documentation describes the filters available in Phileas. The configuration options for each filter can vary due to the type of the sensitive information. For instance, only the zip code filter has a configuration to truncate the zip code.

-

A selection of filters and their configurations is called a policy. A policy describes how to de-identify a document.

+

A selection of filters and their configurations is called a policy. A policy describes how to de-identify a document.

Predefined Filters

Person's Names

Phileas uses several methods to identify person's names.

diff --git a/policies/filters/locations/cities/index.html b/policies/filters/locations/cities/index.html index 106c1b5..17f93a1 100644 --- a/policies/filters/locations/cities/index.html +++ b/policies/filters/locations/cities/index.html @@ -1470,7 +1470,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/locations/counties/index.html b/policies/filters/locations/counties/index.html index e17bf44..2ad6fdb 100644 --- a/policies/filters/locations/counties/index.html +++ b/policies/filters/locations/counties/index.html @@ -1470,7 +1470,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/locations/hospital-abbreviations/index.html b/policies/filters/locations/hospital-abbreviations/index.html index 43730dd..deec121 100644 --- a/policies/filters/locations/hospital-abbreviations/index.html +++ b/policies/filters/locations/hospital-abbreviations/index.html @@ -1470,7 +1470,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/locations/hospitals/index.html b/policies/filters/locations/hospitals/index.html index 1b2b008..37eb763 100644 --- a/policies/filters/locations/hospitals/index.html +++ b/policies/filters/locations/hospitals/index.html @@ -1470,7 +1470,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/locations/state-abbreviations/index.html b/policies/filters/locations/state-abbreviations/index.html index e687f9f..5fc3381 100644 --- a/policies/filters/locations/state-abbreviations/index.html +++ b/policies/filters/locations/state-abbreviations/index.html @@ -1475,7 +1475,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/locations/states/index.html b/policies/filters/locations/states/index.html index 51628d2..8622d44 100644 --- a/policies/filters/locations/states/index.html +++ b/policies/filters/locations/states/index.html @@ -1475,7 +1475,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/persons_names/first-names/index.html b/policies/filters/persons_names/first-names/index.html index c5f86bb..c8e3c04 100644 --- a/policies/filters/persons_names/first-names/index.html +++ b/policies/filters/persons_names/first-names/index.html @@ -1480,7 +1480,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/persons_names/persons-names-ner/index.html b/policies/filters/persons_names/persons-names-ner/index.html index de0b4c2..7dc24e7 100644 --- a/policies/filters/persons_names/persons-names-ner/index.html +++ b/policies/filters/persons_names/persons-names-ner/index.html @@ -1480,7 +1480,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/persons_names/physician-names-ner/index.html b/policies/filters/persons_names/physician-names-ner/index.html index 9fa729e..56e993d 100644 --- a/policies/filters/persons_names/physician-names-ner/index.html +++ b/policies/filters/persons_names/physician-names-ner/index.html @@ -1475,7 +1475,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

diff --git a/policies/filters/persons_names/surnames/index.html b/policies/filters/persons_names/surnames/index.html index 09984c2..ff0229b 100644 --- a/policies/filters/persons_names/surnames/index.html +++ b/policies/filters/persons_names/surnames/index.html @@ -1480,7 +1480,7 @@

Optional Parameters

Filter Strategies

-

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.

+

The filter may have zero or more filter strategies. When no filter strategy is given the default strategy of REDACT is used. When multiple filter strategies are given the filter strategies will be applied in as they are listed. See Filter Strategies for details.