attribute-usage-features

Available in: SysML

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

(Note: currently only checks owned features.)

Specification

All features of an AttributeUsage must be non-composite.

Example

attribute a {
    part p; // error
}

Add ref:

attribute a {
    ref part p; // ok
}