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

MonitorDetailsModelNamedElementType

MonitorDetailsModelNamedElementType is the base type of MonitorDetailsModelType. It restricts the ID attribute to a fixed value of MDM that is required for path references.

Elements

Name Min-max Description
description 0 - 1 A description of the element.

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 value of the ID, which is fixed as MDM.

Restrictions

None

Schema definition

<xsd:complexType name="MonitorDetailsModelNamedElementType" >
    <xsd:complexContent>
        <xsd:restriction base="mon:NamedElementType">
            <xsd:choice minOccurs="0" maxOccurs="1">
                <xsd:element name="description" type="xsd:string"/>
            </xsd:choice>
            <!-- 'id' attribute is required to be 'fixed' because it is 
                  needed for path references, but has no semantic meaning -->
            <xsd:attribute name="id" type="xsd:NCName" use="required" 
                  fixed="MDM"/>
        </xsd:restriction>
    </xsd:complexContent>
</xsd:complexType>

XML schema (monitor.xsd) description