2

我们正在为以 Compositions 表达的临床文档开发通用浏览器。

我们正在浏览合成的不同部分,以便在我们的门户和移动应用程序小部件中显示它们。

我们对规范中当前组合示例的疑问是如何知道 Composition.section[].content ResourceReference 的正确资源类型。例如,在

<section>
    <title value="History of present illness"/>
    <code>
      <coding>
        <system value="http://loinc.org"/>
        <code value="10164-2"/>
      </coding>
    </code>
    <content>
      <reference value="**MedicationAdministration**/example"/>
    </content>
  </section>

但是在像这样的另一个示例中,使用 URI 或 URN,我们不知道如何知道资源类型:

<section>
          <title value="Reason for admission"/>
          <code>
            <coding>
              <system value="http://loinc.org"/>
              <code value="46241-6"/>
            </coding>
          </code>
          <content>
            <reference value="urn:guid:d0dd51d3-3ab2-4c84-b697-a630c3e40e7a"/>
          </content>
        </section>
        <section>
          <title value="Medications on Discharge"/>
          <code>
            <coding>
              <system value="http://loinc.org"/>
              <code value="10183-2"/>
            </coding>
          </code>
          <content>
            <reference value="urn:guid:673f8db5-0ffd-4395-9657-6da00420bbc1"/>
          </content>
        </section>
        <section>
          <title value="Known allergies"/>
          <code>
            <coding>
              <system value="http://loinc.org"/>
              <code value="48765-2"/>
            </coding>
          </code>
          <content>
            <reference value="urn:guid:68f86194-e6e1-4f65-b64a-5314256f8d7b"/>
          </content>
        </section>

对于如何了解这些 URI/URN 资源引用的资源类型和查询资源的任何帮助,我将不胜感激。

提前致谢 问候

4

2 回答 2

0

您的第二个示例无效。希望这不在 DSTU 中,而是您编写的示例。

section/content/reference应该包含对资源的引用。这将是一个绝对或相对 URL;不是 URN。类似于 [baseUrl]/[ResourceType]/xxx 或 [ResourceType]/xxx。URN 从不用作参考。

您的应用程序应该只对资源引用进行 GET,然后根据返回的资源类型相应地进行调度。

资源之间的引用有更多细节。

BTW:urn:guid无效,应该是urn:uuid.

于 2014-05-17T10:04:42.457 回答
0

UUID 只能在包内的资源引用中使用,因此您会自动拥有资源的副本并可以查找它是什么类型。这确实意味着您可能必须在上下文节点之外导航。这是否有原因导致您的处理出现问题?

于 2014-05-13T19:16:17.837 回答