Selectable search parameters (Preview)

Important

The selectable search parameter capability is available for preview. Preview APIs and SDKs are provided without a service-level agreement (SLA). We recommend that you don't use them for production workloads. Some features might not be supported, or they might have constrained capabilities. For more information, see Supplemental Terms of Use for Microsoft Azure Previews.

Searching for resources is fundamental to the FHIR® service. Each resource in the FHIR service carries information as a set of elements. Search parameters work to query the information in these elements. When the FHIR service is deployed, inbuilt search parameters are enabled by default. The FHIR service performs efficient searches by extracting and indexing specific properties from FHIR resources during the ingestion of data.

Selectable search parameters allow you to enable or disable inbuilt search parameters. This capability helps you store more resources in allocated storage space and improve performance by enabling only the search parameters you need.

To perform status updates on search parameters, follow these main steps:

  1. Get the status of search parameters.
  2. Update the status of search parameters.
  3. Execute a reindex job.

In this article, we demonstrate FHIR search syntax in example API calls with the {{FHIR_URL}} placeholder to represent the FHIR server URL.

Get the status of search parameters

An API endpoint (‘$status’) is provided to view the status of search parameters. There are four statuses for the response:

Status Description
Supported The search parameter is supported by the FHIR service, and you submitted requests to enable the search parameter. Execute the reindex operation to run from supported to enabled.
Enabled The search parameter is enabled for searching. This status is the next step after the supported status.
PendingDisable Disabling the search parameter is pending after execution of the reindex operation.
Disabled The search parameter is disabled.

To get the status across all search parameters, use the following request. This request returns a list of all the search parameters and their status. Scroll through the list to find the search parameter you need.

GET {{FHIR_URL}}/SearchParameter/$status

To identify the status of individual or a subset of search parameters, use these filters:

  • Name. To identify search parameter status by name, use this request:
   GET {{FHIR_URL}}/SearchParameter/$status?code=<name of search parameter/ sub string>
  • URL. To identify search parameter status by its canonical identifier, use this request:
GET {{FHIR_URL}}/SearchParameter/$status?url=<SearchParameter url>
  • Resource type. In FHIR, search parameters are enabled at the individual resource level to allow filtering and retrieving of a specific subset of resources. To identify the status of all the search parameters mapped to a resource, use this request:
GET {{FHIR_URL}}/SearchParameter/$status?resourcetype=<ResourceType name>

In response to the GET request to $status endpoint, the parameters resource type is returned with the status of the search parameter. See the example response:

{
  "resourceType" : "Parameters",
  "parameter" : [
    "name" : "searchParameterStatus",
    "part" : {
        {
        "name" : "url",
        "valueString" : "http://hl7.org/fhir/SearchParameter/Account-identifier"
        },
        {
        "name" : "status",
        "valueString" : "supported"
        }
    }
  ]
}

Update the status of search parameters

After you get the status of search parameters, update the status of search parameters to Supported or Disabled.

Note

To update the status of search parameters, you need the Search Parameter Manager Azure RBAC role.

Search parameter status can be updated for a single search parameter or in bulk.

Update a single search parameter status

To update the status of a single search parameter, use this API request:

PUT {{FHIR_URL}}/SearchParameter/$status
{
    "resourceType": "Parameters",
    "parameter": [
        {
            "name": "searchParameterStatus",
            "part": [
                {
                    "name": "url",
                    "valueUrl": "http://hl7.org/fhir/SearchParameter/Resource-test-id"
                },
                {
                    "name": "status",
                    "valueString": "Supported"
                }
            ]
        }
    ]
}

Depending on your use case, you can keep the status state value to either ‘Supported’ or ’Disabled’ for a search parameter. When you send the state Disabled in the request, the response returns as PendingDisable because a reindex job must run to fully remove associations.

If you receive a 400 HTTP status code in the response, it means there's no unique match for identified search Parameter. Check the search parameter ID.

Update search parameter status in bulk

To update the status of search parameters in bulk, the ‘PUT’ request should have the ‘Parameters’ resource list in the request body. The list needs to contain the individual search parameters that need to be updated.

PUT {{FHIR_URL}}/SearchParameter/$status
{
  "resourceType" : "Parameters",
  "parameter" : [
    {
     "name" : "searchParameterStatus",
     "part" :{
        "name" : "url",
        "valueString" : "http://hl7.org/fhir/SearchParameter/Endpoint-name"
     },
     "part":{ 
        "name" : "status",
        "valueString" : "supported"
     }
    },
         "name" : "searchParameterStatus",
     "part" :{
        "name" : "url",
        "valueString" : "http://hl7.org/fhir/SearchParameter/HealthcareService-name"
     },
     "part":{ 
        "name" : "status",
        "valueString" : "supported"
     }
    },
    ...
  ]
}

Execute a reindex job

After you update the search parameter status to Supported or Disabled, the next step is to execute a reindex job.

Until the search parameter is indexed, the Enabled and Disabled status of the search parameters aren't activated. Reindex job execution updates the status from Supported to Enabled or PendingDisable to Disabled.

A reindex job can be executed against the entire FHIR service database or against specific search parameters. A reindex job can be performance intensive. For more information, see Run a reindex job.

Note

A capability statement document is a set of behaviors for a FHIR server. A capability statement is available for the /metadata endpoint. Enabled search parameters are listed in the capability statement for your FHIR service.

Frequently Asked Questions

What is the behavior if the query includes a search parameter with status 'Supported'?

The search parameter in the 'Supported' state needs to be reindexed. Until then, the search parameter is not activated. In case a query is executed on a non-active search parameter, the FHIR service will render a response without considering that search parameter. In the response, there will be a warning message indicating that the search parameter was not indexed and therefore not used in the query. To render an error in such situations, use the 'Prefer: handling' header with the value 'strict'. By setting this header, warnings will be reported as errors.

Next steps

Define custom search parameters

Note

FHIR® is a registered trademark of HL7 and is used with the permission of HL7.