<xs:simpleType name="DayListType">
<xs:annotation>
<xs:documentation>Days can be specified either through a collection of codes (Mo, Tu...) or via a string of numbers corresponding to days. In case of a unique day or daily, DayCodeType should be rather used. For a selected number of days, DayListCode can be used as well as a collection of DayCodeType 1 = Mon, 7 = Sun. For instance, 127=Mon, Tue and Sun</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[1-7]{1,7}"/>
</xs:restriction>
</xs:simpleType> |