私たちは、コンポジションで表現された臨床文書用の汎用ブラウザを開発しています。
ポータルおよびモバイル アプリ ウィジェットに表示するために、コンポジションのさまざまなセクションを参照しています。
仕様内の現在のコンポジション サンプルに対する疑問は、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 リソース参照とリソースのクエリのリソース タイプを知る方法について、助けていただければ幸いです。
よろしくお願いします