问题描述
假设一个新患者正在尝试使用FHIR API进行预约,我应该如何在系统中获取其名字,姓氏,身份证,电话号码?
在这种情况下,约会资源仅指定参与者参考,这是对患者资源的ID.但是我尚未在系统中创建尝试首次预约的患者.所以我需要所有这些患者详细信息.
如何在发布约会创建约会的约会资源中发布这些详细信息?
或者,如果您不希望在系统中创建患者,直到他/她出现,初始约会可能会将患者包含为包含"资源": https://www.hl7.org/fhir/references.html#contained .这对于跨FHIR服务器上没有已确定端点的数据进行获取很有用.
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 ?
Alternatively, if you do not wish to create the patient in your system yet until he/she shows up, the initial appointment could contain the Patient as a "contained resource": https://www.hl7.org/fhir/references.html#contained. This is useful for getting data across that doesn't have an identified endpoint on a FHIR server.
这篇关于FHIR新患者预约预订(系统中尚未创建患者)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!