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

HL7 HAPI-FHIR add cookie to the client request

Is it possible to add cookie to the request while using IRestFulClient from HAPI-FHIR?
0
votes
1 answer

HL7 HAPI-FHIR adding a new search param to resource provider

I'm using HAPI-FHIR library and I'm trying to introduce a new search parameter to resource provider for example : @Read public Patient getResourceById(@IdParam IdDt id, @RequiredParam(name="session") String…
0
votes
1 answer

FHIR Protocol&Study profiles or resources. Where can i find them in the repo?

I am not finding the drafts for Protocol and Study profiles or resources. I had found them in the past, but i dont remember where. We want to make a prototype for trials and continuity of care with patients at home. I appreciate any link . Thanks…
jmolmo
  • 542
  • 4
  • 6
0
votes
1 answer

Profiles: parser extension?

we are needing to extend some FHIR resource for certain internal needs in our platform. We have already seen how to define the profiles extension like formal and structure description. But, we have a doubt about parsers and profiles, is it necessary…
jmolmo
  • 542
  • 4
  • 6
0
votes
1 answer

Querying FHIR resrouces using JSON and Java

I'm trying to figure out a basic approach to querying FHIR resources. My first task is to query using a REST interface. Using the information on the Search page, I see there are 7 search parameter types (NUMBER, DATE, STRING, TOKEN, REFERENCE,…
Rich C.
  • 41
  • 1
0
votes
1 answer

parsing FHIR bundles in Java using JSON (cont.)

This is a follow-up to a previous question from 4 months ago. I also need to use the FHIR org.hl7.fhir.instance.formats.JsonParser to parse JSON strings that have the value "Bundle" assigned to their resourceType fields. Here are my 2…
Rich C.
  • 41
  • 1
0
votes
1 answer

FHIR: Adding validation for my extensions to a resource in Spark

How can I add validation for my extensions to a resource in Spark? Typical use case: I have a look up table of values against which the extension value need to be checked against. I assume validating each extension in a Other resource is suffice…
frosty
  • 2,421
  • 6
  • 26
  • 47
0
votes
1 answer

Understanding the difference between FHIR String_ vs String

I'm trying to understand the different between the uses of setText()/setLabel Vs. setTextSimple / setLabelSimple in the FHIR Reference implementation. What use cases would require the use of the String_ primitive type instead of the plain old…
0
votes
1 answer

FHIR: Identity of patient records

As a HISP, we will be getting patient records from different organizations but would like to key the patient records by userid of our system. We will also be exposing the records for third party app developers via APIs. App developers can query for…
frosty
  • 2,421
  • 6
  • 26
  • 47
0
votes
1 answer

FHIR: .Net Spark : How can I define/ enforce Conformance for an extension and Other resource?

How can I set Conformance so that only certain extensions for a resource are allowed for my server? Same question hold for Other resource where I want to allow only resources my server understand. I looked at Conformance.xml plus Forge tool and…
frosty
  • 2,421
  • 6
  • 26
  • 47
0
votes
1 answer

FHIR protocol questions

We are a HISP connecting doctors and patients looking at adopting FHIR protocol. I have few questions regarding FHIR. We are looking at serializing FHIR resources as JSON in Couchbase. Is serializing FHR resources as-is a right approach? How can I…
frosty
  • 2,421
  • 6
  • 26
  • 47
0
votes
2 answers

Assert a resource conforms to FHIR Profile

Want to be able to programmatically declare that a FHIR resource conforms to one or more profiles. Especially want to declare conformance to profiles that don't have any extensions, but only restrictions to the resource such as changing the…
CodeMonkey
  • 22,825
  • 4
  • 35
  • 75
0
votes
1 answer

Response to FHIR Query Messages

When performing a query message in FHIR I have a bundle with a MessageHeader linked to a Query resource The FHIR spec states The receiver processes the message, and then returns a message with a message header, a query with response details, and…
BENBUN Coder
  • 4,801
  • 7
  • 52
  • 89
0
votes
1 answer

FHIR publish tool

I use FHIR publish tool to create profile documentation. I organize my extensions in one profile, and extended resources (resources which use extensions) in separate application profiles. Extensions in a resource then have value like…
0
votes
1 answer

Model Imaging Order with FHIR Resoruces

I'm modeling imaging order with FHIR resource, and facing structural decision how to align imaging order information model in DICOM / HL7 V2 with FHIR. In DICOM / HL7 V2, an imaging order is modeled at 3 levels: - Order ... a clinician's request for…