Last active
May 17, 2016 16:09
-
-
Save patcon/27d1f289509dace307cf to your computer and use it in GitHub Desktop.
City of Toronto Organizational Hierarchy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ORGANIZATION_HIERARCHY = { | |
'name': { | |
'City Council': { | |
'name': { | |
'Audit Committee': {}, | |
'Board of Health': { | |
'name': { | |
'^Board of Health .+' | |
} | |
}, | |
'Civic Appointments Committee': { | |
'name': { | |
'^Interview Subcommittee .+': {}, | |
} | |
}, | |
'Striking Committee': {}, | |
'Executive Committee': { | |
'name': { | |
'Affordable Housing Committee': {}, | |
'Budget Committee': { | |
'name': { | |
'^Budget Subcommittee .+': {}, | |
} | |
}, | |
'Employee and Labour Relations Committee': {}, | |
}, | |
}, | |
}, | |
'classification': { | |
'community-council': {}, | |
'standing-policy-committee': {}, | |
'agency': {}, | |
'community-agency': {}, | |
'adjudicative-body': {}, | |
}, | |
}, | |
}, | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ORGANIZATION_HIERARCHY = { | |
'name': [ | |
'City Council': { | |
'name': [ | |
'Audit Committee', | |
'Board of Health', | |
'Civic Appointments Committee': { | |
'name': [ | |
'^Interview Subcommittee', | |
] | |
}, | |
'Striking Committee', | |
{ | |
'Executive Committee': { | |
'name': [ | |
'Affordable Housing Committee', | |
'Budget Committee': { | |
'name': [ | |
'^Budget Subcommittee', | |
] | |
}, | |
'Employee and Labour Relations Committee', | |
], | |
}, | |
}, | |
], | |
'classification': [ | |
'community-council', | |
'standing-policy-committee', | |
'agency', | |
'community-agency', | |
'adjudicative-body', | |
], | |
}, | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment