2.2.5.5 t:DayOfWeekType Simple Type
The DayOfWeekType simple type specifies days of the week that are used in item recurrence patterns. The DayOfWeekType simple type extends the xs:string data type ([XMLSCHEMA2] section 3.2.1).
-
<xs:simpleType name="DayOfWeekType"> <xs:restriction base="xs:string"> <xs:enumeration value="Day"/> <xs:enumeration value="Friday"/> <xs:enumeration value="Monday"/> <xs:enumeration value="Saturday"/> <xs:enumeration value="Sunday"/> <xs:enumeration value="Thursday"/> <xs:enumeration value="Tuesday"/> <xs:enumeration value="Wednesday"/> <xs:enumeration value="Weekday"/> <xs:enumeration value="WeekendDay"/> </xs:restriction> </xs:simpleType>
The values that are defined by the DayOfWeekType simple type are listed in the following table.
Value |
Meaning |
---|---|
Day |
Identifies every day as part of the recurrence pattern. This value MUST NOT be used in the t:TimeChangePatternTypes (section 2.2.7.3) complex type. |
Friday |
Identifies Fridays as part of the recurrence pattern. |
Monday |
Identifies Mondays as part of the recurrence pattern. |
Saturday |
Identifies Saturdays as part of the recurrence pattern. |
Sunday |
Identifies Sundays as part of the recurrence pattern. |
Thursday |
Identifies Thursdays as part of the recurrence pattern. |
Tuesday |
Identifies Tuesdays as part of the recurrence pattern. |
Wednesday |
Identifies Wednesdays as part of the recurrence pattern. |
Weekday |
Identifies weekdays as part of the recurrence pattern. This value MUST NOT be used in the t:TimeChangePatternTypes (section 2.2.7.3) complex type. |
WeekendDay |
Identifies weekend days as part of the recurrence pattern. This value MUST NOT be used in the t:TimeChangePatternTypes (section 2.2.7.3) complex type. |