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
EventModelNamedElementType
EventModelNamedElementType is the base type of EventModelType. It restricts theID attribute to a fixed value of EM 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 id Required String The value of the ID, which is fixed as EM. - Restrictions
- None
- Schema definition
<xsd:complexType name="EventModelNamedElementType" > <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="EM"/> </xsd:restriction> </xsd:complexContent> </xsd:complexType>