VisualModelNamedElementType

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