HDSI Query Syntax
Last updated
Last updated
Both the HDSI and AMI use a general purpose query syntax which provide methods for matching records within the database on those interfaces. The HDSI query syntax is mapped to the RIM objects (wire format) returned by those APIs.
The HDSI query syntax is translated from HTTP query headers to LINQ expression trees and then used within the SanteDB iCDR and dCDR instances where needed (running business rules, filtering lists, querying against the database).
When passing HDSI queries over HTTP you must URL encode them. The examples here are not URL encoded and only suitable in matching and care planning rules.
In general an HDSI query is executed using parameters found in the object which is being queried. For example, an HDSI query for all patients named TEST would be:
This query is translated into a .NET expression tree roughly equivalent to
The properties are traversed using dotted notation matching the property names in the returned object as illustrated below.
By default all filters passed in an HDSI query string are AND unless the property path is the same, in which case multiples are treated as OR. For example, to find patients with any name component of either JOHN or SMITH
However, if guards are applied, we can execute given name JOHN and family name SMITH
If we wanted to query for given name of JOHN or JOHNNY and family name of SMITH
Operators allow for the filtering of values based on equality, negation, etc. The operators for HDSI query syntax are listed below:
Operation | Operator | Example |
Equal |
| name.component.value=JOHN |
Not Equal |
| name.component.value=!JOHN name.component.value=neJOHN |
Less Than |
| dateOfBirth=<2020-01-01 dateOfBirth=lt2020-01-01 |
Less Than or Equal |
| dateOfBirth=<=2020-01-01 dateOfBirth=lte2020-01-01 |
Greater Than |
| dateOfBirth=>2020-01-01 dateOfBirth=gt2020-01-01 |
Greater Than or Equal |
| dateOfBirth=>=2020-01-01 dateOfBirth=gte2020-01-01 |
About Equal (Pattern) |
| name.component.value=~JO* name.component.value=apJO* |
Starts With | =^ | name.component.value=^JO |
Ends With | =$ | name.componentvalue=$HN |
By default any filter which is applied to a property which is a collection (identifiers, name, addresses, etc.) is filtered as ANY. The following example illustrates a match where any identifier of a patient equals 123-234-234:
In order to specify a particular instance on a traversal a guard is applied, guards are applied using square brackets and the code mnemonic of the classifier you want to guard on. For example, if we wanted only patients having an SSN of 123-234-234:
Classifiers on properties will depend on the type of property being filtered, a common list of properties and their classifiers are included below.
Type | Classifier | Example |
Addresses | Address Use | address[HomeAddress].component.value=ON |
Names | Name Use | name[Legal].component.value=SMITH |
Identifiers | Identifier Assigner | identifier[SSN].value=123-123-123 |
Telecoms | Telecom Use | telecom[WorkPlace].value=304-043-2039 |
Relationships | Relationship Type | relationship[Mother].target=UUID |
Participations | Participation Role | participation[RecordTarget].player=UUID |
Name / Address Component | Component Type | name.component[Given].value=JOHN |
If using multiple classifiers you can either represent them individually
However this is not recommended as the query builder will create two clauses, the query above roughly translates to:
Instead you can combine the guards:
Which translates to a reduced LINQ expression:
This section documents a feature that is only available in SanteDB v3.0 or later
Guards can also contain complex expressions. Complex expressions in a guard are triggered by using the =
sign in the guard. For example, to guard on a telecom address whose use is Home
and type is an e-mail:
When submitting the request via a string or via HTTP directly the =
in the guard expression must be URL escaped value of %3d
Sometimes an occasion arises where you wish to execute a sub-filter on a property which is of the wrong type. For example, if we wanted to filter for patients who have Mother with a date of birth before 1960, we would expect this query to work:
However, looking at the traversal for target on the EntityRelationship class, the type is of Entity rather than a Person. Entity does not have a dateOfBirth , we need to tell the query engine that we want to further restrict the target to be a Person, this is done with the CAST operator:
Sometimes a traversal path may not have a value, this can cause issues when the iCDR attempts to execute filters against in-memory objects such as in the care planner or matching engine. In these scenarios you can use the coalesce operator (also known as the "Elvis" operator). This operator does null-safe traversal, for example, to match a patient with a gender code which may or may not be present:
Variables are either defined by the user (for example, in the data retention service) or by the host context (such as $index
in the CDSS for repeated actions, or $input
in the matcher for the inbound record).
Variables may be referenced as the value, for example, if a $mothersBirth
variable was defined in a retention policy, it could be used in the filter as:
Variables can also be used as the root of another HDSI expression, for example, comparing the city in which an $input
patient lives.
The following variables are available when using the HDSI query syntax in any context.
Variable | Type | Description |
---|---|---|
| DateTimeOffset | The current timestamp on the iCDR or dCDR sever. |
| DateTime | The current date (year, month and day) on the iCDR or dCDR server |
When using the SanteDB matching engine the HDSI query syntax is extended to include additional variables.
Variable | Type | Description |
---|---|---|
| Entity | The entity which is attempting to be registered. |
When evaluating HDSI expressions in the CDSS engine the following additional variables are exposed.
Variable | Type | Description |
---|---|---|
| Integer | When the |
| Boolean | When true, indicates that the CDSS rule is being called as part of a background process, when false indicates that the CDSS rule is being executed in the user interface. |
The default matching operations may be extended via SanteDB's query extension methods. These methods allow for custom matching parameters. These extension functions are enumerated below (with a discussion on which plugins must be enabled to activate them).
Functions are applied in the format:
See: Filter Functions for more information on filter functions.
HDSI query control parameters are prefixed with an underscore. These query parameters are not mapped to the internal data structures of the RIM for filtering, and are intended, to provide control over how the result set is returned.
| number | Controls the number of records which are returned in the result set. |
| number | Controls the offset of the first record to be returned in the result set. |
| field:[asc|desc] | Controls the ordering of results in the result set. |
| string | Initiates a free text search (or rather, allows the server to control how the result set is queried). |
| boolean | True if the response should include the total count - this is used to allow callers to indicate that they don't want the API to perform the extra step of |
The _any
parameter in a search allows clients to execute a filter on any data in the requested resource. The behavior of the _any
parameter depends on the persistence layer and how the has been configured.
On PostgreSQL this search uses the tsvector
type to execute web search queries.
On SQLite (before version 2.3 of the dCDR) the search uses a simple keyword search. Integration of the Lucene engine is being developed for version 2.3 of the dCDR
On Firebird the search maps to a query on name.component.value
or address.component.value
or identifier.value
.
If configured, the iCDR running on PostgreSQL will use the PostgreSQL FreeText search engine. Searches can be executed as a simple web search. For example to match based on name, address, identifier or telecom of Jim and Smith:
Additionally simple logic can be applied via and/or:
When writing your HDSI queries, you can ensure that you have higher performance by structuring your queries in a particular way. Some recommendations:
Use Guards: Whenever possible use guard conditions, this reduces the records to be filtered by the database system and (if you've partitioned tables) can dictate particular partitions to use.
Combine Guard Conditions: You can combine guard conditions as illustrated above, this ensures that results are filtered with one EXISTS condition in the database rather than multiple
Special Indexing: You can (and should) apply additional indexing to your SanteDB database to take advantage of common functions and queries. For example, if you often use the SOUNDEX algorithm to search for addresses, you might want to create an index like: CREATE INDEX addr_cmp_val_soundex_idx ON addr_cmp_val_tbl(SOUNDEX(val));
Partition Tables: You can partition collection tables based on their classifiers , this can make it easier for the database system to filter data based on classifiers. There is an partitioning script in the SQL\ directory of your iCDR installation folder. This sets up partitions for the entity relationship and act participations.