我有一个非常类似的问题:
Defining a Medication Schedule in FHIR DSTU2
我想在指定的时间显示MedicationOrder,例如:
每天上午9:00,下午1:00和下午6:00,连续7天。
我不确定我是否应该每次都有多个剂量指示。或者,如果我应该有多个时序指令,每个时序指令都有自己的事件dateTime。或者如果还有其他方式我不考虑。
谢谢!
答案 0 :(得分:1)
目前没有办法在不枚举完整的日期时间组合的情况下指定特定时间。但是,可以在Timing.repeat上定义扩展以传达特定时间 - 因此您使用核心结构说“每天3次,共7天”,然后枚举特定的发生时间。随意提交更改请求,使其成为核心扩展。 (如果您愿意,请提出一个论点,即支持时序的大多数系统都支持此功能,因此它应该是核心元素而不是扩展。)
答案 1 :(得分:0)
我在更改请求中建议(请参阅下面的链接)以这种方式执行此操作:
"dosageInstruction": [{
"text": "Take 4 tablets daily for 7 days starting January 16, 2015",
"timing": {
"repeat": {
"boundsPeriod": {
"start": "2015-01-16",
"end": "2015-01-20"
}
"timesOfDay":{ //<-- List of times - here is where the times would be for every period
"06:00",
"17:00",
"21:00"
}
}
更改请求:
http://gforge.hl7.org/gf/project/fhir/tracker/?action=TrackerItemEdit&tracker_item_id=12352