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
EventPartType
EventPartType is used to specify the structure of a part of an event. A single event definition can have different event parts that are defined by different XML schemas. All the event parts, together with the Common Base Event definition if one is provided, describe the structure of the entire event.
- Elements
- None
- Attributes
Name Required or optional Type Description id Required String The identifier for this event part. The ID must be unique according to ID uniqueness constraints. path Required String A path that defines how to find, at run time, the content that the event part describes. type Optional QName A type that defines the structure of the content pointed to by the path. - Restrictions
- None
- Schema definition
<xsd:complexType name="EventPartType"> <xsd:complexContent> <xsd:extension base="mon:NamedElementType"> <xsd:attribute name="path" type="xsd:string" use="required"/> <xsd:attribute name="type" type="xsd:QName" use="optional"/> </xsd:extension> </xsd:complexContent> </xsd:complexType>