<xsd:simpleType name="DayOfWeekExtEnum">
<xsd:annotation>
<xsd:documentation>A day of the seven-day week, plus codes for weekends and weekdays.</xsd:documentation>
</xsd:annotation>
<xsd:union memberTypes="DayOfWeekEnum">
<xsd:simpleType>
<xsd:restriction base="xsd:token">
<xsd:enumeration value="WD">
<xsd:annotation>
<xsd:documentation source="http://www.FpML.org" xml:lang="en">Weekdays</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="WN">
<xsd:annotation>
<xsd:documentation source="http://www.FpML.org" xml:lang="en">Weekends</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
</xsd:union>
</xsd:simpleType>
|