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

NamedElementType

NamedElementType is an abstract base complex type that holds the ID and displayName fields.

Elements

None

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 of the element.

Restrictions

  • Whenever an ID is used in an instance document, it must follow the uniqueness restrictions as described in ID uniqueness constraints.

  • The ID must exist and must not be empty.

  • The ID must be less than 128 characters long.

  • The ID path must be unique (that is, there can be no duplicate IDs at the same level).

  • The ID path must be less than 1024 characters long.

Schema definition

<xsd:complexType name="NamedElementType" abstract="true" >
    <xsd:complexContent>
        <xsd:extension base="mon:DescribableElementType">
            <xsd:attribute name="id" type="xsd:NCName" use="required"/>
            <xsd:attribute name="displayName" type="mon:NameType" 
                  use="optional"/>
        </xsd:extension>
    </xsd:complexContent>
</xsd:complexType>

XML schema (monitor.xsd) description