我有这样的药物数据模型:
例如:本氯氟甲酰肼,05/12/2015,表2.5MG,1 Tab,56
我看了一下药物资源,但我无法绘制地图。有人能帮我绘制这张地图吗?
谢谢。
发布于 2016-09-14 21:03:07
首先,我想问更多的细节,但我不能评论您的问题,因为堆栈流声誉系统。
在FHIR中,药物领域包括一些相关资源,它们是;
@brillox也刷新了这个文件,但是我将再次指出,资源药物.内容这个源代码就像主文件通知( HL7 v2的最惠国待遇)
请查看例子以查看药品名称。我还举了一个例子。
对于药物管理,请检查例子和说明,你会发现所有你需要的细节。资源MedicationAdministration -详细描述
复合药物的一个例子;
{
"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"
}
}
}
]
}
}发布于 2016-09-12 16:37:10
你的数据代表什么?我假设是医生开的药物处方。您应该查看医疗顺序重新来源:
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。
如果您有不同的处方或不同的开始/结束日期的药物,只需使用每个处方一个药物订单。
https://stackoverflow.com/questions/39449139
复制相似问题