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
featuresof anAttributeDefinitionmust be non-composite.
Example
attribute def A {
part p; // error
}
Add ref:
attribute def A {
ref part p; // ok
}