1---------------------------------------------------------------------
2-- Core types to access the PAGC address standardizer
3-- Author: Stephen Woodbridge <woodbri@imaptools.com>
4---------------------------------------------------------------------
5
6CREATE TYPE stdaddr AS (
7    building text,
8    house_num text,
9    predir text,
10    qual text,
11    pretype text,
12    name text,
13    suftype text,
14    sufdir text,
15    ruralroute text,
16    extra text,
17    city text,
18    state text,
19    country text,
20    postcode text,
21    box text,
22    unit text
23);
24