Last updated:
0 purchases
fhir path
FHIRPath #
Checkout this page from HL7 for the full specification
Please note that most of the comments on the parser classes are taken directly from HL7's
FHIRPath specification with full credit given. I thought it would be helpful to have it as a comment while trying to use this package, so I've included it. If this is not allowed, please alert me, and
I will immediately remove the comments.
Functionality #
Basic Types
Path selection
Basic Operators
Functions without arguments
Functions with arguments
How To Use #
To use this library, you can call one of two functions:
List r4WalkFhirPath(
r4.Resource? resource,
String pathExpression, [
Map<String, dynamic>? passed,
]) =>
walkFhirPath(resource?.toJson(), pathExpression, passed, FhirVersion.r4);
/// OR
List walkFhirPath(
Map<String, dynamic>? resource,
String pathExpression, [
Map<String, dynamic>? passed,
FhirVersion version = FhirVersion.r4,
]) {
copied to clipboard
This allows you to call the walkFhirPath function directly and pass it the FHIR version you are using, or you can call the function specifically for your version and it will pass that with it. This way the library can easily work with all versions of FHIR.
The resource is the main resource you're acting on (if you call walkFhirPath directly, you must pass it as a Map - call .toJson() on your resource). The pathExpression is the expression that will be evaluated and applied to the resource. If you need to pass in environmental variables, these are passed as the map. The passed Map's keys need to have a "%" in front of them, for instance:
{
'%pi': 3.1415,
'%birthday': '1776/07/04'
}
copied to clipboard
The passed resource WILL be added to this map as '%resource', so you don't need to add it, but be aware this it will be present, and if you try to pass in a different '%resource' it will be overwritten.
ToDo (functionality not supported yet) #
Trace
Reflection
System.something (models - https://hl7.org/fhirpath/#models)
Confirm equivalence works properly
Correct some of the issues with "this is type"
Notes on Structure #
When executing a FHIRParser class, any result will be a List
During the execution, this takes advantage of the FHIR datatypes
However After execution (which acts recursively and traverses down the tree) there will be only values in the Lists, no more FHIR parsers
PetitParser #
I personally found PetitParser more convenient to use than ANTLR for this library
However, the actual parsing is done separately from the tokenization (lexing), so if at some point someone wanted to change it to use ANTLR instead, they could swap out the lexer and the library should still function
Official FHIRPath grammar #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.