VCAddress type
The VCAddress structured type holds vCard address data.
Syntax
PUBLIC TYPE VCAddress RECORD
    PostOfficeBox,
    ExtendedAddress, --  apartment or suite number
    Street,
    City,
    State,
    ZIP,
    Country STRING
    -- , CountryCode STRING -- X-ABADR:de
  END RECORDUsage
This type defines a record structure to hold vCard address information. It is used for values returned by the scan_address() function.
Example
IMPORT FGL VCard
MAIN
  DEFINE a VCard.VCAddress
  LET a.Street = "Sunset Bld"
END MAIN