<examples>
	<!-- 
		This schedule provides intervals of 30 minutes 
		from 11pm until 1am every day. 
	-->
	<time from="22:00" to="02:00">
		<interval interval="00:30"/>
	</time>
	<!-- 
		This schedule provides 5 intervals of 15 minutes.
	-->
	<count count="5">
		<interval interval="00:15"/>
	</count>
	<!-- 
		The working week.

		This schedule returns an interval which is every 
		day, Monday to Friday, 9am to 5pm.
	-->
	<dayofweek from="MON" to="FRI">
		<time from="09:00" to="17:00"/>
	</dayofweek>
	<!-- 
		Holidays.
					
		The same as the above with holidays. 
	-->
	<broken>
		<schedule>
			<dayofweek from="MON" to="FRI">
				<time from="09:00" to="17:00"/>
			</dayofweek>
		</schedule>
		<breaks>
			<date on="27-DEC-04"/>
			<date on="28-DEC-04"/>
			<date on="03-JAN-05"/>
			<date on="25-MAR-05"/>
			<date on="28-MAR-05"/>
			<date on="02-MAY-05"/>
			<date on="30-MAY-05"/>
			<date on="29-AUG-05"/>
			<date on="26-DEC-05"/>
			<date on="27-DEC-05"/>
		</breaks>
	</broken>
	<!-- 
		The last working day of the month 
	-->
	<dayofmonth from="-3" to="0">
		<last>
			<broken>
				<schedule>
					<daily/>
				</schedule>
				<breaks>
					<dayofweek on="SAT"/>
					<dayofweek on="SUN"/>
				</breaks>
			</broken>
		</last>
	</dayofmonth>
</examples>