hl7-fhir

In FHIR StructureDefinitions (profiles) how do elements aggregate into a snapshot?

独自空忆成欢 提交于 2020-01-15 20:29:41
问题 How does one "roll up" or aggregate differential elements with "base" elements to create a snapshot? 回答1: Snapshot generation combines attributes from base elements (elements defined in the base profiles) with the differential elements in the constraint profile. Matching of elements from constraint to base is by name (if present in both) and path. A slice in a constraint ("homePhone") uses the bare path ("Patient.telecom") as the base element. Re-slices use the most complete slice from the

In FHIR StructureDefinitions (profiles) how do elements aggregate into a snapshot?

感情迁移 提交于 2020-01-15 20:26:40
问题 How does one "roll up" or aggregate differential elements with "base" elements to create a snapshot? 回答1: Snapshot generation combines attributes from base elements (elements defined in the base profiles) with the differential elements in the constraint profile. Matching of elements from constraint to base is by name (if present in both) and path. A slice in a constraint ("homePhone") uses the bare path ("Patient.telecom") as the base element. Re-slices use the most complete slice from the

Defining a Medication Schedule in FHIR DSTU2

随声附和 提交于 2020-01-15 12:15:32
问题 We are looking to define a Medication Schedule using the FHIR Medicatation Prescription resource. Data model aside the schedule is as follows: Drug / Medication Start Date End Date Administration times Site / Route For example Amoxicillin 50mg - Orally - From 01/06/2015 to 05/06/2015 3 times a day : 09.00 / 13.00 / 18.00 Does anybody know if this is possible with the existing DSTU2 specification? Cheers 回答1: Yes, this is possible. This is possible but only in a laborious way. You want this to

Write Vital on Smart on FHIR

社会主义新天地 提交于 2020-01-07 05:21:41
问题 I am looking for curl request example to write Vitals on Smart on FHIR (hir-open-api-dstu2.smarthealthit.org) database. Here is what I have found on http://docs.smarthealthit.org/tutorials/server-quick-start/ Example of Read Patient Demographics: curl 'https://fhir-open-api-dstu2.smarthealthit.org/Patient/1482713' -H 'Accept: application/json' Example to retrieve Vitals: curl 'https://fhir-open-api-dstu2.smarthealthit.org/Observation?subject%3APatient=1482713&code=3141-9%2C8302-2%2C8287-5

HL7-FHIR accepting absolute foreign references on server

会有一股神秘感。 提交于 2020-01-07 03:24:06
问题 In 2.6.3 Copying Resources and re-identification of DSTU1 there's a description of how clients may have to re-assign ids on resources pulled from a server. My question is what should be allowed when going in the opposite direction. I see no issue with accepting foreign absolute references when there's no re-interpretation needed (ie you accept the URI on POST/PUT and return the same URI on GET), but I'm wondering if they should be accepted if a re-identification is needed on the server side

Access and scheduling of FHIR Questionnaire resource

≡放荡痞女 提交于 2019-12-29 08:48:11
问题 I am trying to understand how to use the FHIR Questionnaire resource, and have a specific question regarding this. My project is specifically regarding how a citizen in our country could be responding to Questionnaires via a web app, which are then submitted to the FHIR server as QuestionnaireAnswers, to be read/analyzed by a health professional. A FHIR-based system could have lots of Questionnaires (Qs), groups of Qs or even specific Qs would be targeted towards certain users or groups of

Parsing FHIR Bundles In Java using JSON

杀马特。学长 韩版系。学妹 提交于 2019-12-25 18:23:25
问题 I am not able to parse the incoming Bundle request (JSON) to the Java data objcets. It seems that the parser does not recognize the "resourceType": "Bundle" . Parser fails on if (json.has("feed")) statement of JsonParserBase . I have also tried using "resourceType": "feed" but no luck. Java implementation does not gives a concrete parser whereas it is available for .NET version. My application is Java based and it is not able to recognize the incoming Bundle request. I am using org.hl7.fhir

How to change HTTP URL in FHIR Listener while using mirth connect?

北慕城南 提交于 2019-12-24 08:04:41
问题 I am trying to use the FHIR Listener extension in mirth connect. I want to use a sample FHIR server to test the process but i am not able to change the HTTP URL in FHIR Listener Settings . Is there any way I can change that? 回答1: We cannot change the URL of either HTTP url or FHIR listener url. It will always remain localhost. If you are trying read a sample data from the any test server try as below: Go to the HTTP sender select GET and paste the URL there test the connection. deploy the

What's the difference between id and identifier for a FHIR resource?

一曲冷凌霜 提交于 2019-12-24 00:26:50
问题 The Resource entity define an id attribute as "Logical id of this artifact". Meanwhile for resources like MedicationRequest also define an attribute named identifier . The description is "External identifier" or "Business identifier". I'm wondering what's the difference between these two attributes? From the RESTful API definition like update , the id can be used to uniquely locate the resource, like POST [base]/[resource]/[id] . After POST another GET should be able to retrieve that resource

is there some FHIR test server with continious integration http://hl7-fhir.github.io/ release?

元气小坏坏 提交于 2019-12-22 17:38:47
问题 We want to make some proofs with new resource commits on http://hl7-fhir.github.io/. is there some available fhir server for testing? Thanks in advance Regards 回答1: The only public server that is tracking the development version is http://fhir-dev.healthintersections.com.au It's fallen behind in the last few weeks. It's my goal to have it catch up by Dec 7. 来源: https://stackoverflow.com/questions/27028131/is-there-some-fhir-test-server-with-continious-integration-http-hl7-fhir-githu