Questions tagged [hl7-fhir]

Fast Healthcare Interoperability Resources (FHIR) is a standard for health care data exchange, published by HL7®.

FHIR is an interoperability standard intended to facilitate the exchange of healthcare information between organizations. It consists of 2 main parts – a content model in the form of ‘resources’, and a specification for the exchange of these resources in the form of real-time RESTful interfaces as well as messaging and Documents.

It's published by HL7 (Health Level Seven International).

Documentation is available on HL7 website: http://hl7.org/fhir/documentation.html

986 questions
1
vote
2 answers

fetching resources for a specific version

Is there a way to etxract the resources of a type for a specific version id. e.g something like this http://fhir-server/hapi-fhir-jpaserver/fhir/Organization?versionId>30 I can go to the database and execute the below query to get results but same…
1
vote
1 answer

Use HL7-FHIR standard in Golang

Is there a suitable package to be able to use the FHIR standard in Golang? There should be a small dependency on the Google Cloud.
Markus Bach
  • 763
  • 1
  • 8
  • 24
1
vote
0 answers

HAPI FHIR try to use patch

I've this resource of type Paramaters as follow: { "resourceType": "Parameters", "parameter": [ { "name": "operation", "part": [ { "name": "type", "valueCode": "add" }, { …
Joe Taras
  • 15,166
  • 7
  • 42
  • 55
1
vote
1 answer

Is there a way to have a practitioner with several organizations in fhir

I have a practitioner resource but the practitioner works in several hospitals, how can I relate several organizations with one practitioner
Lendit
  • 13
  • 2
1
vote
0 answers

Feed HAPI FHIR Package Cache manually? (for completeness and/or off-line use)

Because of data protection regulations we need to run the HAPI validator (validator_cli.jar) off-line, and we also need to complement the FHIR Package Cache by adding conformance resources that are not available online at all (they tend to get…
DarthGizka
  • 4,347
  • 1
  • 24
  • 36
1
vote
1 answer

Using Flutter's PetiteParser to create FHIRPath

I'd like to ask for some guidance using petitparser (I'm updating this question). There's a json-based grammar called FHIRPath that I'm trying to recreate in dart. I'm new to grammars like this, so it's taken me a little while to understand what I…
Grey
  • 331
  • 3
  • 11
1
vote
1 answer

Can ObjectProperty domain/range be redundant with ObjectAllValuesFrom?

I'm reading through an ontology (the HL7 FHIR ontology) and trying to understand why certain choices were made. I've distilled my question down to a basic example: ex:Pet a owl:Class . ex:hasPet a owl:ObjectProperty ; rdfs:domain ex:Person ; …
1
vote
1 answer

FHIR - Contained Resources and Referencing

I am still new to FHIR and trying to connect the dots. If I have a resource that I want to contain other resources, can I refer to it by element name (#myElementName) or do I need to use the contained resource id? (#myDeviceId). I've included sample…
Rjeymonk
  • 23
  • 4
1
vote
3 answers

How to get a sorted/nested FHIR Bundle-Response?

I am really new to fhir and i am wondering if it is possible to do an api call for a Bundle so that the response is more sorted/nested? So my request should be something like "give me all encounters for that organization with the associated…
Kathi U.
  • 11
  • 3
1
vote
1 answer

Fhir R4 - Track resources created user

I'm using FHIR R4 with Hapi FHIR API. I want to know how marked the ServiceRequest resources with information about created user. I've read the FHIR documentation and I've found the relevantHistory tag where I can put there a Provenance…
Joe Taras
  • 15,166
  • 7
  • 42
  • 55
1
vote
1 answer

FHIR forge How profile elements that come from base types

I'm trying to profile a MessageHeader resource using Forge 26.1.1 for R4. We need our MessageHeader resource to have an id element in all cases. The id element comes from Resource. MessageHeader inherits from DomainResource which inherits from…
Jeremy
  • 44,950
  • 68
  • 206
  • 332
1
vote
1 answer

Patient Interests in FHIR

Is there a good place to store patient interests in FHIR? (e.g. enjoy bike riding, scuba diver, etc..) I am considering using an Observation to capture this, but I wanted to make sure there wasn't another option.
k3thomps
  • 181
  • 3
1
vote
1 answer

OAuth2 Grant Type - authorization code (python)

I am try to figure out how to get Oauth 2 working in my python code. import requests, json import webbrowser authorize_url = "https://tcfhirsandbox.com.au/oauth2/authorize" token_url = "https://tcfhirsandbox.com.au/oauth2/token" state =…
1
vote
0 answers

FHIR Resource Schema/Spec

How to get one single FHIR Schema for a Resource with all the parent and child attributes in the schema. When I looked into the FHIR Schema, it has lot of child Schemas inside each resource Schema, The Schema is defined at a entity level and not at…
govin
  • 11
  • 1
1
vote
2 answers

Transitive reference to contained resources

We have a query regarding referencing resources contaiend in another. Assume the scenario, ResourceA |- contains |- ResourceB |- ResourceC And ResourceB has a reference to ResourceC. In above case, is it mandatory for ResourceA to…
emecheon
  • 307
  • 3
  • 10