简体   繁体   English

C-CDA药物中的多个RxNorm

[英]Multiple RxNorm in C-CDA Medication

Specific Question 具体问题

I parsed C-CDA with BlueButton.js. 我使用BlueButton.js解析了C-CDA。 Following is from the Medication JSON output. 以下是药物JSON输出。 What is the RXNorm (with code system "2.16.840.1.113883.6.88") in this example? 在此示例中,RXNorm是什么(代码系统为“ 2.16.840.1.113883.6.88”)? It has 577961 and 577962. Which is the correct RxNorm for the patient's medication? 它具有577961和577962。哪个是患者用药的正确RxNorm?

"product": {
      "name": "Amphetamine aspartate 5 MG / Amphetamine Sulfate 5 MG / Dextroamphetamine saccharate 5 MG / Dextroamphetamine Sulfate 5 MG Oral Tablet",
      "text": "Adderall 20 mg tablet",
      "code": "577961",
      "code_system": "2.16.840.1.113883.6.88",
      "translation": {
        "name": "Amphetamine aspartate 5 MG / Amphetamine Sulfate 5 MG / Dextroamphetamine saccharate 5 MG / Dextroamphetamine Sulfate 5 MG Oral Tablet [Adderall]",
        "code": "577962",
        "code_system": "2.16.840.1.113883.6.88",
        "code_system_name": "RxNorm"
      }
    }

General Question 一般问题

Where can I get explnanation of these C-CDA elements - that is, the difference between code element in product and translation elements? 这些C-CDA元素在哪​​里可以得到解释-即product code元素与translation元素之间的区别?

References : 参考文献

  1. HL7-Referenced External Code Systems HL7引用的外部代码系统

So RxNorm is a terminology that used in the United States for recording and transmitting medication information. 因此,RxNorm是在美国用于记录和传输药物信息的术语。 It's a complex terminology/ontology since it allows for ingredients, coordinated dose forms, brand names, generic names and a bunch more. 这是一个复杂的术语/本体论,因为它允许成分,协调的剂型,品牌名称,通用名称等。 You can browse RxNorm here online without any login: 您无需登录即可在线浏览RxNorm:

https://mor.nlm.nih.gov/RxNav/ (they also have an API that you use, but that should get you started) https://mor.nlm.nih.gov/RxNav/ (它们也有您使用的API,但这应该可以帮助您入门)

Specifically on the drugs you mentioned: 577961 is the generic format and 577962 is the brand of the same drug. 特别是在您提到的药物上:577961是通用格式,而577962是同一药物的品牌。 According to the standard, either of those codes are technically correct since they are SCD and SBD term types respectively (Semantic Clinical/Brand Drug) I don't know if it's 100% clear whether the patient is on the brand or generic given that both codes are transmitted. 根据标准,这两个代码在技术上都是正确的,因为它们分别是SCD和SBD术语类型(语义临床/品牌药物),我不知道患者是使用品牌商标还是通用商标是100%明确的代码被发送。 There may be other information in the document regarding (such as what drug was dispensed). 文件中可能还有其他有关的信息(例如分配的药物)。

In terms of learning about the standard, which is HL7 C-CDA, you could download the standard here, although this requires a free HL7 login: http://www.hl7.org/implement/standards/product_brief.cfm?product_id=492 关于标准HL7 C-CDA的了解,您可以在此处下载该标准,尽管这需要免费的HL7登录: http ://www.hl7.org/implement/standards/product_brief.cfm?product_id = 492

HL7 is the standards development organization (SDO) for medical data standards. HL7是医疗数据标准的标准开发组织(SDO)。 They also offer a lot of educational content on their standards. 他们还提供了许多有关其标准的教育内容。 I hope this helps! 我希望这有帮助!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM