dayOfMonthType Simple Type

Defines the possible values for specifying a day of the month.

<xs:simpleType name="dayOfMonthType">
    <xs:restriction
        base="string"
    >
        <xs:pattern
            value="[1-9]|[1-2][0-9]|3[0-1]|Last"
         />
    </xs:restriction>
</xs:simpleType>

Patterns

The dayOfMonthType simple type is a string that is restricted by the following pattern:

  • [1-9]|[1-2][0-9]|3[0-1]|Last

    Specifies the 1st through the 31st day of the month, or always the last day of the month.

Requirements

Requirement Value
Minimum supported client
Windows Vista [desktop apps only]
Minimum supported server
Windows Server 2008 [desktop apps only]

See also

Task Scheduler Schema Simple Types

Task Scheduler