hl7-fhir

Which FHIR resource should I use for Treatment Preferences?

这一生的挚爱 提交于 2019-12-11 19:39:34
问题 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 handled in a list of extended objects? Or will FHIR be implementing a CarePreference resource? 回答1: This isn't catered for in the current set of resources. I guess you use Other (http://hl7.org/implement/standards/fhir/other.htm). It does seem like

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

ぐ巨炮叔叔 提交于 2019-12-11 13:45:09
问题 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 this case. But I have not created the patient in system who is trying to book appointment first time. So I need all this patient details. How can I post those details in Appointment resource which I post to create an appointment ? 回答1: Alternatively

How do I use @types/fhir in angular cli project

妖精的绣舞 提交于 2019-12-11 13:02:26
问题 When i npm install this library into my cli project and try to reference the types within it i get this: error TS2306: File 'C:/ng-ikr-lib-test/node_modules/@types/fhir/index.d.ts' is not a module. Here is my tsconfig: { "compileOnSave": false, "compilerOptions": { "baseUrl": "./", "outDir": "./dist/out-tsc", "sourceMap": true, "declaration": false, "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, "target": "es5", "typeRoots": [ "node_modules/@types"

Multiple Addresses for a FHIR resource Practitioner

主宰稳场 提交于 2019-12-11 11:06:31
问题 In the resource definition of a practitioner (http://hl7.org/implement/standards/fhir/practitioner.htm), only one address can be set. These is a problem for managing physicians with a national identifier (RPPS in France). A physician can have several addresses, they can work in a public hospital and a private organization in the same time, for instance. Some physicians have more than 10 active addresses. How to deal with that ? Thanks in advance. 回答1: If you only want to have a single

How to Get FHIR Photo for Patient from a URL

浪子不回头ぞ 提交于 2019-12-11 08:23:49
问题 Consider the FHIR Patient data at http://spark.furore.com/fhir/Patient/f201. How can I get the photo object referenced therein at URL "binary/@f006"?? I would have thought an HTTP GET on http://spark.furore.com/fhir/binary/@f006 would have done it, but alas... 回答1: the data there is wrong. Your conversion to the get was correct, but you ended up with a wrong URL because the reference is wrong in the first place. It should say: url="Binary/f006" which would equate to a get of http://spark

MedicationOrder for Times of day

我是研究僧i 提交于 2019-12-11 07:32:55
问题 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 dosageInstructions one for each time. Or if I should have multiple timing instructions each with its own event dateTime. Or if there is another way I am not considering. Thanks! 回答1: There's not currently a way to specify specific times without

Hapi Fhir DomainResource, What URL do you use?

ぃ、小莉子 提交于 2019-12-10 10:38:41
问题 http://hapifhir.io/doc_custom_structures.html this article discusses a DomainResource. There are situations however when you might want to create an entirely custom resource type. This feature should be used only if there is no other option, since it means you are creating a resource type that will not be interoperable with other FHIR implementations. I've implemented the code verbatum. (I show the classes below (with no "guts" just for brevity) (full code at the url)) /** * This is an

How to compile google-fhir proto files

大憨熊 提交于 2019-12-08 07:12:51
问题 Looking at the readme for google-fhir it says to run bazel build , which works, however none of the protocol files have been compiled. Running protoc --proto_path=. --java_out=. proto/stu3/resources.proto returns a bunch of error about other protos not being found. This goes backwards until 'descriptor.proto' which is not a proto in the folder. None of the protocol files in that directory will manually compile into java files. *On another note, I was able to take other example protos from

How to compile google-fhir proto files

六眼飞鱼酱① 提交于 2019-12-08 03:21:26
Looking at the readme for google-fhir it says to run bazel build , which works, however none of the protocol files have been compiled. Running protoc --proto_path=. --java_out=. proto/stu3/resources.proto returns a bunch of error about other protos not being found. This goes backwards until 'descriptor.proto' which is not a proto in the folder. None of the protocol files in that directory will manually compile into java files. *On another note, I was able to take other example protos from other sources and compile those successfully. UPDATE Running the command protoc --proto_path=proto/stu3/ -

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

ぃ、小莉子 提交于 2019-12-06 07:07:41
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 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