<xs:simpleType name="CourseDeliveryMethodEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="AUDIO">
<xs:annotation>
<xs:documentation>
an audio-based course
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="CDROM">
<xs:annotation>
<xs:documentation>
a CD computer interactive course
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="CLASS">
<xs:annotation>
<xs:documentation>
a live classroom course
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ONLINE">
<xs:annotation>
<xs:documentation>
an Internet course course
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="VIDCON">
<xs:annotation>
<xs:documentation>
a live teleconference course
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="VIDEO">
<xs:annotation>
<xs:documentation>
a prerecorded videotape course
</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
|