attribute-definition-features

Available in: SysML

This checks that all attribute definition features are referential (non-composite).

(Note: currently only checks owned features.)

Specification

All features of an AttributeDefinition must be non-composite.

Example

attribute def A {
    part p; // error
}

Add ref:

attribute def A {
    ref part p; // ok
}