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
DimensionalModelNamedElementType
DimensionalModelNamedElementType is the base type of DimensionalModelType. It restricts the ID attribute to a fixed value of DMM 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 DMM. - Restrictions
- None
- Schema definition
<xsd:complexType name="DimensionalModelNamedElementType" > <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="DMM"/> </xsd:restriction> </xsd:complexContent> </xsd:complexType>