2.2.5.4 t:DayOfWeekIndexType Simple Type

The DayOfWeekIndexType simple type specifies which week in a month is used in a relative recurrence pattern. The DayOfWeekIndexType simple type extends the xs:string data type ([XMLSCHEMA2] section 3.2.1).

 <xs:simpleType name="DayOfWeekIndexType">
     <xs:restriction base="xs:string">
         <xs:enumeration value="First"/>
         <xs:enumeration value="Fourth"/>
         <xs:enumeration value="Last"/>
         <xs:enumeration value="Second"/>
         <xs:enumeration value="Third"/>
     </xs:restriction>
 </xs:simpleType>
  

The values that are defined by the DayOfWeekIndexType simple type are listed in the following table.

Value

Meaning

First

Specifies that the first week in the month is used in the recurrence pattern.

Second

Specifies that the second week in the month is used in the recurrence pattern.

Third

Specifies that the third week in the month is used in the recurrence pattern.

Fourth

Specifies that the fourth week in the month is used in the recurrence pattern.

Last

Specifies that the last week in the month is used in the recurrence pattern.