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
1
vote
2 answers

Nested FHIR Bundles

Can I have FHIR Bundle( list of resources) within a FHIR Bundle( list of FHIR Bundles) ? I'm building a Search API which response should include list of resources and if a resources have multiple related resources, then it should be grouped in the…
R. ST
  • 11
  • 2
1
vote
1 answer

How to search for a FHIR resource without a tag

I've got an app where the user can tag QuestionnaireResponses with 'Green' if they've been cleared as OK, and also tag as Yellow and Red for follow-up. I'd like to make a page which shows all resources that are NOT tagged with Green (including those…
Larsie
  • 309
  • 1
  • 9
0
votes
0 answers

Spring/HAPI FHIR leads to 'NoUniqueBeanDefinitionException: No qualifying bean'

When the project https://github.com/FirelyTeam/fhirstarters/tree/master/java/hapi-fhirstarters-rest-server-skeleton is wrapped in a Spring application, the server fails to run and displays an…
Brad Solomon
  • 38,521
  • 31
  • 149
  • 235
0
votes
1 answer

How to retrieve retrieve Encounters within a given date range using EPIC / FHIR API

I'm working on a conceptual Java/Spring Boot application, with a developer account on fhir.epic.com. This app is largely used for statistical analysis and connects using their Backend system configuration. I have a use case, where on a regular…
David Brown
  • 3,021
  • 3
  • 26
  • 46
0
votes
1 answer

FHIR R4 Resource property value is being set as "?" when NULL enum value is passed to the resource property

We have application which transforms HL7 ADT message to FHIR Bundle . We have AllergyIntolerance Resource which contains property "severity" which accepts enum values of AllergyIntoleranceSeverity. When we pass AllergyIntoleranceSeverity.NULL value…
Jaiprasad
  • 149
  • 11
0
votes
2 answers

Hl7.Fhir.ElementModel.StructuralTypeException: Type checking the data: Encountered unknown element 'timestamp' at location 'Bundle.timestamp[0]

I am quite new in FHIR development. f I try to do the same thing with the other public test server (https://server.fire.ly) This is my code getting below exception. Hl7.Fhir.ElementModel.StructuralTypeException: Type checking the data: Encountered…
Anil patil
  • 31
  • 7
0
votes
1 answer

What are the appropriate resources for storing billing codes in FHIR when not dealing with claims or invoices (R4)?

When creating resources (Conditions, EpisodeOfCare, Encounter) that typically need billing codes (ICD10 and CPT), what is the generally agreed upon schema for storing these codes for entities who are not directly involved in filing claims or…
dajaffe
  • 855
  • 13
  • 34
0
votes
0 answers

hapi-fhir-jpaserver-starter How to create MVC

I'm trying to clone the Hapi-fhir-jpaserver-starter project at the following URL and create an API with an MVC pattern, only 404 error occurs. I don't know why. "https://github.com/hapifhir/hapi-fhir-jpaserver-starter" I created a template file in…
0
votes
2 answers

Fhir search by Identifier including property "use"

I know how to search by the identifier's system and value in FHIR - /Patient?identifier=123|system=https://nick.systems/try1 But I am wondering if it's possible to include identifier.use property also. For example I have two Patients with same…
Nikita
  • 9
  • 4
0
votes
0 answers

Why is the bearer token of the FHIR server not recognised by my application?

An external app performs a GET request to my endpoint, using a JWT token to authorise. This is what I can expect as header and value from their…
A. Abassi
  • 23
  • 1
  • 6
0
votes
0 answers

Get Fhir practitioners not assigned to any organization

I am writing a web select component that allows users to browse through and select a practitioner from a pool of practitioners who have not been assigned to an organization. The backend is based on hapi fhir server. One way I can do this is fetch…
pnetm
  • 15
  • 4
0
votes
1 answer

Personalizing question text in a FHIR Questionnaire

Generally I would expect a FHIR Questionnaire's questions' text to be static (i.e. a PHQ-9 Questionnaire). However for non-standardized forms, such as an intake specific to one clinic, there could be questions where the text should be personalized…
dajaffe
  • 855
  • 13
  • 34
0
votes
1 answer

How to filter ValueSet by property value?

I'm trying to use FHIR terminology for own terminology service. I created CodySystem/ValueSet pair: { "resourceType": "CodeSystem", "url": "/gender-codesystem", "version": "1", "content": "complete", "property": [ …
0
votes
3 answers

Obtain list of dependencies for a given validation resource like a StructureDefinition, ValueSet etc.?

Profile packages list their dependencies in the form of packages and their versions, but the dependency graph derived from that information is not always sufficient for configuring a validation context. Better analysis could be done if the…
DarthGizka
  • 4,347
  • 1
  • 24
  • 36
0
votes
0 answers

Post FHIR bundle model to Aws healthlake datastore using java sdk

Am doing a POC to test whether we can post FHIR Bundle model resourceType to Aws Healthlake datastore. Looking at the documentation it sounded like there is a way to ingest to datastore via Aws S3 as a source but am looking to, a direct ingest to…
Pradeep
  • 1,192
  • 2
  • 12
  • 30