XML FOR DOMINO


schedule element
Represents a schedule that triggers the execution of agent code.

Containment Hierarchy

Contained by: <trigger>

Contains: <starttime>, <endtime> , <startdate>, <enddate>

Syntax

<!ELEMENT schedule ( starttime?, endtime?, startdate?, enddate? )>

Content

starttime?, endtime?, startdate?, enddate?


Attributes

<!ATTLIST schedule
type(%schedule.types;)#REQUIRED
hours%integer;#IMPLIED
minutes%integer;#IMPLIED
onweekends%boolean;"true"
runlocation(%schedule.runlocations;)#IMPLIED
runserver%string;#IMPLIED
dayofweek(%day.names;)#IMPLIED
dateinmonth%integer;#IMPLIED
>

dateinmonth


dayofweek
hours
minutes
onweekends
runlocation
runserver
type
Defined entities for <schedule> element

The %day.names; entity lists the days of the week that you can specify when scheduling an agent to run once a week.

Syntax:

<!ENTITY % day.names "sunday | monday | tuesday | wednesday | thursday | friday | saturday ">

The %schedule.types; entity lists the choices for units of time that trigger a scheduled agent.

Syntax:

<!ENTITY % schedule.types "automatic | byminutes | daily | weekly | monthly | never ">

automatic


byminutes
The %schedule.runlocations; entity lists the choices for the host system on which an agent runs.

Syntax:

<!ENTITY % schedule.runlocations "local | any | choose | server ">

any


choose
local
server
See Also