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

DateTimeDimensionFixedPeriodType

DateTimeDimensionFixedPeriodType contains the settings required to specify a fixed period type for a key performance indicator (KPI).

For example, the DateTimeDimensionFixedPeriodType element would be used if the value for the KPI calculation was to be taken from Jan. 1, 2006 to Feb. 5, 2006.

Elements

None

Attributes

Name Required or optional Type Description
startDate Optional Date The start date for the date range. If you specify a start date only, the KPI is calculated beginning at that date and continuing to the current date.
endDate Optional Date The end date for the date range. If you specify an end date only, the KPI is calculated from the time the process is deployed until the end date.
timezone Required String The time zone. The default is your current time zone in the Monitor Model editor.

Restrictions

  • The startDate attribute must be a valid date.

  • The endDate attribute must be a valid date.

  • The startDate must come before the endDate.

Schema definition

<xsd:complexType name="DateTimeDimensionFixedPeriodType">
  <!-- These datetime attributes must be timezoned -->
  <xsd:attribute name="startDate" type="xsd:dateTime" use="optional"/>
  <xsd:attribute name="endDate" type="xsd:dateTime" use="optional"/>
  <xsd:attribute name="timezone" type="xsd:string" use="required"/> 
</xsd:complexType>

XML schema (monitor.xsd) description