owns statement
The statement <LABEL> owns <ATTRIBUTE LABEL> is used to identify the <LABEL> type as an owner of <ATTRIBUTE LABEL>.
Schema for the following examples
#!test[schema, commit]
define
entity user;
attribute email value string;
Defining ownership
The owns keyword can be used to define a type as an owner of an attribute type.
#!test[schema]
define user owns email;