|
在POCD_MT000040.xsd中,给出了一下模式代码:
<xs:complexType name="POCD_MT000040.ClinicalDocument">
- <xs:sequence>
//文档头
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" />
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
<xs:element name="id" type="II" />
<xs:element name="code" type="CE" />
...
相应的xml文档例子如下所示:
<!--
********************************************************
CDA Header
********************************************************
-->
<id extension="c266" root="2.16.840.1.113883.3.933" />
<code code="11488-4" codeSystem="2.16.840.1.113883.6.1" displayName="Consultation note" />
...
其中对于元素code,在模式中没有定义相应的属性,其结构是在哪里可以查到呢?如code有属性code,codeSystem,displayName,以及id元素有属性extension和root? |
|