ENTITY address
(* SCHEMA STRUCTURAL_FRAME_SCHEMA; *)
(* Modified for LPM/6 *)
ENTITY address
SUPERTYPE OF (personal_address ANDOR organizational_address);
 	internal_location : OPTIONAL label;
 	street_number : OPTIONAL label;
 	street : OPTIONAL label;
 	postal_box : OPTIONAL label;
 	town : OPTIONAL label;
 	region : OPTIONAL label;
 	postal_code : OPTIONAL label;
 	country : OPTIONAL label;
 	facsimile_number : OPTIONAL label;
 	telephone_number : OPTIONAL label;
 	electronic_mail_address : OPTIONAL label;
 	telex_number : OPTIONAL label;
DERIVE
	name : label := get_name_value (SELF);
	url : identifier := get_id_value (SELF);
WHERE
 	WRA1 : EXISTS (internal_location) OR
 		EXISTS (street_number) OR
 		EXISTS (postal_box) OR
 		EXISTS (town) OR
 		EXISTS (region) OR
 		EXISTS (postal_code) OR
 		EXISTS (country) OR
 		EXISTS (facsimile_number) OR
 		EXISTS (telephone_number) OR
 		EXISTS (electronic_mail_address) OR
 		EXISTS (telex_number);
END_ENTITY;  (*  STEP Part 41 2nd edition *)
Explicit Attributes
Entity address has the following local and inherited explicit attributes:
| | Attribute | Type | Defined By | 
|---|
 | internal_location | label (STRING) | address |  | street_number | label (STRING) | address |  | street | label (STRING) | address |  | postal_box | label (STRING) | address |  | town | label (STRING) | address |  | region | label (STRING) | address |  | postal_code | label (STRING) | address |  | country | label (STRING) | address |  | facsimile_number | label (STRING) | address |  | telephone_number | label (STRING) | address |  | electronic_mail_address | label (STRING) | address |  | telex_number | label (STRING) | address | 
 | 
Derived Attributes
Entity address has the following local and inherited derived attributes:
| | Attribute | Type | Defined By | 
|---|
 | name | label (STRING) | address |  | url | identifier (STRING) | address | 
 | 
Inverse Attributes
    No Inverse AttributesSupertypes
    No supertypesSubtypes
Entity address has the following subtypes:
    organizational_address*
    personal_address*
* - Immediate Subtypes
Referenced By
Entity address 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