简体   繁体   English

实际代码未知时的代码值,CCD文件

[英]Value in code when actually code is unknow, ccd document

I am currently working on building CCD for my project. 我目前正在为我的项目构建CCD。

I have a problem in code. 我的代码有问题。 For example let me take an example of payers section. 例如,让我以“付款人”部分为例。

CONF-60:A covered party in a policy activity SHOULD contain exactly one participant / participantRole / code, to represent the reason for coverage (e.g. Self, Family dependent, student).
CONF-61:The value for “participant / participantRole / code” in a policy activity’s covered party MAY be selected from ValueSet 2.16.840.1.113883.1.11.19809 PolicyOrProgramCoverageRoleType DYNAMIC.

Above is the line i have copied from hl7 official document. 上面是我从hl7官方文档复制的行。

<code code="SELF" codeSystem="2.16.840.1.113883.5.111" displayName="Self"/>

Its copied from sample ccd document. 它是从样本ccd文档中复制的。 Going to http://wiki.hl7.de/index.php/2.16.840.1.113883.5.111 we can see there are codes. 转到http://wiki.hl7.de/index.php/2.16.840.1.113883.5.111,我们可以看到有代码。 But my system has values for which i cant find the codes there. 但是我的系统具有无法在其中找到代码的值。

So my question is if cant get the codes there can i just use following and still produce a valid ccd document 所以我的问题是,如果无法获取那里的代码,我可以只使用以下代码,仍然产生有效的CCD文件

<code displayName="Organ Donor"/>

In other words is it necessary to set code and code system in ccd document?? 换句话说,有必要在CCD文件中设置代码和代码系统吗?

No, that particular line will not be valid and yes - It is necessary. 否,该特定行将无效,是-这是必要的。 These codes and coding systems are how other systems or programs will recognize the component. 这些代码和编码系统是其他系统或程序将如何识别组件的方式。 They are based in standard language meant to be recognized across EHR platforms and applications - such as LOINC (2.16.840.1.113883.6.1). 它们基于旨在在EHR平台和应用程序中识别的标准语言-例如LOINC(2.16.840.1.113883.6.1)。

The whole purpose of the C-CDA, as the name "continuity of care" would suggest, is the seamless transition of patient information in a recognizable format to other organizations who may not utilize the same EHR. 顾名思义,“ C-CDA”的全部目的是将C-CDA的患者信息以一种可识别的格式无缝过渡到其他未使用相同EHR的组织。

Take a look at SMART CCDA Scorecard http://ccda-scorecard.smartplatforms.org/static/ccdaScorecard/#/ 看看SMART CCDA记分卡http://ccda-scorecard.smartplatforms.org/static/ccdaScorecard/#/

Also, what system are you using? 另外,您使用的是什么系统? Your system, especially for those values, should have the correct coding system because the values "SELF, MTH, FTH" are very common for documenting any demographic, insurance or patient related information. 您的系统(特别是对于那些值)应该具有正确的编码系统,因为值“ SELF,MTH,FTH”对于记录任何人口统计学,保险或与患者相关的信息非常普遍。 Otherwise, it might not meet the requirements of a certified EHR. 否则,它可能不符合认证的EHR的要求。

When the coding system doesn't contain an appropriate value you can use a NULL value and show the text, although usage of such is disallowed for certain elements. 当编码系统不包含适当的值时,您可以使用NULL值并显示文本,尽管某些元素不允许使用此类。 So your example should actually look something like this. 因此,您的示例实际上应该看起来像这样。

<code nullFlavor="OTH">
    <originalText>Organ Donor</originalText>
</code>

But in general you should always try to use a valid concept code where one exists. 但是通常,您应该始终尝试使用存在的有效概念代码。 That's the only way you'll achieve meaningful interoperability with third-party systems. 只有这样,您才能与第三方系统实现有意义的互操作性。

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

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