Skip to content

Instantly share code, notes, and snippets.

@patcon
Last active May 17, 2016 16:09
Show Gist options
  • Save patcon/27d1f289509dace307cf to your computer and use it in GitHub Desktop.
Save patcon/27d1f289509dace307cf to your computer and use it in GitHub Desktop.
City of Toronto Organizational Hierarchy
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': {},
},
},
},
}
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