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
0
votes
1 answer

Sending straight key/value pairs in FHIR

I am a programmer and I am new at my company. I am trying to populate a FHIR resource with simple key/value pairs that we use to communicate with a "sister IIS" that we also write. All we need to do is to send two strings across. But when I try to…
Brian Hart
  • 91
  • 1
  • 5
0
votes
3 answers

Simple search URL for FHIR resources

In the Query part of the documentation, http://www.hl7.org/implement/standards/fhir/query.htm, the search request is defined like this GET .../[resourcetype]/(?parameters) Then we find (without the / before the ?) GET .../patient?_id=23 We find…
Fred Laurent
  • 1,537
  • 1
  • 12
  • 14
0
votes
2 answers

JSON Result of a FHIR search

In the spec. documnent, http://www.hl7.org/implement/standards/fhir/query.htm#base The server returns the results in the HTTP response as a bundle (in XML, an atom feed) which includes the resources that are the results of the query In JSON, what…
Fred Laurent
  • 1,537
  • 1
  • 12
  • 14
0
votes
2 answers

Which FHIR resource should I use for Treatment Preferences?

While trying to understand how an existing system will map to FHIR resources, I am stuck in the documentation on Treatment/Care Preferences like the ones outlined here: http://wiki.hl7.org/index.php?title=Care_Preference Would these preferences be…
0
votes
1 answer

FHIR Resource Search Token Namespace

From the spec: token Search parameter on a coded element or identifier. May be used to search through the text, displayname, code and code/codesystem (for codes) and label, system and key (for identifier). It's value is either a string or a pair of…
Jason
  • 297
  • 3
  • 11
-1
votes
1 answer

How to convert a Dataframe containing named nested lists to JSON

I want to create a JSON object from a Dataframe, the resulting JSON object (following HL7- FHIR Version 4.0.1 ) should look something like this: { "resourceType": "Patient", "name": [ { "family": "Simpson", "given": [ "Homer", "Jay" ] } …
user12256545
  • 2,755
  • 4
  • 14
  • 28
-1
votes
1 answer

FHIR Resource logical id generation using SHA256

I am trying to implement code that generates FHIR message from some type of input message. When I create each FHIR resources, I would need to create resource logical id that are unique and repeatedly generated. From Microsoft's FHIR-Converter github…
Jonathan Hagen
  • 580
  • 1
  • 6
  • 29
-1
votes
1 answer

Search practitoner by organisation

How do i search Practitioners in a department/organization e.g prov,dep,gov on FHIR server. i want to display only practitioners from a particular organization. Tried this "GET [base]/Practitioner?Organization=Organization/{_id}" and did not return…
Codee
  • 17
  • 2
-1
votes
1 answer

Is there a mapping of FHIR Systems to OMOP Vocabularies?

Is there a mapping of FHIR systems to OMOP vocabularies? The FHIR messages I’m working with are using things like this: SNOMED http://snomed.info/sct RxNorm http://www.nlm.nih.gov/research/umls/rxnorm …and OMOP uses things like…
John
  • 3,458
  • 4
  • 33
  • 54
-1
votes
1 answer

HL7v2 to FHIR conversion default CodeSystem rules not working

In the HL7v2 to FHIR conversion CodeSystem templates, their default, i.e., "else" part in the if-then-else rule, is not working. For example, for Patient.communication.language in the Resource/_Patient.liquid template, it has the following line to…
-1
votes
1 answer

Evaluate FHIR Expression in Java against an object

I'm very new to the FHIR standard and I could use some help figuring out how to evaluate a ruleExpression against an object. Here is my object: @ResourceDef(name = "TestObj", profile = "http://hl7.org/fhir/StructureDefinition/TestObj") @Data public…
TheJeff
  • 3,665
  • 34
  • 52
-1
votes
1 answer

How to parse ClinicalDocument response using fhir API

I got response as a response, i have to parse this xml response using fhier api. not able to find the api which can parse this response. If someone knows please help me out for the same. Thanks a lot in advance.
-1
votes
1 answer

How to create class out of structure definition using c#

I have a use case where we generate a lot of custom profiles based on the specific data modelling requirements. I am trying to find a way to create models out of it(c# classes) so that it can be serialized and deserialized and represented in the way…
-1
votes
2 answers

Tips for FHIR API in .NET

I'm tasked with writing a FHIR API in .NET. For an API/server to be FHIR compatible does it have to implement the HATEOAS/links part - for example, does an Encounter object have to have a link to its Patient object, or can it have the entire…
-1
votes
1 answer

Patient.BirthDate. en-GB 'Partial is in an invalid format, should use ISO8601'

FHIR server and FHIR client works in EU environment with locale "en-GB". both uses Hl7-R4 .NET version from Firely team. if I set Patient's birth date something like that patientJson.BirthDate = "25-12-1970" and then sends the request to FHIR server…
vadl
  • 9
  • 2