Questions tagged [dstu2-fhir]

98 questions
1
vote
1 answer

Search FHIR resource by internal reference

DSTU2 documentation does not describe ability to search resources by internal references. Is there any way to find the below resource having contained Practitioner resource and internal reference on it…
Evgeny
  • 11
  • 1
1
vote
1 answer

FHIR complex extension

How can I add an extension that has multiple fields ? For example if I have a extension related to visit motives that is structured like this in my application : "visit_motive": { "id": "1", "label": "Visit motive name", …
user2462805
  • 1,049
  • 3
  • 11
  • 26
1
vote
0 answers

HAPI always seems to timeout on searches

I have a HAPI instance set up in it's out of the box configuration. I've loaded 370,000 instances of Basic into it, and each one has a value for Basic.Meta.Profile. I try to do a search for all instances of a given profile:…
Andy
  • 3,228
  • 8
  • 40
  • 65
1
vote
1 answer

Binding multiple value sets to a single extension element

I'm wondering if there is a way to bind multiple value sets to a single extension element in fhir. Here's an example of what I'm trying to achieve: ... ...
Andy
  • 3,228
  • 8
  • 40
  • 65
1
vote
2 answers

MedicationOrder for Times of day

I have a very similar question to: Defining a Medication Schedule in FHIR DSTU2 I want to show a MedicationOrder for specified times of day, like: Take every day at 9:00am, 1:00pm and 6:00pm for 7 days. I am not sure if I should have multiple…
devjme
  • 684
  • 6
  • 12
1
vote
1 answer

How to limit a Quantity element's unit type in FHIR

I'm writing a few profiles in fhir, and to them I've added an element with type Quantity. In the documentation it states that Quantity is like a special case of a code, where you can state the unit type/dimension of the quantity (e.g. it's a…
Andy
  • 3,228
  • 8
  • 40
  • 65
1
vote
1 answer

How to define a FHIR CodeScheme (DSTU2)

TL;DR: does fhir DSTU2 contain a mechanism for formally defining CodeSystems? I'm trying to port over a bunch of resources to a fhir server from a proprietary system with very similar design goals. In the old system it had a build in method for…
Andy
  • 3,228
  • 8
  • 40
  • 65
1
vote
2 answers

Validating FHIR profiles

I'm wondering if there is a way to validate FHIR profiles? By this I mean validate the xml definition of my profile/extensions are valid, not validate a resource against my profile. I'm asking this because I've build a tool for producing profiles,…
Andy
  • 3,228
  • 8
  • 40
  • 65
1
vote
1 answer

How should I store EEG data in FHIR to store my data as electronic health record(EHR)?

I have EEG data sets which are either Matlab or EDF format. I want to store them as FHIR records. And also are there any sample mental health records available in FHIR format?
user1492991
  • 151
  • 2
  • 9
1
vote
2 answers

FHIR New Patient Appointment booking (no patient yet created in system)

Suppose a new patient is trying to book an appointment using FHIR APIs , how should I get his/her first name, last name, dob, phone number in my system ? The appointment resource just specifies actor reference which is an Id to Patient resource in…
1
vote
1 answer

Does HAPI FHIR Java API support chained parameters?

I am trying to form a request like : http://host/api/FHIR/DSTU2/Schedule?Schedule.actor:Practitioner=1234&Schedule.actor:Practitioner.location=5678&slottype=urn:oid:1.2.3|PrimaryCare&start=2016-08-08 Using HAPI FHIR Java API, how can I parse…
1
vote
1 answer

Device messaging using FHIR

I am trying to define a device messaging spec that uses FHIR resources. I need to produce Observations and also record state changes of Device, DeviceComponent and DeviceMetric. The device will be ambulatory so it will need to buffer the changes if…
1
vote
1 answer

Making a Fhir server using C# and SQL Server ( RDBMS )

I am excited with Fhir's promises. I started getting my head around on this subject for last couple of days. We have an existing SQL Server database containing health related records. We are trying to communicate with Fhir compliant…
Pratap Das
  • 504
  • 2
  • 7
  • 20
1
vote
1 answer

Search a FHIR server for a specific resource id

I am using Hapi FHIR DSTU2 HL7Org. In my application, I need to create a MedicationOrder and provide the possibility of updating/ deleting erroneous entries. I have the id, patientId, etc of the created MedicationOrder, but writing a code with where…
1
vote
2 answers

Nested FHIR Bundles

Can I have FHIR Bundle( list of resources) within a FHIR Bundle( list of FHIR Bundles) ? I'm building a Search API which response should include list of resources and if a resources have multiple related resources, then it should be grouped in the…
R. ST
  • 11
  • 2