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
} SE_Address;


Field Notes

delivery_point_count

This specifies the number of entries in delivery_point.

delivery_point

Each entry in this array specifies an address line for the location, as described in ISO 11180, annex A.

city

This specifies the city of the location.

administrative_area

This specifies the state, province of the location.

postal_code

This specifies the ZIP or other postal code.

country

This specifies the country of the physical address, using the appropriate 3-character country code from ISO 3166.

email_address_count

This specifies the number of entries in email_address.

email_address

Each entry in this array specifies the address of an electronic mailbox of the responsible organization or individual being described.




Next: SE_API.


Return to: Top of this Page, Type Index