Migrate from Aidbox SearchParameter to FHIR SearchParameter
If you want to use the FHIRSchema validation engine, your custom Aidbox SearchParameters defined via Zen or Entities will not be available. Aidbox with FHIRSchema validation enabled is more aligned with the FHIR specification and only supports FHIR SearchParameters. In this case, use this migration guide.
If you are using Zen project to define your SearchParameter resources, you can also follow this guide, but you will need to remove the SearchParameter definitions from your Zen project.
To migrate Aidbox SearchParameter you need to redefine it as regular FHIR SearchParameters using REST API:
To define FHIR SearchParameter you should know the meaning of some basic FHIR SearchParameter properties, required fields marked as *:
Property | Description | Additional Notes |
---|---|---|
| The resource type(s) this search parameter applies to. | In Aidbox SearchParameter it was |
| Canonical identifier for this search parameter, represented as a URI (globally unique). | Didn't exists in Aidbox SearchParameter. |
| FHIRPath expression that extracts the values. | You need to manually convert Adibox |
| Computationally friendly name of the search parameter. | The same as in Adibox |
|
| Didn't exist in Aidbox SearchParameter. Use |
|
| Transfer this value as it was in Adbox |
Simple case
Let's migrate custom Aidbox SearchParameter Patient.city
:
Migration steps
First step is to replace resource property to base property with target resource type:
Aidbox target resource type
FHIR target resource type
Than you need to rewrite expression property to FHIRPath format. Usually it may be transformed by joining vector elements with each other separated by .
symbol and joining resource type in front of this construction like this:
Aidbox expression
FHIR expression
The final step is to add the missing status
and url
fields required by the FHIR SearchParameter specification. For the status
property in the aidbox, you usually just set it to active
.
FHIR status and url
Here is the migration request for Patient.city
SearchParameter:
Complex expression cases
For more complex cases, there is a need for more complex expression mapping. Here is a few examples:
Aidbox expression with or
or
If expression contains multiple arrays, it means or
statement between multiple expressions:
FHIR expression with or
or
This is what it looks like in the FHIRPath format:
Aidbox expression with where
where
When expression contains object, it means where
statement. In this case it would extract records with element telecom
which contains field system
with value email
:
FHIR expression with where
where
This is what it looks like in the FHIRPath format:
Last updated