问题标签 [hl7-v3]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
hl7 - HL7v3 CDA - 不属于既定领域的信息
HL7 的新手,所以我很抱歉并提前感谢。
在不属于标准领域范围的 HL7v3 CDA 中存储数据的过程是什么?
例如,我正在尝试存储有关患者佩戴的个人防护设备 (PPE) 及其在遭遇过程中的状态的信息。我特别想包含有关眼镜、头盔、防弹衣等的信息。
是否有一个“垃圾抽屉”字段可以用于此目的?我知道 v3 的全部意义在于标准化数据形式并施加严格性,但必须为当前选项中未包含的数据提供选项。
hl7 - HL7 OID 和 FHIR URI
我是 Health Level 7 标准和消息传递范式的新手,并且正在阅读 OIDS/URI。虽然我知道 OID 是在分配机构下分配的唯一标识符,但我想知道以下内容:
- 如果它们对 V2 和 V3 消息的使用有任何差异。
- 就 OID 而言,实际上通过网络发送了什么?
- 为什么在新的 HL7 FHIR 标准的上下文中会从 OID 切换到 URI?
任何帮助表示赞赏。
谢谢
hl7 - Mirth 将数据库连接到数据库副本
我目前正在开发从数据库读取器到数据库写入器的通道。源连接器和目标连接器都在 SQL Server 上运行。
问题是通过将源中的Interval设置为5毫秒,通道每5毫秒轮询和写入数据,即使之前已经轮询或写入数据。
例如,如果源数据库中只有一行,则通道将无限地每隔 5 毫秒将一行插入目标数据库。这会导致目标数据库中出现无限重复行。
有没有办法避免这种情况,只有在轮询的数据是新的时才插入目的地?
c# - 如何在 C# .Net 中将 XML 文件转换为 HL7 格式
我在将 XML 数据转换为 HL7 格式时遇到了问题。我正在使用 C# .Net。我正在生成 XML 文件,但客户端现在需要 HL7 格式的数据。我已经尝试了很多并在谷歌上搜索,但没有太多可用的信息
与下面相同的文件。
validation - 如何验证为 PHR 和 EMR 开发的护理连续性文件?
如何验证为 PHR 和 EMR 开发的护理连续性文件?有没有 HL7 V3 授权的验证工具或网站?
java - 如何使用 HAPI 框架解析 HL7 多个段(ORC/OBR/OBX)?
如何使用 HAPI 框架解析 HL7 多个段(ORC/OBR/OBX)。
我还面临与解析多个实验室订单相关的问题,也面临与特殊字符(MSH|^~\&#|
)编码相关的问题。
代码片段:
java - HL7 中的“重复”、“组件”和“子组件”是什么意思?
我根据我找到的文档为 HL7 构建了一个解析器,并认为它运行良好——直到我得到了测试数据的示例。我使用以下假设构建它:
- 这
~
是一个“重复”字符。基本上意味着传递的字段的值是给定值的数组。 - 这
^
数组表示,但期望数组项用于构建最终值。 - 与
&
类似^
,但它是一个嵌套在 a 中的数组^
。
鉴于我拥有的测试数据,这些假设似乎不太准确。有人可以帮我弄清楚解释这些的正确方法是什么吗?
python - Parsing Non-Standard HL7 XML w/ Python
Background:
I'm somewhat familiar with parsing XML with Java via the DOM.
What I'm trying to do:
I'm trying to parse an HL7 / XML Structured Product Label from NLM Daily Med website. An example url of what I am trying to parse is : Atenolol SPL
What I've tried so far:
I've tried DOM, ElementTree, lxml, and minidom. The closest I've been able to come has been using this code:
The results in console are:
The issues / whats not working:
I dont really need the sections prior to the sections containing "Code: XXXXX-X"
For each of those sections I want to get the values for the <title>
, <text>
, and <paragraph>
tags for that section and all sub-sections of that section.
While I've been able to use the tutorials for DOM, ElementTree, lxml, and minidom, the target XML is non-standard and contains multiple attributes in a single tag, for example:
<code code="34090-1" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Clinical Pharmacology section" />
And some nodes/elements will contain a shortcut end tag (as seen above) while others will have a full traditional end tag.
No wonder healthcare is so complicated!
So how do I get the contents of the tag and iterate over the subsections to do the same?