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

AggregationType

AggregationType is an enumeration used to restrict the functions that can be applied to a measure or KPI.

These values are used in the MeasureType and KPIAggregatedDefinitionType elements.

Elements

None

Attributes

None

Restrictions

The values countdistinct, median, and variance are available only for cube measures.

Schema definition

<xsd:simpleType name="AggregationType">
    <xsd:restriction base="xsd:string">
        <xsd:enumeration value="min"/>
        <xsd:enumeration value="max"/>
        <xsd:enumeration value="sum"/>
        <xsd:enumeration value="count"/>
        <xsd:enumeration value="avg"/>
        <xsd:enumeration value="stddev"/>
        <xsd:enumeration value="countdistinct"/>
        <xsd:enumeration value="median"/>
        <xsd:enumeration value="variance"/>
    </xsd:restriction>
</xsd:simpleType>

XML schema (monitor.xsd) description


Related reference:
Aggregation functions