2

我正在从临床文档(cda 或 ccd)中检索数据。我想确定文档是 CDA 还是 CCD。我检查了 MDHT Java api,但没有找到相关的。

4

2 回答 2

2

The new standard per meaningful use stage 2 is C-CDA and all EHR vendors must comply to remain "certified". You really shouldn't be encountering too many CCRs.

Also not too sure why MDHT is being used when resources such as bluebutton+ (originally VA and now an initiative through the ONC) is far more simplistic and the js in their library will parse most forms of C-CDA. Check their resources - https://github.com/blue-button/bluebutton.js/

Check this resource as well - http://ccda-scorecard.smartplatforms.org/static/ccdaScorecard/#/

于 2014-08-28T18:25:00.347 回答
0

您将需要澄清您对 CDA 和 CCD 的使用(您的意思是 CCR) - CCD 代表护理连续性文件,有两个版本 - 最新的是 hl7 综合标准的一部分 - CCD 是 CDA

MDHT 都实现了,您可以在文档资源上使用 CDAUtil.load;MDHT 将返回一个文档类型的 java 对象并使用一个 instanceof 来检查文档的类型

ClinicalDocument clinicalDocument = CDAUtil.load(new FileInputStream("somedocument.xml"), result);
        if (clinicalDocument instanceof ContinuityOfCareDocument) {
                // Do something here
        }

这是一个使用 MDHT 的简单文档处理框架https://www.projects.openhealthtools.org/integration/viewvc/viewvc.cgi/trunk/examples/org.openhealthtools.mdht.cda.processor/?root=mdht-models&system= exsy1002

于 2014-05-13T13:27:20.680 回答