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
3
votes
0 answers

Getting Access Token using Spring Reactive for ClientCredentials

I am using oauth2 with springboot reactive (webclient webflux) I want to get access token for given property file: I have tried going over springboot documentation without success Documentation: 1)…
3
votes
2 answers

How to fix 'FHIRValidationError' from fhirclient-4.0.0 prepare() method in python?

I'm testing out fhirclient 4.0.0 (Python 3.7) with hapi R4 server settings = { 'app_id': 'fhir', # 'api_base': 'http://test.fhir.org/r4' 'api_base': 'http://hapi.fhir.org/baseR4' } smart = client.FHIRClient(settings=settings) #…
dnnavn
  • 35
  • 4
3
votes
2 answers

jsonschema2pojo maven plugin does not generate Java classes

I'm trying to obtain the Java model for the FHIR R4 specification. To accomplish this task, I downloaded the JSON Schema and I try to use jsonschema2pojo maven plugin to generate the source code. I create a simple Maven project and I put the JSON…
xcesco
  • 4,690
  • 4
  • 34
  • 65
3
votes
3 answers

Using ADF REST connector to read and transform FHIR data

I am trying to use Azure Data Factory to read data from a FHIR server and transform the results into newline delimited JSON (ndjson) files in Azure Blob storage. Specifically, if you query a FHIR server, you might get something like: { …
MichaelHansen
  • 656
  • 3
  • 7
3
votes
2 answers

Epic App Orchard How to Get Practitioner Id or Information

I've an Epic App Orchard account, and trying to build a provider facing app and test it using Hyperspace Simulator using SMART on FHIR (OAuth 2.0). I can launch my SMART on FHIR application within the simulator, and pass patient related information…
Azaz ul Haq
  • 1,635
  • 2
  • 18
  • 46
3
votes
1 answer

Hapi Fhir DomainResource, What URL do you use?

http://hapifhir.io/doc_custom_structures.html this article discusses a DomainResource. There are situations however when you might want to create an entirely custom resource type. This feature should be used only if there is no other option,…
granadaCoder
  • 26,328
  • 10
  • 113
  • 146
3
votes
2 answers

.NET FHIR Client With Token Example

Was looking at trying to find an example of leveraging the fhir-net-api to create a FHIR client server side and pass in an authorization token that is being passed back from a smart on fhir client application to my web server to make calls to the…
Blasi
  • 66
  • 1
  • 7
3
votes
2 answers

How do I use @types/fhir in angular cli project

When i npm install this library into my cli project and try to reference the types within it i get this: error TS2306: File 'C:/ng-ikr-lib-test/node_modules/@types/fhir/index.d.ts' is not a module. Here is my tsconfig: { "compileOnSave": false, …
cobolstinks
  • 6,801
  • 16
  • 68
  • 97
3
votes
1 answer

Typescript Definitions can't be imported Angular2

I have been trying to use a typescript definition file from definitely typed and I am having trouble referencing or importing it into the files I want to use it in. The definitions from definitely typed are the fhir definitions. I get errors saying…
judisjt
  • 43
  • 2
3
votes
1 answer

HL7 OIDs and FHIR URIs

I am new to the Health Level 7 standards and messaging paradigm and was reading up on OIDS/URIs. While I know OID are unique Identifiers assigned under an Assigning Authority, I would like to know the following: If there any difference in their…
Spindoctor
  • 434
  • 3
  • 17
3
votes
3 answers

Example representation for SocialHistory in FHIR

I am trying to map clinical data specifically social history ( alcohol use, drug use, living environment etc.) to FHIR. I am unable to find an example for the same on FHIR documentation. Only useful guidance I was able to find it that Social…
Gaurav Daga
  • 343
  • 2
  • 11
3
votes
0 answers

HAPI FHIR java @create interaction does not return any response

I have implemented Appointment booking where @Create interaction is used to create an appointment. Now I want to return MethodOutcome for booked appointment as the reponse of @create method. MethodOutcome oMethodOutcome = new…
3
votes
5 answers

Is it possible to search multiple FHIR resources with a single GET Request

Hello I am working on an app to use the new FHIR standards. It is being designed to pull information from the EHR and organize it. I was wondering if it is possible to search multiple FHIR resources with a single GET request. For instance can a…
jorge54
  • 31
  • 1
  • 2
3
votes
1 answer

HL7 FHIR .NET Models - include profiles created using Forge (DSTU 2)

I have been working with the HL7 FHIR .NET API reference implementation - utilizing the existing resource models embedded in the library. Now, I am trying to use the Forge tool to modify the resources (contraints/extensions) to suit my requirements.…
RahulB
  • 197
  • 1
  • 8
3
votes
2 answers

Extracting HTTP status codes from the MethodOutcome/ outcome of a create operation in HAPI FHIR

I want to extract the HTTP status of a HAPI FHIR create Method. MethodOutcome outcome = client.create().resource(medicationOrders[0]).prettyPrint().encodedXml().execute(); Is there any way to recover it from the MethodOutcome or any other…