ENTITY person_and_organization
(* SCHEMA person_organization_schema; *)
ENTITY person_and_organization;
the_person : person;
the_organization : organization;
DERIVE
name : label := get_name_value(SELF);
description : text := get_description_value(SELF);
WHERE
WR1: SIZEOF(USEDIN(SELF, 'BASIC_ATTRIBUTE_SCHEMA.' + 'NAME_ATTRIBUTE.NAMED_ITEM')) <= 1;
WR2: SIZEOF(USEDIN(SELF, 'BASIC_ATTRIBUTE_SCHEMA.' + 'DESCRIPTION_ATTRIBUTE.DESCRIBED_ITEM')) <= 1;
END_ENTITY;
Explicit Attributes
Entity person_and_organization has the following local and inherited explicit attributes:
| Attribute | Type | Defined By |
|---|
| the_person | person (ENTITY) | person_and_organization |
| the_organization | organization (ENTITY) | person_and_organization |
|
Derived Attributes
Entity person_and_organization has the following local and inherited derived attributes:
| Attribute | Type | Defined By |
|---|
| name | label (STRING) | person_and_organization |
| description | text (STRING) | person_and_organization |
|
Inverse Attributes
No Inverse AttributesSupertypes
No supertypesSubtypes
No subtypesReferenced By
Entity person_and_organization and its supertypes are referenced by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:13:58-04:00