@cityssm/mpac-yetf
Version:
Parses the MPAC Year-End Tax File (YETF) into a usable object.
49 lines (48 loc) • 1.54 kB
JavaScript
export const identifierNames = Object.freeze({
M: 'Male',
F: 'Female',
I: 'Individual',
X: 'Corporations, taxable agencies and other non-persons',
G: 'Federal Government including agencies',
P: 'Provincial Government including agencies',
L: 'Local Government and Public Utilities',
E: 'Education, religious or other exempt agencies',
H: 'Ontario Hydro',
C: 'Conservation Authority'
});
export const occupancyStatusNames = Object.freeze({
O: 'Owner or Joint Owner',
T: 'Tenant or Joint Tenant',
S: 'Spouse of owner or spouse of tenant',
B: 'Other residents such as boarders, lodgers, roomers, or children',
V: 'Vacant unit'
});
export const schoolSupportNames = Object.freeze({
P: 'English-Public',
S: 'English-Separate',
B: 'Split',
N: 'No Support',
D: 'Protestant-Separate',
A: 'French-Public',
C: 'French-Separate'
});
export const residencyCodeDescriptions = Object.freeze({
U: 'Individual lives in this unit',
M: 'Individual lives elsewhere in the same municipality',
A: 'Individual lives in another apartment or house on the same property',
N: 'Individual lives in another municipality'
});
export const monthOfBirthNames = Object.freeze({
'01': 'January',
'02': 'February',
'03': 'March',
'04': 'April',
'05': 'May',
'06': 'June',
'07': 'July',
'08': 'August',
'09': 'September',
'10': 'October',
'11': 'November',
'12': 'December'
});