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

ReportType

ReportType identifies the type of chart to use when you are authoring IBM Cognos Business Intelligence reports.

Elements

None

Attribute

Name Required or optional Type Description
measureID Required String The ID of the measure used to produce the report.
dimensionID Required String The ID of the dimension used to produce the report.
chartType Optional ChartType The type of chart (bar, pie, line, area, scatter, or gauge) to be used in the report.

Restrictions

None

Schema definition

<xsd:complexType name="ReportType" >
    <xsd:complexContent>
        <xsd:extension base="mon:NamedElementType">
            <xsd:attribute name="measureId" type="xsd:string" use="required"/>
            <xsd:attribute name="dimensionId" type="xsd:string" use="required"/>
            <xsd:attribute name="chartType" type="mon:ChartType" default="bar"/>
        </xsd:extension>
    </xsd:complexContent>
</xsd:complexType>

XML schema (monitor.xsd) description