The relationshipEndDef represents an end of the relationship. The end of the relationship is defined by a type, an attribute name, cardinality and whether it is the container end of the relationship.
| name | data type | constraints | description |
|---|---|---|---|
| cardinality | Cardinality | the cardinality | |
| description | string | ||
| isContainer | boolean | required | |
| isLegacyAttribute | boolean | required | |
| name | string | ||
| type | string |
Example
{
"cardinality" : "SINGLE",
"description" : "...",
"isContainer" : true,
"isLegacyAttribute" : true,
"name" : "...",
"type" : "..."
}