Skip to main content

This documentation is for an older version of this product. See the latest version of this content.Opens in a new tab

HS.FHIRServer.Util.FHIRQueryUtils

class HS.FHIRServer.Util.FHIRQueryUtils extends HS.FHIRMeta.MetaUtils, HS.FHIRServer.Util.RunSQLQuery

This class is intended to be inherited into other classes that work with SQL and FHIR-based data. It provides conversion utilities as well as naming conventions that are shared among Table Generation, Indexing, and Querying

Method Inventory

Parameters

parameter PERIODENDSUFFIX = End;
Suffix to create Column Name from property name for end-of-period
parameter PERIODSTARTSUFFIX = Start;
Suffix to create Column Name from property name for start-of-period

Methods

classmethod FirstInstant(pVal As %String) as %String
This method is used by Indexer and by Search.

Given a date, partial date or partial timestamp, return the first instant (second), converted to UTC, that falls within that input.
For example, an input value of "1974" when the current server is in US Eastern time would return "1974-01-01T05:00:00Z".
A date/time that already has second precision will be returned with fractional seconds stripped.
classmethod LastInstant(pVal As %String) as %String
This method is used by Indexer and by Search. It assumes that the input value has already been validated.
Given a date, partial date or partial timestamp, return the last instant (second), converted to UTC, that falls within that input.
For example, an input value of "1974" when the current server is in US Eastern time would return "1975-01-01T04:59:59Z".
classmethod NormalizePhone(pVal As %String) as %String
Normalize a phone number for indexing and search by stripping out punctuation and whitespace
classmethod PreviousInstant(pVal As %String) as %String
Given a timestamp in YYYY-MM-DDThh:mm:ss format, return the value of the timestamp that is one second prior

Inherited Members

Inherited Methods

Subclasses

FeedbackOpens in a new tab