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

EventModelType

EventModelType groups the events used in the monitor model.

Elements

Name Min-max Description
import 0 - n The location of the external source file that contains the event definitions.

Attributes

Name Required or optional Type Description
displayName Optional String The name to display in the Monitor Model editor and Business Monitor dashboards. If a displayName is not provided, the ID attribute is used.
id Required String The unique identifier, which must be set to EM.

Restrictions

The import attribute must specify a file that exists. Its path is either relative to the MM file or starts with a forward slash ("/") and is, therefore, relative to the workspace. The first segment is the project name in which the event definition resides.

Schema definition

<xsd:complexType name="EventModelType" >
    <xsd:complexContent>
        <xsd:extension base="mon:EventModelNamedElementType">
            <xsd:sequence>
                <xsd:element name="import" type="mon:ImportType" 
                      minOccurs="0" maxOccurs="unbounded" />
            </xsd:sequence>
        </xsd:extension>
    </xsd:complexContent>
</xsd:complexType>

XML schema (monitor.xsd) description