2016-09-12 27 views
2

我有这样对于药物的数据模型:FHIR药物

  • 药品名称
  • 处方日期
  • 制备
  • 剂量
  • 数量

例如: Bendroflumethiazide(Bendrofluazide),05/12/2015,TABS 2.5MG,1个标签,56

我看过药物资源,但我无法对其进行映射。任何人都可以用这个映射帮助我吗?

谢谢。

回答

1

你的数据代表什么?我假设医生给予药物处方。 你应该看看Medicationorder的ressource:

https://www.hl7.org/fhir/medicationorder.html

这样做有它的FHIR首页,像这样的例子很多: https://www.hl7.org/fhir/medicationorder-example-f001-combivent.xml.html

在药物医嘱资源你然后链接到您的实际用药资源:https://www.hl7.org/fhir/medication.html

如果您有来自不同处方者的药物或不同的开始/结束日期,只需使用每个处方的一个药物订单。

+0

感谢所有的链接,但我已经看到他们,并且药物资源与我的用药对象中的字段不匹配;我什至不能看到一个药物名称映射与我的药物名称 – brillox

2

首先,我想问更多的细节,但我不能评论你的问题,因为stackverflow信誉系统。

在FHIR中,药物领域包括许多相关资源,他们是;

  • MedicationOrder
  • MedicationDispense
  • MedicationAdministration
  • MedicationStatement

@brillox也refenced这一点,但我会指出这再次Resource Medication - Content这源是像主文件的通知(MFN为HL7 V2)

请检查例子看药品名秒。下面我还举了一个例子。
对于药物管理,请检查例子和描述,你会发现你需要的所有细节。Resource MedicationAdministration - Detailed Descriptions

复合药物的例子;

{ 
    "resourceType": "Medication", 
    "id": "medexample008", 
    "text": { 
    "fhir_comments": [ 
     " this example includes a compounded medication " 
    ], 
    "status": "generated", 
    "div": "<div>Hydrocortisone 1%, Salicyclic Acid 5% in Glaxal Base</div>" 
    }, 
    "code": { 
    "text": "Hydrocortisone 1%, Salicyclic Acid 5% in Glaxal Base" 
    }, 
    "isBrand": false, 
    "product": { 
    "form": { 
     "coding": [ 
     { 
      "system": "http://snomed.info/sct", 
      "code": "255621006", 
      "display": "Cream" 
     } 
     ] 
    }, 
    "ingredient": [ 
     { 
     "item": { 
      "display": "Hydrocortisone Powder" 
     }, 
     "amount": { 
      "numerator": { 
      "value": 1, 
      "system": "http://unitsofmeasure.org", 
      "code": "g" 
      }, 
      "denominator": { 
      "value": 100, 
      "system": "http://unitsofmeasure.org", 
      "code": "g" 
      } 
     } 
     }, 
     { 
     "item": { 
      "display": "Salicyclic Acid" 
     }, 
     "amount": { 
      "numerator": { 
      "value": 5, 
      "system": "http://unitsofmeasure.org", 
      "code": "g" 
      }, 
      "denominator": { 
      "value": 100, 
      "system": "http://unitsofmeasure.org", 
      "code": "g" 
      } 
     } 
     }, 
     { 
     "item": { 
      "display": "Glaxal Base" 
     }, 
     "amount": { 
      "numerator": { 
      "value": 94, 
      "system": "http://unitsofmeasure.org", 
      "code": "g" 
      }, 
      "denominator": { 
      "value": 100, 
      "system": "http://unitsofmeasure.org", 
      "code": "g" 
      } 
     } 
     } 
    ] 
    } 
} 
+0

谢谢埃尔多安,我是FHIR全新的,我没有意识到,我可以结合更多的资源;如果是这种情况,那么FHIR比我想象的要灵活得多。 药品名称:苄氟噻嗪(苄氟噻嗪)\t 处方日期:29/01/2016 制备:TABS为2.5mg \t 剂量:1个标签 数量:\t 56 – brillox