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

Default sort order in FHIR list query

There is a parameter available called _sort to specify the field but I would like to understand what is the default sorting parameter when we retrieve list from any of the resources in HL7 FHIR. I have compared the ID and read the documentation.…
Vinod Kumar
  • 1,479
  • 3
  • 13
  • 23
0
votes
1 answer

How to use fhir client search to include all resources i.e. ($everything)

How would you search for all resources for a given patient e.g. encounter, appointment, consent? I know you could search for it via postman request http://localhost:9090/organId/Patient/12345/$everything and get the result. But I want to be able to…
Rasoul
  • 167
  • 1
  • 2
  • 9
0
votes
1 answer

JSON for FHIR Patient LIST

I created an FHIR server using the HAPI FHIR libraries. I can now send JSON FHIR objects for a single Patient Resource. Ex. baseurl/patient/123456 Now I have to send multiple Patient Resources. Ex baseurl/patient/clinic_id Can I Use the FHIR…
Buddhika Ariyaratne
  • 2,339
  • 6
  • 51
  • 88
0
votes
1 answer

PATCH All FHIR Resources of specific type

I am currently using a managed Azure FHIR API and I need to do a mass update to a FHIR element.I have about 200K+ resources of type Specimen "resourceType": "Specimen", "id": "101", "text": { "status": "created", } And, I would like to update…
nobody
  • 10,892
  • 8
  • 45
  • 63
0
votes
0 answers

Package STORE_AND_INSTALL while client id strategy set to NOT_ALLOWED

I am trying to install a package using STORE_AND_INSTALL mode, but we seem to get a 500 response and see the following error in the log: ca.uhn.fhir.rest.server.exceptions.ResourceNotFoundException: No resource exists on this server resource with…
0
votes
1 answer

Ingesting FHIR resources - Metadata and resource Identifier for Interoperability / data sharing workflows

Are there any best practices or industry standards when ingesting FHIR resources from another system? More specifically - when multiple healthcare entities using FHIR resources begin sharing data (and wanting to store each other's data within their…
dajaffe
  • 855
  • 13
  • 34
0
votes
1 answer

Validation of ICD10-GM codes fails for specimen diagnosis

I get these error message when I'm trying to validate ICD10 (german version) codes in the specimen profile. I use the HAPI FHIR library for validation and validate angainst the bbmri.de implementation guide specimen…
Lena
  • 16
  • 3
0
votes
1 answer

How to extend a fhir class?

I want to append some relevant data to FHIR lets say patient or condition object for further processing. I tried to extend the FHIR patient class in python. Getting the following error. Could somebody give me some helpful pointers here?…
Rakesh
  • 104
  • 1
  • 11
0
votes
4 answers

Is there any way to fetch the list of resource types available for a patient id from FHIR Server?

I want the fetch the list of resource types available for a patient from the FHIR server. I tried to fetch the List of items from the Patient. But it doesn't contain all the resource types available for that particular patient.
user1700138
  • 35
  • 2
  • 7
0
votes
2 answers

Trying to perform $validate on resource update results in error saying resource is missing id

EDIT: Confirmed by SMILE support to be a bug. Is currently being worked on and will presumably be fixed in a future update. I am trying to test a $validate operation on an update for an existing resource as described here but I keep getting an error…
Blasterdude8
  • 101
  • 1
  • 5
0
votes
1 answer

How to search on FHIR using the field on reference resource

I want to return search results of medicationRequest using the episodeOfCare id. An episodeOfCare is available on on encounter resource which is a reference on medicationRequest resource. Would anyone help me on how to to search for medication…
Muteshi
  • 820
  • 1
  • 10
  • 25
0
votes
1 answer

Custom Resources in FHIR on run time generation

I am looking for guidance on how to model and create FHIR like resources (custom resources) that are not defined with FHIR( not published resources) - the reasoning is to have all FHIR and non FHIR data in a single persistence storage rather than…
meedoj11
  • 5
  • 1
0
votes
0 answers

How to allow question mark in a URL with spring boot embeded tomcat

html://www.somewhat.com/_search%3Fname=blabla I have a this type of URL. It works when I replace %3F with ? mark. But I need it to work with both. I have tried with relaxed-path-chars:"?" and relaxed-query-chars:"?" in application.yaml. But I have…
Jonny
  • 73
  • 8
0
votes
1 answer

find all HealthcareService resources for a given Practitioner - fhir search

I'm struggling a bit with reverse chaining in fhir search. I can find all PractitionerRole resources for a given Practitioner with: [base]/PractitionerRole?practitioner:Practitioner:id=100 How do I combine chaning and reverse chaining to find all…
pMan
  • 8,808
  • 11
  • 32
  • 35
0
votes
1 answer

Reverse chaining in FHIR

I want to do a search in HAPI FHIR server as follows: Retrive Observation resources that are referenced in .has-member of other Observation resources that have a specific .device id. Example: "resourceType": "Observation", "device": { …