IBM BPM, V8.0.1, All platforms > Authoring services in Integration Designer > Developing monitor models > What are monitor models? > Monitor XML schema definition (monitor.xsd) > XML schema (monitor.xsd) description

TimeIntervalsType

TimeIntervalsType defines a duration based on a unit of time for use with triggers that fire at regularly scheduled time intervals.

Elements

None

Attributes

Name Required or optional Type Description
minutes Optional nonNegativeInteger The number of minutes in the duration. The default value is 0.
hours Optional nonNegativeInteger The number of hours in the duration. The default value is 0.
days Optional nonNegativeInteger The number of days in the duration. The default value is 0.

Restrictions

The interval must be 1 minute or more.

Schema definition

<xsd:complexType name="TimeIntervalsType" >
    <xsd:attribute name="minutes" type="xsd:nonNegativeInteger"
          default="0" />
    <xsd:attribute name="hours" type="xsd:nonNegativeInteger" 
          default="0" />
    <xsd:attribute name="days" type="xsd:nonNegativeInteger"
          default="0" />
</xsd:complexType>

XML schema (monitor.xsd) description