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
2
votes
2 answers

GCP FHIR viewer does not show data

I am trying to implement GCP FHIR store. Like it says on the GCP documnentation, I should be able to see data when I click the resource type. However, I see 18 data exists at the pagination section at the the bottom, but data does not show. I am…
2
votes
2 answers

Is there a way to get a count of the number of patients (or other resources) from a FHIR server?

Is it possible to get a count for the number of Patients on an FHIR server. Searching for FHIR and count I get several results for using _count to limit the number of records returned by a query, but I'm not seeing anything that shows how to get a…
John
  • 3,458
  • 4
  • 33
  • 54
2
votes
0 answers

fhir patient level bulk export not working

I'm trying to perform a Patient level bulk export: "Endpoint - All Patients Export a detailed set of FHIR resources of diverse resource types pertaining to all patients. [fhir base]/Patient/$export " I have a fhir server running on a smile CDR…
eduardosufan
  • 1,441
  • 2
  • 23
  • 51
2
votes
0 answers

ERROR while working with Bunsen for FHIR data transformation to spark: py4j.protocol.Py4JJavaError: An error occurred while calling o37.extractEntry

I am learning Bunsen https://engineering.cerner.com/bunsen/0.5.10-SNAPSHOT/index.html for handling FHIR data with Pyspark the folder bundles contain a fhir bundle which is a collection of resources as json objects I downloaded all the…
moe_
  • 219
  • 2
  • 3
  • 15
2
votes
0 answers

Hapi FHIR RestfulServer not parsing id of R4 Consent resource

In my tomcat application, I have a FHIRServlet that extends RestfulServer. It registers an interceptor to be able to retrieve the original JSON that is received by the servlet (I need to sign it and return it) and a Consent resource provider that…
ixM
  • 1,244
  • 14
  • 29
2
votes
1 answer

Clinical Notes (SOAP) representation FHIR

My question is more about modeling simple clinical notes in SOAP (Subjective, Objective, Assessment, Plan) into the FHIR specification. I have been trying to look into the documentation but it doesn't provide a clear way of doing it or a clear way…
2
votes
2 answers

How to mock response in FHIR Http Client calls to CreateAsync

When implementing calls to CreateAsync in the Hl7.Fhir.Rest.FhirClient library I'm struggling with how to mock a valid response. I know how to mock the dotnet-httpclient using a Mock HttpMessageHandler object and noticed there is a message handler…
wbsbike
  • 23
  • 4
2
votes
1 answer

Validation of Smart Health Card token fails

I am writing below code to get jwt token, which I want to validate with the SMART Health Cards Validation SDK var jose = require("node-jose"); const {JWS} = require("node-jose"); async function a1(){ try { const keystore={ keys: [ …
priyanka mane
  • 35
  • 1
  • 5
2
votes
1 answer

PetitParser and Parentheses

Sorry, I ran into another question about using PetitParser. I've figured out my recursive issues, but now I have a problem with parentheses. If I need to be able to parse the following two expressions: '(use = "official").empty()' '(( 5 + 5 ) * 5)…
Grey
  • 331
  • 3
  • 11
2
votes
1 answer

fhir.executeBundle replacing resource id...How to prevent this?

I am using this Java code to upload a resource to a FHIRstore. The resource is as follows { "resourceType": "Bundle", "id": "bundle-transaction", "meta": { "lastUpdated": "2018-03-11T11:22:16Z" }, "type": "transaction", "entry": [ …
2
votes
0 answers

hapi fhir elastic search how to configure

I am using hapi fhir v5.1.0 with jpa server(hapi-fhir-jpa-server-starter). As per the description, this version contains elastic search library for text search. How can I configure elastic server here? I see some entries in the properties file and…
covidcoder
  • 21
  • 1
2
votes
0 answers

How do you add bare custom scopes in AWS Cognito?

I am trying to define the following custom scopes in AWS Cognito (launch, aud, offline_access, online_access, fhirUser). These scopes are for SMART on FHIR. However, I am only able to define custom scopes of the form…
2
votes
1 answer

_include in hapi fhir

Currently I am developing a FHIR Search API using HAPI FHIR (Java). In the FHIR resource MedicationRequest in HAPI FHIR (Java), I want to include the Medication resource inline under MedicationRequest.medication[x], instead of as a Reference. I have…
Shriya
  • 21
  • 2
2
votes
0 answers

Is there a simple way to list all FHIR resources that exist using the FHIR package in python?

I have been using the following code to import all sub-modules in the fhir.resources package to list the standard resource names that exist for FHIR, but I realize this is a poor way to do it, and that silly peripheral module names are thrown in…
negfrequency
  • 1,801
  • 3
  • 18
  • 30
2
votes
1 answer

Posting Bundle of Resources using HAPI FHIR

I'm looking for help on how to post a bundle containing multiple resources to a HAPI Server. I'm running the [test server][1], and I've tried using both the Jetty server and running it as a docker container. I'm able to successfully start the…
Grey
  • 331
  • 3
  • 11