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
1
vote
1 answer

Authentication and authorization of FHIR server

I have spinned of a azure service for fhir. I want to use it with a .NET core API and I want to control the authentication and authorization inside the API. I haven't found an example where I can authenticate the webapi in azure without prompting…
1
vote
0 answers

Hapi Fhir query with AND / OR with map

Using Hapi Fhir, I try to write a query to use a map to pass in where condition, as follow: Map> hmParameter = criteria.getMapForWhere(); Bundle bundle =…
Joe Taras
  • 15,166
  • 7
  • 42
  • 55
1
vote
1 answer

How can proto files be generated from a specification(as in google-fhir protos are generated from FHIR Spec)?

I've been looking at the Google fhir repo(https://github.com/google/fhir). The proto files within this repo are generated from the FHIR spec(something like this: http://hl7.org/fhir/account.html). I want to understand how proto files can be…
nymphadora
  • 839
  • 11
  • 18
1
vote
0 answers

jsonschema2pojo is not creating generated java object

I'm trying to use jsonschema2pojo to convert the FHIR schema to a java object. If I use this example schema then the generated java classes are create just fine, but when I use this Json Schema then nothing is created and I don't see any errors to…
Travis Frazier
  • 441
  • 3
  • 13
1
vote
1 answer

Errors compiling google-fhir proto files in Go

I am unable to compile google's fhir proto for go 1. I was able to generate annotations.pb.go with warnings which can be resolved protoc --proto_path=proto --go_out=. proto/annotations.proto 2020/05/27 12:42:17 WARNING: Missing 'go_package' option…
Kam Patel
  • 21
  • 1
1
vote
2 answers

HAPI FHIR - Data Model - Entity Relationship, does anyone have a link to an ERD model that is based on FHIR

I'm looking for an ERD based on the fundamental concepts of HAPI FHIR. I have access to a number of Data Architect tools (Erwin / PowerDesigner) and wanted to know if anyone has a model they can perhaps share or point to. Thanks
1
vote
1 answer

FHIR: multiple profiles for the same resource?

What if my FHIR server needs to support multiple profiles, and they have conflicts, e.g. same resource is included in both profiles? How this conflict meant to be resolved on the protocol level? As far as I understand, the resource url should always…
silent-box
  • 1,649
  • 3
  • 21
  • 40
1
vote
1 answer

Bulk Import Request for FHIR

https://github.com/smart-on-fhir/bulk-import/blob/master/import.md I used above link for reference and tried to run import using the following code import requests url = "https://.azurehealthcareapis.com/$import" payload =…
srinath
  • 2,748
  • 6
  • 35
  • 56
1
vote
1 answer

Sending bulk data to Azure FHIR Server

I am trying to process a csv files which contains more than 20000 patient information. There are totally 50 columns and each patient will have multiple rows as its the hourly data . Most of the columns belong to Observation resource type. Like Heart…
srinath
  • 2,748
  • 6
  • 35
  • 56
1
vote
1 answer

403 - Authorization Error - OAuth2.0 - Access Token - Azure Api For Fhir

I have deployed and configured Azure API for FHIR using this link - https://learn.microsoft.com/en-gb/azure/healthcare-apis/tutorial-web-app-fhir-server Using postman i am able to successfully insert a patient information into fhir-server. To…
srinath
  • 2,748
  • 6
  • 35
  • 56
1
vote
1 answer

Creating multiple bundles in Azure API for FHIR

Using Synthea i have generated 10 patient information. I have an azure account where i have setup "Azure API for FHIR" service. i did all the setup and tried pushing a sample patient (as mentioned in the official docs). i am able to retrieve the…
srinath
  • 2,748
  • 6
  • 35
  • 56
1
vote
1 answer

Epic FHIR AppOrchard OAuth

How can I get Auth Token from AppOrchard? Is there an easier/better method than…
1
vote
1 answer

Post to Azure FHIR Server method Fail to Authentication Failed 401

I have an Azure FHIR Server which I have tested with POSTMAN I am able to Read Patients as well as POST Patients using POSTMAN and Oauth token. I have now created a JavaScript Post method so that I can post data from my own method rather than using…
Sam
  • 387
  • 4
  • 17
1
vote
1 answer

ISO 8601 string to C# datetime: lost time zone

in the database, I have a column that datatype is Date. I use ORM to map this DB, so, in the appropriate C# class, I have a field with DateTime datatype. From FHIR-client I receive a JSON document with a date formatted in ISO 8601 and it contains…
JhonMalk199
  • 97
  • 1
  • 9
1
vote
2 answers

Json oneOf in Dart/Flutter for FHIR resources

I'm trying to create Dart classes for FHIR resources defined in Json. The full Json schema for FHIR is here if anyone wants to look. My issue is with a oneOf declaration. Specifically, I have a class like the following (I'm not including the full…
Grey
  • 331
  • 3
  • 11