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

I want to find all resource type list of specific patient using HL7 FHIR RESTFul API

I want to show all resources type list like condition, immunization, patient. How can I find those endpoints? I did not get any end point which gets a list of resource types. API end point: https://r4.smarthealthit.org Official documentation:…
1
vote
1 answer

Created new custom resource type through the HAPI JPA Server Starter code but unable to make a request to this new resource

I created new custom resource type through the HAPI JPA Server starter code by following steps but unable to make a call to this new resource type: Create a custom resource type class extending Resource class with two parameters name and…
1
vote
1 answer

HAPI FHIR: loading an entire package to server

I just read through the docs but can't seem to find a way to load an entire package to a HAPI-FHIR server. I was sure the hapi-fhir-cli client would have such an option but all I see is the ability to create a package. I want to load a whole Core…
Amos Bordowitz
  • 474
  • 6
  • 19
1
vote
1 answer

FHIR: Extending the Basic resource with extensions

I'm an absolute FHIR newbie and I'm trying to create a set of StructureDefinitions and examples for an upcoming medical project. For this project, we need a very specific resource, which is not supported by any FHIR resource yet. Here's our use…
com98
  • 23
  • 3
1
vote
1 answer

Looking for a faster way to export Resources in HAPI FHIR

Following the documentation on $export API (link), it is possible to export FHIR data, e.g. Patient, Observation, etc. However, this process is very slow (take many days) if the Resources to be exported are substantial in size. Querying database,…
JoyfulPanda
  • 867
  • 6
  • 14
1
vote
1 answer

How to search for a fhir by identifier?

I notice most if not all fhir resource types have a property 'identifier', which is of type identifier. I have a patient resource with an identifier of value:8270970042, and I want to find them. I am using fhir r4. I have set this on my resources to…
1
vote
2 answers

How to execute search for FHIR patient with multiple given names?

We've implemented the $match operation for patient that takes FHIR parameters with the search criteria. How should this search work when the patient resource in the parameters contains multiple given names? We don't see anything in FHIR that speaks…
scottctr
  • 683
  • 2
  • 6
  • 19
1
vote
0 answers

How to use FHIR PATH to fetch the list of Immunization for a Patient?

Currently, I am fetching the list of Immunization resources for a Patient using the below code. Is this efficient method of fetching the data from FHIR Server? How to use the FHIRPATH in this case? // Create a client IGenericClient…
user1700138
  • 35
  • 2
  • 7
1
vote
1 answer

How to generate QuestionnaireResponse using LHC-Forms (LForms)

I'm working through the capabilities of LHC-Forms (LForms) in github here: https://github.com/lhncbc/lforms-fhir-app Looking at the example here: https://lhcforms.nlm.nih.gov/sdc There is a button that lets the user see a FHIR QuestionnaireResponse…
John
  • 3,458
  • 4
  • 33
  • 54
1
vote
1 answer

How do you express reverse chaining in a HAPI FHIR Plain server

How do we support a query like GET /base/ResearchStudy?_count=1&_has:ResearchSubject:study:individual=Patient/3635973&_elements=id using HAPI FHIR plain server? The documentation tells how to do chaining, but not reverse chaining (_has).
Eponymous
  • 6,143
  • 4
  • 43
  • 43
1
vote
2 answers

Oauth2 Flutter Authorization Parameters

I have a (possibly?) niche question about Oauth2 in Dart and Flutter (I'm using the standard Oauth2 package: https://pub.dev/packages/oauth2). Specifically, I need some values that are passed back as part of the Authorization flow, but they are not…
Grey
  • 331
  • 3
  • 11
1
vote
0 answers

hapi-fhir ResourceVersionConflictException for Update resource

I am using hapi-fhir sdk in Android. I got ResourceVersionConflictException for Patient update. From api doc Represents an HTTP 409 Conflict response. This exception should be thrown in methods which accept a version (e.g. Update, Delete) when the…
Abu Yousuf
  • 5,729
  • 3
  • 31
  • 50
1
vote
2 answers

Avoid duplicate Patient on resource create

When sending this request multiple times, I get multiple Patients created. { "resourceType": "Patient", "identifier": [ { "use": "usual", "system": "urn:oid:2.16.840.1.113883.19.5", "value": "12345" } ], "active":…
amitaibu
  • 1,026
  • 1
  • 7
  • 23
1
vote
1 answer

How to get all the versions of a particular FHIR resource in AWS FHIR store?

Is there a way to get the list of all the versions of a specific resource created in FHIR store. I have used the following call, ///_history but its not returning response If I add version to this url: …
1
vote
1 answer

Accepting FHIR Resource 'Patient' as a RequestBody in spring boot

I want to accept the JSON body of Patient FHIR resource as @RequestBody in Spring boot API. I tried to do this: @RestController @RequestMapping("/api") public class DemoController { @PostMapping("/Patient/save") public String…
Sandip Pawar
  • 585
  • 4
  • 10