POOR_IN2000901UV.xsd文件内容
时间: 2023-12-04 12:05:07 浏览: 60
web-app_2_4.xsd
POOR_IN2000901UV.xsd文件内容比较复杂,包含了POOR_IN2000901UV消息类型的各个元素和属性,以及其他HL7 V3消息类型中使用的一些公共元素和数据类型。以下是该文件的主要内容:
1. 命名空间和导入声明
```
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="urn:hl7-org:v3"
xmlns:mif="urn:hl7-org:v3/mif"
xmlns:its="http://www.hl7.org/schemas/HL7ITS-R1"
xmlns:uv="urn:hl7-org:uv:mi"
targetNamespace="urn:hl7-org:uv:poor_in2000901uv"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
<xs:import namespace="urn:hl7-org:v3" schemaLocation="..."/>
<xs:import namespace="urn:hl7-org:v3/mif" schemaLocation="..."/>
<xs:import namespace="http://www.hl7.org/schemas/HL7ITS-R1" schemaLocation="..."/>
<xs:import namespace="urn:hl7-org:v3/uv" schemaLocation="..."/>
```
2. 消息头和消息体定义
```
<xs:element name="POOR_IN2000901UV" type="UV_Poor_IN2000901UV"/>
<xs:complexType name="UV_Poor_IN2000901UV">
<xs:sequence>
<xs:element name="id" type="II" minOccurs="0"/>
<xs:element name="creationTime" type="TS" minOccurs="0"/>
<xs:element name="securityText" type="ST" minOccurs="0"/>
<xs:element name="versionCode" type="CS" minOccurs="0"/>
<xs:element name="interactionId" type="II"/>
<xs:element name="processingCode" type="CS" minOccurs="0"/>
<xs:element name="processingModeCode" type="CS" minOccurs="0"/>
<xs:element name="acceptAckCode" type="CS" minOccurs="0"/>
<xs:element name="receiver" type="MCCI_MT000100UV01Receiver" maxOccurs="unbounded"/>
<xs:element name="sender" type="MCCI_MT000100UV01Sender"/>
<xs:element name="controlActProcess" type="UV_Poor_IN2000901UV.ControlActProcess"/>
</xs:sequence>
</xs:complexType>
```
3. 公共元素和数据类型定义
```
<xs:element name="addr" type="AD"/>
<xs:element name="code" type="CE"/>
<xs:element name="effectiveTime" type="IVL_TS"/>
<xs:element name="name" type="EN"/>
<xs:element name="telecom" type="TEL"/>
<xs:element name="value" type="ANY"/>
<xs:complexType name="AD">
...
</xs:complexType>
<xs:complexType name="CE">
...
</xs:complexType>
<xs:complexType name="EN">
...
</xs:complexType>
<xs:complexType name="IVL_TS">
...
</xs:complexType>
<xs:complexType name="TEL">
...
</xs:complexType>
```
以上是POOR_IN2000901UV.xsd文件的部分内容,它定义了POOR_IN2000901UV消息类型的各个元素和属性,以及其他HL7 V3消息类型中使用的一些公共元素和数据类型。
阅读全文