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

EndNamedElementType

EndNamedElementType is the base type of EndValueNamedElementType. It restricts the ID attribute for end range values to a fixed ID of endValue that is required for referencing the end of a range.

Elements

Name Min-max Description
description 0 - 1 A description of the element, which is inherited from NamedElementType.

Attributes

Name Required or optional Type Description
id Required String The value of the ID, which is fixed as endValue.

Restrictions

None

Schema definition

<xsd:complexType name="EndNamedElementType" >
    <xsd:complexContent>
        <xsd:restriction base="mon:NamedElementType">
            <xsd:choice minOccurs="0" maxOccurs="1">
                <xsd:element name="description" type="xsd:string"/>
            </xsd:choice>
            <!-- The '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="endValue"/>
        </xsd:restriction>
    </xsd:complexContent>
</xsd:complexType>

XML schema (monitor.xsd) description