FHIR用药

时间:2016-09-12 11:19:21

标签: hl7 hl7-fhir

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

  • 药物名称
  • 处方日期
  • 准备
  • 剂量
  • 数量

例如: Bendroflumethiazide(Bendrofluazide),2015年12月12日,TABS 2.5MG,1 Tab,56

我查看了药物资源但我无法映射它。任何人都可以帮我这个映射吗?

感谢。

2 个答案:

答案 0 :(得分:2)

首先,我想询问更多详情,但由于stackverflow信誉系统,我无法对您的问题发表评论。

在FHIR中,Medication域包含许多相关资源,它们是;

  • MedicationOrder
  • MedicationDispense
  • MedicationAdministration
  • MedicationStatement

@brillox也重申了这一点,但我会再次指出Resource Medication - Content这个来源就像主文件通知(HL7 v2的MFN)

请查看示例以查看药物名称。我还举了一个例子 对于药物管理,请查看示例和说明,您将找到所需的所有详细信息。 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"
          }
        }
      }
    ]
  }
}

答案 1 :(得分:1)

您的数据代表什么?我假设医生给药处方。 您应该查看Medicationorder资源:

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

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