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

RangeType

RangeType contains the individual range for the enclosing key performance indicator (KPI). This element defines the name, ID, description, start value, end value, and color for the range.

Elements

Name Min-max Description
startValue 1 - 1 The start value for the range. Depending on the value of the rangeType attribute in the enclosing RangesType definition, this is interpreted as a literal value (if the rangetype is actualValue) or as a percentage of the target value (if the rangeType is percentage).
endValue 1 - 1 The end value for the range, interpreted the same as for startValue.

Attributes

Name Required or optional Type Description
color Optional KPIRangeColorType The color to display when the KPI is in this range.

Restrictions

  • The range must not be 0.

  • The range end must be larger than the range start.

  • If the range is in a KPI of type Duration, the range start and end cannot be negative.

Schema definition

<xsd:complexType name="RangeType">
    <xsd:complexContent>
        <xsd:extension base="mon:NamedElementType">
            <xsd:sequence>
                <xsd:element name="startValue" 
                      type="mon:StartValueNamedElementType" 
                      minOccurs="1" maxOccurs="1"/>
                <xsd:element name="endValue" 
                      type="mon:EndValueNamedElementType" 
                      minOccurs="1" maxOccurs="1"/>
            </xsd:sequence>
            </xsd:attribute name="color" type="mon:KPIRangeColorType" use="optional">
        </xsd:extension>
    </xsd:complexContent>
</xsd:complexType>

XML schema (monitor.xsd) description