ENTITY person
(* SCHEMA STRUCTURAL_FRAME_SCHEMA; *)
ENTITY person;
id : identifier;
last_name : OPTIONAL label;
first_name : OPTIONAL label;
middle_names : OPTIONAL LIST [1:?] OF label;
prefix_titles : OPTIONAL LIST [1:?] OF label;
suffix_titles : OPTIONAL LIST [1:?] OF label;
UNIQUE
URP1 : id;
WHERE
WRP10 : EXISTS (last_name) OR EXISTS (first_name);
END_ENTITY; (* based on STEP Part 41 2nd edition (UR added) *)
Explicit Attributes
Entity person has the following local and inherited explicit attributes:
Attribute | Type | Defined By |
---|
id | identifier (STRING) | person |
last_name | label (STRING) | person |
first_name | label (STRING) | person |
middle_names | LIST OF label (STRING) | person |
prefix_titles | LIST OF label (STRING) | person |
suffix_titles | LIST OF label (STRING) | person |
|
Derived Attributes
No derived attributes
Inverse Attributes
No Inverse AttributesSupertypes
No supertypesSubtypes
No subtypesReferenced By
Entity person and its supertypes are referenced by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2023-03-25T00:11:38-04:00