Questions tagged [hapi-fhir]

HAPI-FHIR is an open source Java API for creating HL7 FHIR clients and servers.

HAPI-FHIR is an open source Java API for creating HL7 FHIR clients and servers.

It is created and maintained by James Agnew and the University Health Network and licensed under the Apache Software License 2.0.

Inspired by HAPI, a similar Java library for the HL7v2 standard; HAPI-FHIR is for use with the next-generation protocol from HL7 called Fast Healthcare Interoperable Resources (FHIR™).

Documentation can be found at https://jamesagnew.github.io/hapi-fhir/ and the source code is available on Github at https://github.com/jamesagnew/hapi-fhir

247 questions
0
votes
1 answer

How to interpret the `path` attribute in `ElementDefinition`

I'm working on generating FHIR client code and am currently working on generating code for extensions. I have trouble understanding paths in ElementDefinition that contain more than one . like for example "path": "Extension.extension.id", from…
Günter Zöchbauer
  • 623,577
  • 216
  • 2,003
  • 1,567
0
votes
2 answers

FHIR Search Slots request

I am implementing FHIR server and for some un-avoidable reason I do not have access to doctor's schedule, however, I have access to the slots available for appointment booking. I can get slots from 4 parameters using doctor id organization…
0
votes
1 answer

Scheduling search parameters in FHIR

I see FHIR documentation here mentions search parameters. Are all these parameters mandatory when user client sends the request for searching Schedules ?
0
votes
1 answer

Appointment booking workflow in FHIR

I am trying to understand what is the appointment booking workflow in FHIR ? Will I be first querying Schedule resource and then Slot resource ? Is such workflow mentioned anywhere in FHIR documentation and shall I expect my clients to follow it?
0
votes
2 answers

Constructing POST request message for MEdicationOrder Resource HAPI - FHIR

I am writing a java code for generating a POST request using MedicationOrder resource in HAPI - FHIR DSTU2 HL7. I have come across several troubles. Setting the reference values for the contained resources. Contained resources are not present in…
0
votes
1 answer

Creating advanced HL7 message with Hapi Fhir

I am trying to teach myself to use the Hapi Fhir api and I'm starting by creating an HL7 message from Java. I have been able to do so by looking at this example from the official documentation page. However, now I would like to add some more…
randombee
  • 699
  • 1
  • 5
  • 26
0
votes
1 answer

How to import RESTful Server Hapi Fhir?

I want to build the simple RestServer Fhir. So for this, I have read this article http://jamesagnew.github.io/hapi-fhir/doc_rest_server.html. At the end of the article, there is the link to download the simple server FHIR. This is the link…
bircastri
  • 2,169
  • 13
  • 50
  • 119
0
votes
1 answer

Is commons-lang3 3.4 backward compatible respect to 3.1

I have a maven project with many dependencies, two of them primefaces-extensions and hapi-fhir-base, both of them needs commons-lang3, but primefaces declares version 3.1 as dependency, but hapi needs >= 3.2. Is safe to assume that commons-lang3 3.4…
carpinchosaurio
  • 1,175
  • 21
  • 44
0
votes
1 answer

Why is Compartment search not supported on Hapi DSTU2 server now?

Up to sometimes back i could perform compartment search on HAPI DSTU2 server, but now i am not able to do so. The following is the request format i was using: http://fhirtest.uhn.ca/baseDstu2/Patient/1548313/Condition Also please let me know about…
Onkaar Singh
  • 10,187
  • 3
  • 14
  • 26
0
votes
2 answers

HL7-Fhir : are search query parameters case-sensitive or always lowercase?

Question 1]When checking the reference implementation example at : http://fhirtest.uhn.ca I see that the search for http://fhirtest.uhn.ca/baseDstu2/Patient?namE=Meier returns and error message like: { "resourceType":"OperationOutcome", …
Stef Heyenrath
  • 9,335
  • 12
  • 66
  • 121
0
votes
1 answer

What are the Best practices for handling paged data on FHIR servers?

I am creating a proxy to access data on FHIR server. With the search operation on Patient resource i am getting following response from FHIR server:
Onkaar Singh
  • 10,187
  • 3
  • 14
  • 26
0
votes
1 answer

Some basics of compartment search

I am new to FHIR, and am unable to understand the concept of compartment search.I have read compartment is a group of similar resources, but when we do compartment search we provide the following path:…
Onkaar Singh
  • 10,187
  • 3
  • 14
  • 26
0
votes
1 answer

FHIR Observation: coding NaNs, +/-Inf

Devices sometimes send NaN (Not a Number) or +/-Inf (plus/minus) infinity when these special cases arise. I do not see a means to encode them into the FHIR Observation resource reliability or to place them as codes into the value element itself.…
Brian Reinhold
  • 2,313
  • 3
  • 27
  • 46
-1
votes
1 answer

FHIR Resource logical id generation using SHA256

I am trying to implement code that generates FHIR message from some type of input message. When I create each FHIR resources, I would need to create resource logical id that are unique and repeatedly generated. From Microsoft's FHIR-Converter github…
Jonathan Hagen
  • 580
  • 1
  • 6
  • 29
-1
votes
1 answer

Search practitoner by organisation

How do i search Practitioners in a department/organization e.g prov,dep,gov on FHIR server. i want to display only practitioners from a particular organization. Tried this "GET [base]/Practitioner?Organization=Organization/{_id}" and did not return…
Codee
  • 17
  • 2
1 2 3
16
17