The SEDRIS Data Representation Model
APPENDIX C - Types SE_Address |
---|
/* * STRUCT: SE_Address * * This data type specifies the elements of address metadata. * The country_code is specified as described for the * SE_Locale data type. */typedef struct
SE_Short_Integer_Positive | delivery_point_count; | 1 | |
SE_String | *delivery_point; | 2 | |
SE_String | city; | 3 | |
SE_String | administrative_area; | 4 | |
SE_String | postal_code; | 5 | |
SE_Character | country[3]; | 6 | |
SE_Short_Integer_Positive | email_address_count; | 7 | |
SE_String | *email_address; | 8 |
This specifies the number of entries in delivery_point.
Each entry in this array specifies an address line for the location, as described in ISO 11180, annex A.
This specifies the city of the location.
This specifies the state, province of the location.
This specifies the ZIP or other postal code.
This specifies the country of the physical address, using the appropriate 3-character country code from ISO 3166.
This specifies the number of entries in email_address.
Each entry in this array specifies the address of an electronic mailbox of the responsible organization or individual being described.
|