<xs:simpleType name="EncounterStartType">
<xs:annotation>
<xs:documentation>
- EncounterStartType is
- 1 = Elective, i.e., an Encounter is scheduled in advance
- 2 = Emergency
- 3 = Transfer, i.e., primarily inter-hospital transfers, not between wards within a hospital
- 4 = Live birth
- 5 = Still birth
- 6 = Dead On Arrival
- 7 = Continuing Encounter
- Example 1: An urgent referral from an outpatient clinic to the cardiology ward, i.e., not scheduled, would be considered as EncounterStartType 2 = Emergency, and EncounterType would be 3 = Inpatient bed + No emergency room
- Example 2: A patient is referred to a consultant, by her general practitioner, and an appointment is scheduled for two weeks later. This outpatient appointment has EncounterStartType 1 = Elective.
- Restrictions: Only values allowed are
- 1 = Elective
- 2 = Emergency
- 3 = Transfer
- 4 = Live birth
- 5 = Still birth
- 6 = Dead On Arrival
- 7 = Continuing Encounter.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer">
<xs:enumeration value="1" />
<xs:enumeration value="2" />
<xs:enumeration value="3" />
<xs:enumeration value="4" />
<xs:enumeration value="5" />
<xs:enumeration value="6" />
<xs:enumeration value="7" />
</xs:restriction>
</xs:simpleType>
|