Last active
May 10, 2022 23:24
-
-
Save patcon/62533121ac27d3c7873b to your computer and use it in GitHub Desktop.
A parser for the City of Toronto subject thesaurus/taxonomy, helpful for searching tmmis with internal city tags (updated 2021-02-24)
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
import lxml.etree | |
import requests | |
import json | |
URL = 'http://opendata.toronto.ca/clerk/controlled.vocabulary/subject_thesaurus.xml' | |
def subject_tree(): | |
page = requests.get(URL) | |
tree = lxml.etree.fromstring(page.content) | |
return tree | |
def top_level_categories(tree): | |
return tree.xpath('/THESAURUS/CONCEPT/*[self::DESCRIPTOR]/text()[contains(., "(SC)")]') | |
def get_children(tree, category): | |
return tree.xpath('/THESAURUS/CONCEPT[DESCRIPTOR/text()="{}"]/NT/text()'.format(category)) | |
def generate_subtree(tree, term): | |
mytree = {} | |
children = get_children(tree, term) | |
for child in children: | |
mysubtree = {} | |
mysubtree.update({child: generate_subtree(tree, child)}) | |
mytree.update(mysubtree) | |
return mytree | |
tree = subject_tree() | |
taxonomy = {} | |
for cat in top_level_categories(tree): | |
subtax = generate_subtree(tree, cat) | |
taxonomy.update({cat: subtax}) | |
print(json.dumps(taxonomy)) |
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
{ | |
"BUSINESS & INDUSTRY (SC)": { | |
"[activities in business and industry]": { | |
"business registration": {}, | |
"business start-up": {}, | |
"consumer protection": {}, | |
"economic development": { | |
"business incentives": {} | |
}, | |
"economy": {}, | |
"film distribution": {}, | |
"food preparation": {}, | |
"incorporation": {}, | |
"industries": { | |
"aerospace industry": {}, | |
"agriculture": {}, | |
"business services industry": {}, | |
"design cluster": { | |
"fashion industry": {}, | |
"interior design": {} | |
}, | |
"film and television industry": {}, | |
"financial services industry": {}, | |
"food and beverage industry": {}, | |
"gaming industry": {}, | |
"industry clusters": {}, | |
"life sciences sector": {}, | |
"manufacturing industry": {}, | |
"tourism industry": {} | |
}, | |
"international trade": {}, | |
"marketing": { | |
"boulevard marketing": {}, | |
"branding": {}, | |
"market research": { | |
"focus groups": {}, | |
"marketing surveys": {} | |
} | |
}, | |
"sale (action)": { | |
"street vending": {} | |
}, | |
"site selection": {}, | |
"tipping": {} | |
}, | |
"[attributes in business and industry]": { | |
"economic indicators": {}, | |
"economic profiles": {}, | |
"labour costs": {}, | |
"staff discounts": {} | |
}, | |
"[events in business and industry]": { | |
"conventions": {}, | |
"sales (events)": { | |
"special sales": {} | |
} | |
}, | |
"[locations in business and industry]": { | |
"brownfields": {}, | |
"convention centres": {}, | |
"entertainment establishments": { | |
"cabarets": {}, | |
"nightclubs": {} | |
}, | |
"farmer's markets": {}, | |
"farms": {}, | |
"flea markets": {}, | |
"gas stations": {}, | |
"offices": {}, | |
"restaurants": { | |
"boulevard cafes": {} | |
}, | |
"slaughterhouses": {}, | |
"stores": {} | |
}, | |
"[materials in business and industry]": { | |
"packaging": { | |
"plastic bags": {} | |
} | |
}, | |
"[objects in business and industry]": { | |
"food": {}, | |
"products": { | |
"environmentally friendly products": {} | |
}, | |
"video games": {} | |
}, | |
"[organizations in business and industry]": { | |
"business associations": { | |
"boards of trade": {}, | |
"business improvement areas": {} | |
}, | |
"businesses": { | |
"food service establishments": {}, | |
"insurance agencies": {}, | |
"mobile businesses": {}, | |
"personal services settings": {}, | |
"scrap collectors": {}, | |
"small businesses": {}, | |
"stationary businesses": {}, | |
"tour operators": {} | |
}, | |
"corporations": {}, | |
"fashion incubator": {}, | |
"food business incubator": {}, | |
"utilities": { | |
"district energy systems": {}, | |
"electric distribution utilities": {}, | |
"electricity generation utilities": {} | |
}, | |
"vendors": {} | |
}, | |
"[people in business and industry]": { | |
"buskers": { | |
"subway musicians": {} | |
}, | |
"consumers": {}, | |
"customers": {}, | |
"entrepreneurs": {}, | |
"event planner": {}, | |
"funeral directors": {}, | |
"gas technicians": {}, | |
"private investigators": {} | |
}, | |
"[rules in business and industry]": { | |
"business licences": {}, | |
"commercial dog walker permits": {}, | |
"film permits": {}, | |
"photography permits": {}, | |
"road allowance permits": {}, | |
"vendor permits": {} | |
} | |
}, | |
"COMMUNITY & LIFE (SC)": { | |
"[activities in community and life]": { | |
"adoption": {}, | |
"child care": { | |
"child care fee subsidy": {} | |
}, | |
"child custody": {}, | |
"child support": {}, | |
"community development": { | |
"below market rent space": {}, | |
"community improvement plans": {} | |
}, | |
"community outreach": { | |
"poverty reduction consultation": {}, | |
"street needs assessment": {}, | |
"wellbeing measurement": {} | |
}, | |
"old age security": {}, | |
"parenting": {}, | |
"social services": { | |
"aboriginal services": {}, | |
"home care": {}, | |
"housing services": {}, | |
"social assistance": { | |
"disability support": {}, | |
"government subsidized prescription drug benefits": {} | |
} | |
}, | |
"volunteering": {} | |
}, | |
"[attributes in community and life]": { | |
"accessibility": {}, | |
"bed counts": {}, | |
"citizenship": {}, | |
"ethnicity": {}, | |
"human rights": {}, | |
"quality of life": {}, | |
"sex and gender": { | |
"female": {}, | |
"intersex": {}, | |
"male": {}, | |
"transgender": {} | |
}, | |
"sexual orientation": { | |
"heterosexual": {}, | |
"lesbian, gay, bisexual and transgendered": {} | |
}, | |
"social housing turnover": {}, | |
"social problems": { | |
"discrimination": { | |
"racial discrimination": {}, | |
"sexual discrimination": {} | |
}, | |
"harassment": {}, | |
"homelessness": {}, | |
"poverty": {} | |
} | |
}, | |
"[events in community and life]": { | |
"Serious Occurrence": {}, | |
"births": {}, | |
"deaths": {}, | |
"divorce": {}, | |
"funerals": {}, | |
"weddings": {} | |
}, | |
"[locations in community and life]": { | |
"cemeteries": {}, | |
"census areas": {}, | |
"child care facilities": {}, | |
"homeless encampments": {}, | |
"housing": { | |
"[housing by function]": { | |
"affordable housing": { | |
"social housing": {} | |
}, | |
"emergency housing": { | |
"cooling centres": {}, | |
"warming centres": {}, | |
"women's shelters": {} | |
}, | |
"foster homes": {}, | |
"group homes": {}, | |
"long term care homes": {}, | |
"rooming houses": {}, | |
"seniors housing": { | |
"retirement homes": {} | |
}, | |
"supportive housing": {}, | |
"transitional housing": {} | |
}, | |
"[housing by ownership]": { | |
"co-operative housing": {}, | |
"condominium housing": {}, | |
"ownership housing": {}, | |
"rental housing": {} | |
}, | |
"[housing by physical form]": { | |
"apartments": { | |
"bachelor apartments": { | |
"bachelorettes": {} | |
}, | |
"basement apartments": {}, | |
"second suites": {} | |
}, | |
"houses": {}, | |
"townhouses": {} | |
} | |
}, | |
"neighbourhoods": { | |
"priority neighbourhoods": {} | |
}, | |
"private clubs": {} | |
}, | |
"[materials in community and life]": { | |
"census": {} | |
}, | |
"[objects in community and life]": { | |
"awards": {}, | |
"clothing drop boxes": {}, | |
"gifts": {}, | |
"used clothing": {} | |
}, | |
"[organizations in community and life]": { | |
"charities": {}, | |
"children's aid societies": {}, | |
"churches": {}, | |
"community panels": {}, | |
"community partners": {}, | |
"food banks": {}, | |
"housing providers": {}, | |
"non-governmental organizations": {}, | |
"non-profit organizations": { | |
"community associations": {} | |
}, | |
"special interest groups": {} | |
}, | |
"[people in community and life]": { | |
"First Nations": {}, | |
"[persons by age group]": { | |
"adults": {}, | |
"children": {}, | |
"seniors": {}, | |
"youth": { | |
"at risk youth": {} | |
} | |
}, | |
"[persons by state or condition]": { | |
"immigrants": {}, | |
"low income groups": {}, | |
"persons who are homeless": {}, | |
"persons with a disability": { | |
"children and youth with disabilities": {}, | |
"persons with a cognitive disability": {}, | |
"persons with a hearing impairment": {}, | |
"persons with a mental health disability": {}, | |
"persons with a mobility impairment": {}, | |
"persons with a visual impairment": {} | |
}, | |
"refugees": {} | |
}, | |
"caregivers": {}, | |
"families": {}, | |
"households": {}, | |
"members": {}, | |
"outreach workers": { | |
"youth outreach workers": {} | |
}, | |
"persons": { | |
"residents": { | |
"new residents": {} | |
} | |
}, | |
"racial minorities": {}, | |
"social assistance recipients": {}, | |
"social workers": {}, | |
"war veterans": {} | |
}, | |
"[rules in community and life]": { | |
"burial permits": {}, | |
"ethics": {}, | |
"marriage licences": {} | |
} | |
}, | |
"CULTURE (SC)": { | |
"[activities in culture]": { | |
"arts and culture": { | |
"conservation (archival)": {}, | |
"genealogy": {}, | |
"heritage preservation": { | |
"heritage designation": {} | |
}, | |
"history": {}, | |
"music": {}, | |
"performing arts": { | |
"dance": { | |
"ballet": {} | |
}, | |
"drama": {}, | |
"operas": {} | |
}, | |
"visual arts": { | |
"drawing": {}, | |
"painting": {}, | |
"photography": { | |
"aerial photography": {} | |
}, | |
"sculpting": {} | |
} | |
} | |
}, | |
"[attributes in culture]": { | |
"religious diversity": {} | |
}, | |
"[events in culture]": { | |
"concerts": {}, | |
"festivals and special events": { | |
"Canadian National Exhibition": {}, | |
"food festivals": {}, | |
"international events": {}, | |
"parades": {}, | |
"protests": {}, | |
"races": {}, | |
"regattas": {} | |
}, | |
"public holidays": {}, | |
"theatrical performances": {} | |
}, | |
"[locations in culture]": { | |
"archaeological sites": {}, | |
"cultural facilities": { | |
"archives (facilities)": {}, | |
"art galleries (facilities)": {}, | |
"museums (facilities)": {}, | |
"theatres (facilities)": {} | |
}, | |
"heritage conservation districts": {}, | |
"historic sites": { | |
"heritage properties": {} | |
}, | |
"sculpture gardens": {} | |
}, | |
"[materials in culture]": { | |
"archives (records)": {}, | |
"historical collections": {} | |
}, | |
"[objects in culture]": { | |
"artifacts": {}, | |
"exhibits": {}, | |
"fine art": {}, | |
"memorials": { | |
"plaques": {} | |
}, | |
"museum passes": {}, | |
"public art": {} | |
}, | |
"[organizations in culture]": { | |
"archives": {}, | |
"arts and culture organizations": {} | |
}, | |
"[people in culture]": { | |
"faith communities": {}, | |
"performers": {}, | |
"poet laureates": {} | |
}, | |
"[rules in culture]": {} | |
}, | |
"EDUCATION (SC)": { | |
"[activities in education]": { | |
"adult and community education": { | |
"literacy programs": {} | |
}, | |
"early childhood education": {}, | |
"post-secondary education": {}, | |
"primary education": {}, | |
"secondary education": {}, | |
"workplace training and development": { | |
"Smart Serve": {}, | |
"placements": {} | |
} | |
}, | |
"[attributes in education]": {}, | |
"[events in education]": { | |
"classes": {}, | |
"conferences": {}, | |
"graduation": {}, | |
"seminars": {} | |
}, | |
"[locations in education]": { | |
"schools": { | |
"catholic schools": {}, | |
"colleges": {}, | |
"public schools": {}, | |
"universities": {} | |
} | |
}, | |
"[materials in education]": { | |
"books": {}, | |
"scholarships": {} | |
}, | |
"[objects in education]": {}, | |
"[organizations in education]": { | |
"driving schools": {}, | |
"preschools": {}, | |
"school boards": {} | |
}, | |
"[people in education]": { | |
"school board trustees": {}, | |
"students": {}, | |
"teachers": {} | |
}, | |
"[rules in education]": {} | |
}, | |
"EMPLOYMENT & LABOUR (SC)": { | |
"[activities in employment and labour]": { | |
"employee orientation": {}, | |
"employee recognition": {}, | |
"employment affiliation": {}, | |
"employment insurance": {}, | |
"employment opportunities": {}, | |
"employment termination": {}, | |
"garnishments": {}, | |
"hiring process": {}, | |
"labour relations": { | |
"grievances": {}, | |
"labour disruptions": {} | |
}, | |
"mentoring": {}, | |
"police reference checks": {}, | |
"promotion (employment)": {}, | |
"trade certification": {} | |
}, | |
"[attributes in employment and labour]": { | |
"equity": {}, | |
"inequity": {}, | |
"job description": {}, | |
"self employment": {}, | |
"unemployment": {}, | |
"working conditions": {} | |
}, | |
"[events in employment and labour]": { | |
"parental leave": {}, | |
"retirement": {}, | |
"sick leave": {}, | |
"vacations": {} | |
}, | |
"[locations in employment and labour]": { | |
"workplaces": {} | |
}, | |
"[materials in employment and labour]": { | |
"benefits": {}, | |
"labour force": {}, | |
"pensions": {}, | |
"severance pay": {}, | |
"wages": {} | |
}, | |
"[objects in employment and labour]": { | |
"T4 slips": {}, | |
"reference letters": {} | |
}, | |
"[organizations in employment and labour]": { | |
"unions": {} | |
}, | |
"[people in employment and labour]": { | |
"employees": {}, | |
"retirees": {} | |
}, | |
"[rules in employment and labour]": { | |
"labour laws": {}, | |
"minimum wage": {} | |
} | |
}, | |
"ENVIRONMENT (SC)": { | |
"[activities in environment]": { | |
"animal services": { | |
"animal adoption": { | |
"pets": { | |
"cats": {}, | |
"dogs": { | |
"pit bulls": {} | |
}, | |
"rabbits": {} | |
} | |
}, | |
"animal sterilization": {}, | |
"dog obedience classes": {} | |
}, | |
"conservation": { | |
"naturalization": {}, | |
"pollution control": { | |
"industrial waste control": {}, | |
"vehicle emission testing": {}, | |
"wastewater treatment": {} | |
}, | |
"pollution prevention": { | |
"smog reduction": {} | |
}, | |
"ravine protection": {} | |
}, | |
"environmental monitoring": { | |
"energy complaints": {}, | |
"noise complaints": {}, | |
"soil testing": {}, | |
"water complaints": {}, | |
"water sampling": { | |
"lead sampling": {} | |
}, | |
"water testing": {}, | |
"weather forecasting": {} | |
}, | |
"environmental plans": {}, | |
"environmental programs": { | |
"environmental assessments": { | |
"class environmental assessment": {} | |
}, | |
"environmental awards": {}, | |
"environmental education": {}, | |
"environmental incentive programs": { | |
"bottle deposit return programs": {}, | |
"drain claims": {} | |
}, | |
"environmental reporting": {}, | |
"environmental spills reporting": {} | |
}, | |
"environmental projects": {}, | |
"natural processes": { | |
"flooding": {} | |
}, | |
"natural resource management": { | |
"energy reduction": { | |
"vehicle fuel system conversion": {} | |
}, | |
"horticulture": { | |
"natural lawn and garden care": {}, | |
"weed control": {} | |
}, | |
"proscribed burns": {}, | |
"rainwater harvesting": {}, | |
"stormwater management": { | |
"downspout disconnection": {} | |
}, | |
"urban forestry": { | |
"tree maintenance": { | |
"tree pruning": {}, | |
"tree removal": {}, | |
"tree watering": {} | |
}, | |
"tree planting": {}, | |
"tree protection": {} | |
}, | |
"water supply": { | |
"water meter readings": {} | |
}, | |
"water treatment": { | |
"chlorination": {}, | |
"fluoridation": {} | |
} | |
}, | |
"noise control": {}, | |
"park maintenance": {}, | |
"pest control": { | |
"integrated pest management": {} | |
}, | |
"remediation": {}, | |
"solid waste management": { | |
"disposal": { | |
"illegal dumping": {} | |
}, | |
"manual unloading (waste)": {}, | |
"waste collection": { | |
"garbage collection": {}, | |
"household hazardous waste collection": {}, | |
"litter collection": {}, | |
"organics collection": {}, | |
"private collection": {}, | |
"recycling collection": {}, | |
"waste collection schedules": {}, | |
"yard waste collection": {} | |
}, | |
"waste diversion": { | |
"recycling": { | |
"single-stream recycling": {} | |
}, | |
"reduce": {}, | |
"reuse": {} | |
}, | |
"waste processing": { | |
"anaerobic digestion": {}, | |
"composting": {}, | |
"screening": {}, | |
"separating (recyclables)": {}, | |
"settling": {} | |
}, | |
"waste subsidies": {} | |
}, | |
"unnecessary idling": {} | |
}, | |
"[attributes in environment]": { | |
"[attributes of natural resources]": { | |
"concentration (percentage)": {}, | |
"energy costs": {}, | |
"energy efficiency": {}, | |
"lead levels": {}, | |
"water efficiency": {}, | |
"water flow rates": {}, | |
"water pressure": {} | |
}, | |
"environmental conditions": { | |
"air quality": { | |
"indoor air quality": {}, | |
"odour": {} | |
}, | |
"ecology": { | |
"urban ecology": {} | |
}, | |
"environmental impacts": { | |
"basement flooding": {}, | |
"climate change": {}, | |
"greenhouse effect": {}, | |
"heat island effect": {}, | |
"pollution": { | |
"air pollution": { | |
"smog": {} | |
}, | |
"contaminated soil": {}, | |
"light pollution": {}, | |
"water pollution": {} | |
} | |
}, | |
"infestations": {}, | |
"noise": { | |
"aircraft noise": {} | |
}, | |
"soil quality": {}, | |
"temperature": {}, | |
"water quality": { | |
"bacteria levels (beach water)": {}, | |
"turbidity": {}, | |
"water discolouration": {}, | |
"water hardness": {}, | |
"water odour": {}, | |
"water taste": {} | |
} | |
}, | |
"environmental indicators": { | |
"air quality indicators": {}, | |
"ecological footprint": {}, | |
"tree canopy": {} | |
}, | |
"natural phenomena": { | |
"climate": { | |
"climate normals": {} | |
}, | |
"night": {}, | |
"seasons": { | |
"fall": {}, | |
"spring": {}, | |
"summer": {}, | |
"winter": {} | |
}, | |
"weather": { | |
"rain": {}, | |
"snow": {}, | |
"storms": { | |
"winter storms": { | |
"ice storms": {} | |
} | |
}, | |
"wind": {} | |
} | |
} | |
}, | |
"[environmental equipment]": { | |
"[energy management equipment]": { | |
"hydro meters": {}, | |
"underground oil tanks": {}, | |
"wind turbines": {} | |
}, | |
"[waste management equipment]": { | |
"collection vehicles": { | |
"toxics taxis": {} | |
}, | |
"composters": { | |
"backyard composters": {} | |
}, | |
"digesters": {}, | |
"garbage containers": { | |
"bag tags": {}, | |
"front-end containers (garbage)": {}, | |
"garbage bins": {}, | |
"yellow bags": {} | |
}, | |
"garbage grinders": {}, | |
"organics containers": { | |
"clear bags (organics)": {}, | |
"front-end containers (organics)": {}, | |
"green bins": {}, | |
"kitchen catchers": {} | |
}, | |
"recycling containers": { | |
"blue bins": {}, | |
"clear bags (recyclables)": {}, | |
"front-end containers (recyclables)": {}, | |
"in-unit recycling containers": {} | |
}, | |
"yard waste containers": {} | |
}, | |
"[water management equipment]": { | |
"mobile water trailers": {}, | |
"rain gauges": {}, | |
"reusable water bottles": {}, | |
"water meters": {}, | |
"water testing bottles": {} | |
} | |
}, | |
"[environmental events]": { | |
"electric power failures": {}, | |
"environmental awareness events": { | |
"outdoor water use advisories": {} | |
}, | |
"hazardous spills": {} | |
}, | |
"[locations in environment]": { | |
"energy infrastructure": { | |
"hydro vaults": {}, | |
"power lines": {}, | |
"power plants": {}, | |
"transformer boxes": {} | |
}, | |
"natural environment": { | |
"ecosystems": {}, | |
"natural areas": { | |
"environmentally sensitive areas": {}, | |
"valleylands": {}, | |
"wetlands": {}, | |
"woodlands": {} | |
}, | |
"natural features": { | |
"lost rivers": {}, | |
"moraines": {}, | |
"natural drainage systems": { | |
"aquifers": {}, | |
"water table": {}, | |
"watercourses": { | |
"creeks": {}, | |
"rivers": {} | |
} | |
}, | |
"ravines": {}, | |
"shorelines": {} | |
}, | |
"natural habitat": {}, | |
"watersheds": {} | |
}, | |
"sewer and water infrastructure": { | |
"maintenance holes": { | |
"maintenance hole covers": {} | |
}, | |
"sewer outfalls": {}, | |
"storm drainage systems": { | |
"catchbasins": {}, | |
"sewer grates": {}, | |
"storm sewers": {}, | |
"stormwater ponds": {}, | |
"swales": {} | |
}, | |
"wastewater treatment plants": {}, | |
"water collection systems": { | |
"drainage areas": {}, | |
"sewer connections": {}, | |
"sewers": { | |
"combined sewers": {}, | |
"forcemains": {}, | |
"sanitary sewers": {}, | |
"trunk sewers": {} | |
}, | |
"stormwater detention tanks": {}, | |
"stormwater storage tunnels": {} | |
}, | |
"water laboratories": {}, | |
"water supply systems": { | |
"fire hydrants": {}, | |
"pumping stations": {}, | |
"reservoirs": { | |
"elevated reservoirs": {}, | |
"ground level reservoirs": {} | |
}, | |
"water treatment plants": {}, | |
"watermain connections": {}, | |
"watermains": { | |
"distribution watermains": {}, | |
"trunk watermains": {} | |
} | |
} | |
}, | |
"waste management infrastructure": { | |
"landfills": {}, | |
"material recovery facilities": {}, | |
"organics processing facilities": {}, | |
"reuse centre": {}, | |
"solid waste collection areas": {}, | |
"transfer stations": { | |
"drop-off depots": {} | |
}, | |
"yard (facility)": {} | |
} | |
}, | |
"[materials in environment]": { | |
"biosolids": {}, | |
"chemicals": {}, | |
"compost": { | |
"leaf compost": {} | |
}, | |
"environmental information resources": { | |
"pollutant release data": {}, | |
"water use statistics": {} | |
}, | |
"fertilizers": {}, | |
"mulch": { | |
"wood chips": {} | |
}, | |
"natural resources": { | |
"air": {}, | |
"energy": { | |
"electricity": {}, | |
"fuels": { | |
"alternative fuels": {}, | |
"diesel fuel": {}, | |
"gasoline": {}, | |
"natural gas": { | |
"methane": {} | |
} | |
}, | |
"nuclear energy": {}, | |
"renewable energy": { | |
"wind energy": {} | |
} | |
}, | |
"minerals": {}, | |
"non-renewable resources": {}, | |
"soil": {}, | |
"vegetation": { | |
"urban forest": {} | |
}, | |
"water": { | |
"groundwater": {}, | |
"potable water": {}, | |
"well water": {} | |
} | |
}, | |
"organic food": {}, | |
"pest control products": {}, | |
"pesticides": { | |
"fungicides": {}, | |
"herbicides": {}, | |
"insecticides": {}, | |
"larvicides": {} | |
}, | |
"pollutants": { | |
"fine particulate matter": {}, | |
"lead (contaminant)": {}, | |
"mercury": {} | |
}, | |
"waste": { | |
"[waste by form]": { | |
"liquid waste": { | |
"hauled waste": {}, | |
"leachate": {}, | |
"liquid industrial waste": {}, | |
"organics liquid": {}, | |
"treated organics liquid": {} | |
}, | |
"solid waste": { | |
"garbage": { | |
"litter": {} | |
}, | |
"organics (waste)": { | |
"biogas": {} | |
}, | |
"oversized and metal items (waste)": {}, | |
"recyclables": { | |
"blue bin materials": { | |
"beverage containers": {} | |
}, | |
"other recyclables": { | |
"bulky plastics (waste)": {}, | |
"drywall (waste)": {}, | |
"electronics (waste)": { | |
"cell phones (used)": {} | |
}, | |
"mattresses (waste)": {}, | |
"metal items (waste)": {}, | |
"porcelain (waste)": {}, | |
"scrap metal": {}, | |
"tires (waste)": {} | |
} | |
}, | |
"yard waste": { | |
"Christmas trees (waste)": {}, | |
"wood chips (waste)": {} | |
} | |
}, | |
"wastewater": {} | |
}, | |
"[waste by source or method of production]": { | |
"abandoned shopping carts": {}, | |
"abandoned vehicles": { | |
"abandoned bicycles": {} | |
}, | |
"construction waste": {}, | |
"industrial commercial institutional waste": {}, | |
"residential waste": {} | |
}, | |
"[waste with special characteristics]": { | |
"hazardous waste": { | |
"household hazardous waste": { | |
"inkjet cartridges (used)": {} | |
}, | |
"medical waste": { | |
"used needles": {} | |
} | |
}, | |
"prohibited waste": { | |
"PCBs": {}, | |
"asbestos": {}, | |
"radioactive waste": {} | |
} | |
} | |
}, | |
"wet weather flow": {} | |
}, | |
"[organizations in environment]": { | |
"environmental organizations": { | |
"conservation authorities": {} | |
} | |
}, | |
"[people in environment]": { | |
"garbage collectors": {} | |
}, | |
"[rules in environment]": { | |
"access to environmental information": {}, | |
"animal licences": {}, | |
"environmental legislation": {}, | |
"environmental policies": { | |
"drinking water standards": {}, | |
"water use policies": { | |
"bulk water permits": {} | |
} | |
}, | |
"noise exemption permits": {}, | |
"shade provisions": {} | |
}, | |
"living things": { | |
"[living things by environmental impact]": { | |
"invasive species": {}, | |
"native plants": {}, | |
"pests": { | |
"insect pests": { | |
"Asian Long-Horned Beetles": {}, | |
"Emerald Ash Borer": {}, | |
"aphids": {}, | |
"bed bugs": {}, | |
"cockroaches": {}, | |
"fleas": {}, | |
"gypsy moths": {}, | |
"lice": {}, | |
"mosquitoes": {}, | |
"termites": {} | |
} | |
}, | |
"weeds": { | |
"dandelions": {}, | |
"noxious weeds": { | |
"ragweed": {} | |
} | |
} | |
}, | |
"[living things by type]": { | |
"animals": { | |
"birds": { | |
"migratory birds": {} | |
}, | |
"exotic animals": {}, | |
"farm animals": { | |
"livestock": {}, | |
"poultry": {} | |
}, | |
"feral cats": {}, | |
"fishes": {}, | |
"guide dogs": {}, | |
"insects": { | |
"butterflies": {}, | |
"caterpillars": {}, | |
"stinging insects": {} | |
}, | |
"pets": { | |
"cats": {}, | |
"dogs": { | |
"pit bulls": {} | |
}, | |
"rabbits": {} | |
}, | |
"prohibited animals": {}, | |
"rodents": {}, | |
"wildlife": { | |
"rabbits": {}, | |
"spiders": {}, | |
"zebra mussels": {} | |
} | |
}, | |
"bacteria": {}, | |
"fungi": { | |
"mould": {} | |
}, | |
"plants": { | |
"flowers": {}, | |
"shrubs": {}, | |
"trees": { | |
"city-owned trees": {}, | |
"commemorative trees": {}, | |
"privately-owned trees": {}, | |
"tree branches": {}, | |
"tree roots": {} | |
} | |
} | |
} | |
} | |
}, | |
"FINANCE (SC)": { | |
"[activities in finance]": { | |
"asset disposal": {}, | |
"audits": {}, | |
"billing": {}, | |
"credit": {}, | |
"financial write-offs": {}, | |
"funding": { | |
"sponsorship": {} | |
}, | |
"fundraising": { | |
"donation": {} | |
}, | |
"insurance": { | |
"insurance claims": {} | |
}, | |
"investment": {}, | |
"leasing": {}, | |
"payment": {}, | |
"property assessment": { | |
"assessment appeals": {}, | |
"assessment information services": {} | |
}, | |
"refund": {}, | |
"rent": { | |
"rent reduction": {} | |
}, | |
"revenue generation": { | |
"taxation": { | |
"tax increase": {}, | |
"tax reduction": {} | |
} | |
}, | |
"subsidies and grants": {} | |
}, | |
"[attributes in finance]": { | |
"costs": {}, | |
"due dates": {}, | |
"exchange rate": {} | |
}, | |
"[events in finance]": {}, | |
"[locations in finance]": {}, | |
"[materials in finance]": { | |
"accounts": { | |
"accounts receivable": {} | |
}, | |
"accounts receivable": {}, | |
"arrears": {}, | |
"debt": {}, | |
"expenses": {}, | |
"fees": {}, | |
"income": {}, | |
"taxes": { | |
"Municipal Land Transfer Tax": {}, | |
"Personal Vehicle Tax": {}, | |
"education taxes": {}, | |
"gas taxes": {}, | |
"institutional levies": {}, | |
"property taxes": {} | |
}, | |
"venture capital": {} | |
}, | |
"[objects in finance]": { | |
"assessment rolls": {}, | |
"assets": {}, | |
"bank machines": {}, | |
"bonds": {}, | |
"cheques": {}, | |
"credit cards": {}, | |
"currency": {}, | |
"financial reports": {}, | |
"fines": {}, | |
"hydro bills": {}, | |
"invoices": {}, | |
"letters of credit": {}, | |
"loans": {}, | |
"mortgages": {}, | |
"security deposits": {}, | |
"tax certificates": {}, | |
"utility bills": { | |
"solid waste management fees": {}, | |
"water billing": { | |
"sewer charges": {} | |
} | |
}, | |
"water certificates": {} | |
}, | |
"[organizations in finance]": { | |
"collection agencies": {}, | |
"financial institutions": {} | |
}, | |
"[people in finance]": { | |
"ratepayers": {} | |
}, | |
"[rules in finance]": { | |
"budgets": { | |
"capital budgets": {}, | |
"operating budgets": {}, | |
"reserve funds": {} | |
}, | |
"property tax rates": {}, | |
"tax apportionment": {}, | |
"water rates": {} | |
} | |
}, | |
"GOVERNMENT (SC)": { | |
"[activities in government]": { | |
"[actions of government]": { | |
"business travel (municipal)": {}, | |
"city initiatives": {}, | |
"governance": { | |
"appointments": {}, | |
"delegation of authority": {}, | |
"legislative process (municipal)": { | |
"motions": {}, | |
"resolutions": {} | |
}, | |
"report requests": {} | |
}, | |
"intergovernmental relations": { | |
"international alliances": {} | |
}, | |
"licence termination": {}, | |
"naming": {}, | |
"policy development": {}, | |
"programs": {}, | |
"work plans": {} | |
}, | |
"[government-citizen interactions]": { | |
"civic engagement": {}, | |
"condolences": {}, | |
"congratulatory messages": {}, | |
"electoral reform": {}, | |
"government services": { | |
"municipal services": { | |
"non emergency municipal services": {} | |
}, | |
"provincial services": {}, | |
"registration": { | |
"birth registration": {}, | |
"death registration": { | |
"stillbirth registration": {} | |
} | |
}, | |
"service delivery": {} | |
}, | |
"lobbying": {}, | |
"municipal awards": {}, | |
"nomination": {}, | |
"partnerships": { | |
"public private partnerships": {} | |
}, | |
"public appointments": {}, | |
"public consultation": { | |
"public opinion polls": {} | |
}, | |
"public education": {}, | |
"speakers to committee": {} | |
} | |
}, | |
"[attributes in government]": { | |
"accountability": {}, | |
"local government structure": {} | |
}, | |
"[events in government]": { | |
"committee meetings": {}, | |
"council meetings": {}, | |
"elections": { | |
"by-elections": {}, | |
"early voting": {}, | |
"municipal elections": {}, | |
"provincial elections": {}, | |
"referendum": {} | |
} | |
}, | |
"[locations in government]": { | |
"[facilities in government]": { | |
"civic centres": { | |
"city halls": {} | |
}, | |
"committee rooms": {}, | |
"council chambers": {}, | |
"mayor's office": {}, | |
"voting places": {} | |
}, | |
"[political and administrative areas]": { | |
"constituencies": {}, | |
"municipalities": { | |
"former municipalities": {} | |
}, | |
"provinces": {}, | |
"service boundaries": {}, | |
"service districts": {}, | |
"wards": { | |
"subdivision (wards)": {} | |
} | |
} | |
}, | |
"[materials in government]": { | |
"election results": {} | |
}, | |
"[objects in government]": { | |
"agendas": {}, | |
"applications": {}, | |
"council items": {}, | |
"election signs": {}, | |
"government symbols": { | |
"coats of arms": {}, | |
"flags": { | |
"municipal flags": {} | |
}, | |
"municipal logos": {} | |
}, | |
"minutes": {}, | |
"personal identification": { | |
"social insurance numbers": {}, | |
"travel documents": {} | |
}, | |
"vote tabulators": {}, | |
"voters' lists": {} | |
}, | |
"[organizations in government]": { | |
"federal governments": {}, | |
"local governments": { | |
"cluster divisions": {}, | |
"municipal associations": {}, | |
"municipal councils": { | |
"committees of council": { | |
"advisory committees": {}, | |
"community councils": {}, | |
"executive committees": {}, | |
"standing policy committees": {} | |
} | |
}, | |
"special purpose bodies": { | |
"library boards": {}, | |
"parking authorities": {} | |
} | |
}, | |
"provincial governments": {} | |
}, | |
"[people in government]": { | |
"board members": {}, | |
"candidates": {}, | |
"contacts": {}, | |
"elected officials": { | |
"councillors": {}, | |
"mayors": {}, | |
"members of parliament": {}, | |
"members of provincial parliament": {} | |
}, | |
"government officials": { | |
"municipal officials": { | |
"integrity commissioners": {}, | |
"ombudsman": {} | |
} | |
}, | |
"voters": {} | |
}, | |
"[rules in government]": { | |
"by-laws": {}, | |
"council procedures": {}, | |
"draft by-laws": {}, | |
"licences": {}, | |
"municipal codes": {}, | |
"permits": {}, | |
"protocol": { | |
"ceremonies": {}, | |
"flag raising": {} | |
} | |
} | |
}, | |
"HEALTH (SC)": { | |
"[activities in health]": { | |
"[analytical, diagnostic and therapeutic techniques]": { | |
"abortion": {}, | |
"blood tests": {}, | |
"cancer screening": {}, | |
"colonoscopy": {}, | |
"emergency treatment": { | |
"cardiopulmonary resuscitation": {}, | |
"first aid": {}, | |
"heart attack alerts": {} | |
}, | |
"euthanasia": {}, | |
"female circumcision": {}, | |
"hygiene": {}, | |
"male circumcision": {}, | |
"mammograms": {}, | |
"pap smears": {} | |
}, | |
"[health disciplines]": { | |
"dental services": {}, | |
"ergonomics": {}, | |
"family planning": {}, | |
"foot care": {}, | |
"hearing care": {}, | |
"massage therapy": {}, | |
"mental health care and counselling": {}, | |
"optometry services": {}, | |
"public health": { | |
"communicable disease control": { | |
"immunizations": {}, | |
"quarantine": {} | |
}, | |
"food inspection": {}, | |
"harm reduction": {}, | |
"health impact assessment": {}, | |
"health promotion": {} | |
} | |
}, | |
"[human behaviours]": { | |
"abuse": {}, | |
"breast feeding": {}, | |
"physical activity": {}, | |
"smoking": {}, | |
"smoking cessation": {}, | |
"substance abuse": {}, | |
"suicide": {}, | |
"sun safety": {} | |
}, | |
"counselling": {}, | |
"examinations": {}, | |
"treatment (health)": { | |
"complementary therapies": { | |
"art therapy": {}, | |
"music therapy": {} | |
}, | |
"patient care": { | |
"convalescent care": {}, | |
"palliative care": {} | |
}, | |
"rehabilitation (people)": { | |
"speech therapy": {} | |
} | |
} | |
}, | |
"[attributes in health]": { | |
"[disorders of environmental origin]": { | |
"carcinogen": {}, | |
"food poisoning": {}, | |
"injuries": {}, | |
"toxins": {} | |
}, | |
"[human characteristics in health]": { | |
"fertility": {}, | |
"health": { | |
"sexual health": {} | |
}, | |
"healthy weight": {}, | |
"nutrition": { | |
"special diets": {} | |
}, | |
"obesity": {}, | |
"pregnancy": {}, | |
"symptoms": {} | |
}, | |
"depression": {}, | |
"diseases": { | |
"Alzheimers": {}, | |
"Chronic Fatigue Syndrome": {}, | |
"Fifth Disease": {}, | |
"HIV/AIDS": {}, | |
"Hepatitis": {}, | |
"Human Papillomavirus": {}, | |
"Parkinson's disease": {}, | |
"SARS": {}, | |
"West Nile Virus": {}, | |
"[diseases by transmission]": { | |
"communicable diseases": {}, | |
"sexually transmitted diseases": {}, | |
"vector borne diseases": {} | |
}, | |
"allergies": {}, | |
"asthma": {}, | |
"attention deficit disorder": {}, | |
"autistic disorder": {}, | |
"bipolar disorder": {}, | |
"bladder infections": {}, | |
"cancer": { | |
"breast cancer": {}, | |
"cervical cancer": {}, | |
"colon cancer": {}, | |
"colorectal cancer": {} | |
}, | |
"common cold": {}, | |
"croup": {}, | |
"dementia": {}, | |
"diabetes": {}, | |
"dyslexia": {}, | |
"e coli": {}, | |
"eating disorders": {}, | |
"epilepsy": {}, | |
"hand foot and mouth disease": {}, | |
"heart diseases": {}, | |
"impetigo": {}, | |
"influenza": { | |
"avian flu": {} | |
}, | |
"jaundice": {}, | |
"lactose intolerance": {}, | |
"osteoporosis": {}, | |
"pinkeye": {}, | |
"pinworm": {}, | |
"pneumococcal infections": {}, | |
"rabies": {}, | |
"stomach flu": {}, | |
"streptococcal infection": {}, | |
"sudden infant death": {}, | |
"tuberculosis": {}, | |
"vascular dementia": {}, | |
"yeast infections": {} | |
}, | |
"health issues": {}, | |
"sickness": {}, | |
"stress (psychology)": {} | |
}, | |
"[events in health]": { | |
"alerts": { | |
"boil water advisories": {}, | |
"drinking water advisories": {}, | |
"extreme cold alerts": {}, | |
"extreme heat alerts": {}, | |
"heat alerts": {}, | |
"smog alerts": {} | |
}, | |
"animal bites": {}, | |
"disease outbreaks": {} | |
}, | |
"[locations in health]": { | |
"emergency medical services stations": {}, | |
"hospitals": {}, | |
"medical clinics": { | |
"dental clinics": {}, | |
"sexual health clinics": {}, | |
"travel clinics": {}, | |
"walk-in clinics": {} | |
}, | |
"x-ray facilities": {} | |
}, | |
"[materials in health]": { | |
"air quality health index": {}, | |
"insect repellent": {}, | |
"medical marijuana": {}, | |
"medication": { | |
"Tamiflu": {} | |
} | |
}, | |
"[objects in health]": { | |
"assistive devices": { | |
"cognitive aids": {}, | |
"communication aids": {}, | |
"housekeeping aids": {}, | |
"mobility aids": { | |
"personal mobility devices": {}, | |
"walkers": {}, | |
"wheelchairs": {} | |
}, | |
"personal care aids": {} | |
}, | |
"contraceptive devices": {}, | |
"defibrillators": { | |
"public access defibrillators": {} | |
}, | |
"health cards": {}, | |
"hospital beds": {}, | |
"infant equipment": {}, | |
"restraints": {}, | |
"surgical supplies": {} | |
}, | |
"[organizations in health]": { | |
"boards of health": {} | |
}, | |
"[people in health]": { | |
"babies": {}, | |
"dietitians": {}, | |
"doctors": {}, | |
"fathers": {}, | |
"midwives": {}, | |
"mothers": { | |
"single mothers": {} | |
}, | |
"nurses": { | |
"public health nurses": {} | |
}, | |
"paramedics": {}, | |
"patients": {}, | |
"public health inspectors": {} | |
}, | |
"[rules in health]": { | |
"food guides": {} | |
} | |
}, | |
"INFORMATION & COMMUNICATION (SC)": { | |
"[activities in information and communication]": { | |
"advertising": { | |
"outdoor advertising": {}, | |
"postering": {}, | |
"vehicle branding": {} | |
}, | |
"communication": { | |
"commendations": {}, | |
"complaints": {}, | |
"organizational communication": { | |
"employee communication": {} | |
}, | |
"telecommunications": {}, | |
"web 2.0": {} | |
}, | |
"digitization": {}, | |
"graphic design": {}, | |
"information management": {}, | |
"information services": {}, | |
"multilingual services": { | |
"translation": {} | |
}, | |
"printing and distribution": { | |
"library circulation": {}, | |
"mail services": {} | |
}, | |
"public relations": { | |
"media relations": {} | |
}, | |
"research": { | |
"customer satisfaction surveys": {}, | |
"polling": {} | |
}, | |
"web analytics": {} | |
}, | |
"[attributes in information and communications]": { | |
"bilingual status": {}, | |
"colour codes": {}, | |
"confidentiality": {}, | |
"corporate identity": { | |
"logos": {}, | |
"slogans": {} | |
}, | |
"languages": { | |
"official languages": {}, | |
"sign languages": {} | |
}, | |
"metadata": {}, | |
"privacy": {} | |
}, | |
"[events in information and communication]": { | |
"contests": {} | |
}, | |
"[locations in information and communication]": { | |
"call centres": {}, | |
"library branches": {}, | |
"press gallery": {} | |
}, | |
"[materials in information and communication]": { | |
"databases": {}, | |
"electronic resources": {}, | |
"feedback": {}, | |
"information": { | |
"geographic data": {} | |
}, | |
"library donations": {}, | |
"statistics (information)": {}, | |
"streaming media": {}, | |
"transcripts": {} | |
}, | |
"[objects in information and communication]": { | |
"documents": {}, | |
"forms (documents)": {}, | |
"letters": {}, | |
"media advisories": {}, | |
"news releases": {}, | |
"public service announcements": {}, | |
"publications": { | |
"directories": {} | |
}, | |
"records": {}, | |
"signs": { | |
"billboards": {}, | |
"electronic signs": {}, | |
"street banners": {}, | |
"temporary signs": {} | |
}, | |
"social media": {}, | |
"websites": {} | |
}, | |
"[organizations in information and communication]": { | |
"advertising agencies": {}, | |
"libraries": { | |
"digital libraries": {}, | |
"government libraries": {}, | |
"public libraries": {} | |
}, | |
"mass media": {}, | |
"outdoor advertising companies": {} | |
}, | |
"[people in information and communications]": { | |
"contacts": {}, | |
"reporters": {}, | |
"researchers": {}, | |
"spokespersons": {}, | |
"translators and interpreters": {} | |
}, | |
"[rules in information and communication]": { | |
"sign permits": {}, | |
"software licences": {}, | |
"style guides": {} | |
} | |
}, | |
"LAW (SC)": { | |
"[activities in law]": { | |
"access requests": {}, | |
"affidavits": {}, | |
"agreements": { | |
"contracts": {} | |
}, | |
"appeals": {}, | |
"arrests": {}, | |
"articling": {}, | |
"case law": {}, | |
"charges": {}, | |
"conviction": {}, | |
"crime": { | |
"arson": {}, | |
"break-in": {}, | |
"fraud": {}, | |
"murders": {}, | |
"prostitution": {}, | |
"robberies": {}, | |
"sexual assaults": {}, | |
"theft": {}, | |
"vandalism": {} | |
}, | |
"disclosure": {}, | |
"dispute process": {}, | |
"guilty pleas": {}, | |
"legal aid": {}, | |
"liens": {}, | |
"prosecution": {}, | |
"summons": {}, | |
"trials": {}, | |
"violation": {}, | |
"youth justice": {} | |
}, | |
"[attributes in law]": { | |
"bankruptcy": {}, | |
"conflict of interest": {}, | |
"legal matters": {} | |
}, | |
"[events in law]": { | |
"cases": {}, | |
"court dates": {}, | |
"hearings": {}, | |
"public inquiries": {}, | |
"walk in first attendance meeting": {} | |
}, | |
"[locations in law]": { | |
"correctional institutes": {} | |
}, | |
"[materials in law]": { | |
"damages": {} | |
}, | |
"[organizations in law]": { | |
"courts": {}, | |
"licensing tribunals": {} | |
}, | |
"[people in law]": { | |
"bailiffs": {}, | |
"judges": {}, | |
"justices of the peace": {}, | |
"lawyers": {}, | |
"young offenders": {} | |
}, | |
"[rules in law]": { | |
"[objects in law]": { | |
"restraining orders": {}, | |
"tickets": {}, | |
"wills": {} | |
}, | |
"accessibility standards": {}, | |
"copyright": {}, | |
"law": { | |
"legislation": { | |
"consumer protection legislation": {}, | |
"provincial legislation": {}, | |
"regulations": {} | |
}, | |
"municipal law": {} | |
}, | |
"liquor sales licences": {}, | |
"patent": {}, | |
"penalties": {}, | |
"provincial offences": {}, | |
"special occasion permits": {}, | |
"trademarks": {} | |
} | |
}, | |
"MANAGEMENT (SC)": { | |
"[activities in management]": { | |
"administration": {}, | |
"approval": {}, | |
"arbitration": {}, | |
"assessment": {}, | |
"certification": {}, | |
"change": { | |
"cancellation": {}, | |
"improvement": {}, | |
"removal": {}, | |
"reorganization": {} | |
}, | |
"compliance": {}, | |
"contract termination": {}, | |
"decision-making": {}, | |
"enforcement": {}, | |
"evaluation": {}, | |
"implementation": {}, | |
"inspection": {}, | |
"investigation": {}, | |
"maintenance": { | |
"repairs": {}, | |
"restoration": {} | |
}, | |
"management (activity)": {}, | |
"measurement": { | |
"point-in-time count": {} | |
}, | |
"planning": { | |
"strategic plans": {} | |
}, | |
"prevention": {}, | |
"projects": { | |
"demonstration projects": {}, | |
"pilot projects": {} | |
}, | |
"purchasing": { | |
"proposals": {}, | |
"quotations": {}, | |
"replacement": {}, | |
"request for information": {} | |
}, | |
"queuing": {}, | |
"reduction": {}, | |
"services": { | |
"customer service": { | |
"lost and found (service)": {} | |
}, | |
"external services": {} | |
}, | |
"suspension": {}, | |
"testing": {} | |
}, | |
"[attributes in management]": { | |
"capacity": { | |
"excess": {} | |
}, | |
"damage": {}, | |
"eligibility": {}, | |
"frequency": {}, | |
"hours of operation": {}, | |
"limits": {}, | |
"malfunctions": {}, | |
"mission statements": {}, | |
"organizational structure": {}, | |
"requirements": {}, | |
"schedules": {}, | |
"security": {}, | |
"service quality": {}, | |
"size": { | |
"height": {}, | |
"width": {} | |
} | |
}, | |
"[events in management]": { | |
"meetings": {} | |
}, | |
"[locations in management]": {}, | |
"[materials in management]": { | |
"human resources": {}, | |
"materials": {} | |
}, | |
"[objects in management]": { | |
"annual reports": {}, | |
"containers": {}, | |
"organizational charts": {} | |
}, | |
"[organizations in management]": { | |
"boards of management": {}, | |
"organizations": {}, | |
"suppliers": {} | |
}, | |
"[people in management]": { | |
"executives": {}, | |
"inspectors": {}, | |
"managers": {}, | |
"stakeholders": {}, | |
"supervisors": {} | |
}, | |
"[rules in management]": { | |
"best practices": {}, | |
"policies and procedures": { | |
"exemptions": {} | |
}, | |
"responsibilities": {}, | |
"specifications": {}, | |
"standards": { | |
"behaviour standards": {}, | |
"dress code": {} | |
}, | |
"waiting lists": {} | |
} | |
}, | |
"PLANNING & DEVELOPMENT (SC)": { | |
"[activities in planning and development]": { | |
"architecture": {}, | |
"assumption of services": {}, | |
"development": { | |
"infill development": {}, | |
"redevelopment": {}, | |
"site plan control": {}, | |
"subdivision (land)": { | |
"land severance": {} | |
}, | |
"sustainable development": {} | |
}, | |
"development review process": { | |
"planning approvals": { | |
"consents": {}, | |
"minor variances": {}, | |
"official plan amendments": {}, | |
"rezoning": {} | |
} | |
}, | |
"growth": { | |
"urbanization": {} | |
}, | |
"land acquisition": { | |
"expropriations": {}, | |
"parkland dedication": {} | |
}, | |
"land use": {}, | |
"school zone review": {}, | |
"urban beautification": {}, | |
"urban planning": { | |
"avenue study": {}, | |
"urban design": { | |
"landscape design": {} | |
} | |
}, | |
"zoning": { | |
"interim control": {}, | |
"part lot control": {} | |
} | |
}, | |
"[attributes in planning and development]": { | |
"demographics": { | |
"population": {} | |
}, | |
"density": {}, | |
"massing": {}, | |
"urban form": {} | |
}, | |
"[events in planning and development]": { | |
"public meetings": {} | |
}, | |
"[locations in planning and development]": { | |
"Avenues": {}, | |
"Centres": {}, | |
"commercial areas": {}, | |
"development controlled land": {}, | |
"downtowns": {}, | |
"land use designations": { | |
"apartment neighbourhoods": {}, | |
"employment areas": { | |
"industrial areas": {} | |
}, | |
"institutional areas": {}, | |
"mixed use areas": {}, | |
"neighbourhoods (planning)": {}, | |
"parks and open space areas": {}, | |
"regeneration areas": {}, | |
"utility corridors": {} | |
}, | |
"public realm": {}, | |
"urban planning districts": {}, | |
"waterfronts": {} | |
}, | |
"[materials in planning and development]": { | |
"community benefits": {}, | |
"development charges": { | |
"parks levy fees": {}, | |
"payment in lieu of parking": {} | |
}, | |
"land": { | |
"vacant land": {} | |
}, | |
"planning application fees": {} | |
}, | |
"[objects in planning and development]": { | |
"Master Plans": {}, | |
"Secondary Plans": {}, | |
"land use maps": {} | |
}, | |
"[organizations in planning and development]": { | |
"committees of adjustment": {}, | |
"developers": {}, | |
"economic development corporations": {}, | |
"planning tribunals": {}, | |
"urban planning services consulting firms": {} | |
}, | |
"[people in planning and development]": { | |
"architects": {}, | |
"building regulation consultants": {}, | |
"planners": {}, | |
"planning consultants": {} | |
}, | |
"[rules in planning and development]": { | |
"Official Plans": {}, | |
"green standards": { | |
"bird-friendly development guidelines": {} | |
}, | |
"zoning bylaws": {} | |
} | |
}, | |
"PROPERTY (SC)": { | |
"[activities in property]": { | |
"building inspection": {}, | |
"construction": { | |
"bridge construction": {}, | |
"reconstruction": {}, | |
"road construction": {} | |
}, | |
"demolitions": {}, | |
"encroachments": {}, | |
"eviction": {}, | |
"excavation": {}, | |
"facility booking": {}, | |
"facility naming": {}, | |
"fence viewing": {}, | |
"locate requests": {}, | |
"property maintenance": { | |
"turf maintenance": {} | |
}, | |
"property numbering": {}, | |
"real estate transactions": { | |
"property sales": {} | |
}, | |
"retrofits": {}, | |
"utility digs": {} | |
}, | |
"[attributes in property]": { | |
"air rights": {}, | |
"elevation": {}, | |
"flood damage": {}, | |
"graffiti": {}, | |
"gross floor area": {}, | |
"land title": {}, | |
"landscaping": {}, | |
"lot lines": {}, | |
"municipal addresses": {}, | |
"property drainage": {}, | |
"real estate vacancies": {}, | |
"setbacks": {}, | |
"structural integrity": {}, | |
"vehicle access": {}, | |
"zoning designations": {} | |
}, | |
"[events in property]": {}, | |
"[locations in property]": { | |
"easements": {}, | |
"facilities": { | |
"drive through facilities": {}, | |
"institutional facilities": {}, | |
"municipal facilities": {} | |
}, | |
"gardens": { | |
"allotment gardens": {}, | |
"arboretums": {}, | |
"community gardens": {}, | |
"lawns": {}, | |
"natural gardens": {} | |
}, | |
"gateways": {}, | |
"infrastructure": { | |
"underground services": {}, | |
"works yards": {} | |
}, | |
"properties (real estate)": { | |
"[property components]": { | |
"driveways": {}, | |
"yards": {} | |
}, | |
"commercial properties": {}, | |
"industrial properties": {}, | |
"lots": {}, | |
"private properties": {}, | |
"public properties": { | |
"city-owned properties": { | |
"orphan spaces": {} | |
} | |
}, | |
"residential properties": { | |
"multi-residential properties": {} | |
} | |
}, | |
"property lines": {}, | |
"rights-of-way": {}, | |
"squares": {}, | |
"structures": { | |
"buildings": { | |
"[building components and systems]": { | |
"awnings": {}, | |
"biowalls": {}, | |
"canopies": {}, | |
"downspouts": {}, | |
"elevators": {}, | |
"exits": {}, | |
"fire alarms": {}, | |
"fire escapes": {}, | |
"fire sprinklers": {}, | |
"green roofs": {}, | |
"heating, ventilation and air conditioning systems": {}, | |
"meditation rooms": {}, | |
"plumbing": { | |
"drains": { | |
"trap primers": {} | |
}, | |
"flood-prevention devices": { | |
"back-water valves": {}, | |
"sump pumps": {} | |
}, | |
"indoor water efficiency kits": {}, | |
"toilets": {} | |
}, | |
"washrooms": {}, | |
"wheelchair ramps": {} | |
}, | |
"[buildings by function]": { | |
"accessory buildings": {}, | |
"conservatories (greenhouses)": {}, | |
"dwellings": { | |
"multi-unit dwellings": {}, | |
"single family dwellings": {} | |
}, | |
"greenhouses": {}, | |
"office buildings": {} | |
}, | |
"[buildings by height]": { | |
"high rise buildings": {}, | |
"low rise buildings": {}, | |
"mid rise buildings": {} | |
} | |
}, | |
"private swimming pools": {} | |
} | |
}, | |
"[materials in property]": { | |
"building materials": { | |
"concrete": {}, | |
"insulation": {}, | |
"paint": {}, | |
"wood": {} | |
}, | |
"building permit fees": { | |
"municipal road damage deposits": {} | |
}, | |
"turf": {} | |
}, | |
"[objects in property]": { | |
"fences": { | |
"pool enclosures": {} | |
}, | |
"hoardings": {}, | |
"inground sprinkler systems": {}, | |
"leaf blowers": {}, | |
"maps": { | |
"property data maps": {}, | |
"surveys (maps)": {} | |
}, | |
"outdoor fireplaces": {}, | |
"plans (drawings)": { | |
"building plans": {}, | |
"drain plans": {} | |
}, | |
"rain barrels": {}, | |
"retaining walls": {}, | |
"safety barriers": {}, | |
"scaffolding": {} | |
}, | |
"[organizations in property]": { | |
"landlord organizations": {}, | |
"tenant organizations": {}, | |
"underground utility services call centres": {} | |
}, | |
"[people in property]": { | |
"builders": {}, | |
"designers (buildings)": {}, | |
"land surveyors": {}, | |
"master plumbers": {}, | |
"plumbing inspectors": {}, | |
"property owners": { | |
"homeowners": {}, | |
"landlords": { | |
"commercial landlords": {}, | |
"residential landlords": {} | |
} | |
}, | |
"tenants": { | |
"commercial tenants": {}, | |
"residential tenants": {} | |
} | |
}, | |
"[rules in property]": { | |
"building codes": {}, | |
"building permits": { | |
"plumbing permits": {} | |
}, | |
"property standards": {}, | |
"tenancies legislation": {} | |
} | |
}, | |
"PUBLIC SAFETY & PROTECTION (SC)": { | |
"[activities in public safety and protection]": { | |
"civilian police college": {}, | |
"community crisis response": {}, | |
"crime prevention": {}, | |
"crime reporting": {}, | |
"crowd control": {}, | |
"emergency management": { | |
"emergency communication": {} | |
}, | |
"emergency services": { | |
"emergency medical services": {}, | |
"fire and rescue services": {} | |
}, | |
"police services": {} | |
}, | |
"[attributes in public safety and protection]": { | |
"fire hazards": {}, | |
"safety": { | |
"community safety": {} | |
} | |
}, | |
"[events in public safety and protection]": { | |
"accidents": {}, | |
"disasters": {}, | |
"emergencies": { | |
"public health emergency": {} | |
}, | |
"fire drills": {}, | |
"fires": {} | |
}, | |
"[locations in public safety and protection]": { | |
"fire stations": {}, | |
"marijuana grow houses": {}, | |
"police facilities": {}, | |
"police stations": {} | |
}, | |
"[materials in public safety and protection]": {}, | |
"[objects in public safety and protection]": { | |
"clearance letters": {}, | |
"emergency vehicles": { | |
"ambulances": {}, | |
"fire trucks": {}, | |
"mass casualty patient transport": {}, | |
"police vehicles": {} | |
}, | |
"fire extinguishers": {}, | |
"fire hoses": {}, | |
"firearms": {}, | |
"personal protective equipment": {}, | |
"police reports": {}, | |
"pyrotechnics": { | |
"fireworks": {} | |
} | |
}, | |
"[organizations in public safety and protection]": { | |
"police services boards": {} | |
}, | |
"[people in public safety and protection]": { | |
"crossing guards": {}, | |
"firefighters": {}, | |
"gangs": {}, | |
"missing persons": {}, | |
"police officers": { | |
"pay duty police officers": {} | |
}, | |
"security guards": {}, | |
"victims": {} | |
}, | |
"[rules in public safety and protection]": { | |
"emergency medical plans": {}, | |
"emergency plans": {}, | |
"fire routes": {}, | |
"parade permits": {} | |
} | |
}, | |
"RECREATION & TOURISM (SC)": { | |
"[activities in recreation and tourism]": { | |
"entertainment": {}, | |
"hobbies and interests": { | |
"boating": {}, | |
"bungee jumping": {}, | |
"camping": {}, | |
"chess": {}, | |
"crafts": {}, | |
"cycling courses": {}, | |
"fishing": {}, | |
"gambling": { | |
"charitable gaming": {} | |
}, | |
"hiking": {}, | |
"shopping": {}, | |
"sunbathing": {} | |
}, | |
"parks permits": {}, | |
"recreational programs": { | |
"adapted programs": {}, | |
"adult programs": {}, | |
"art programs": {}, | |
"cooking programs": {}, | |
"drop-in programs": {}, | |
"instructional programs": {}, | |
"preschool programs": {}, | |
"senior programs": {}, | |
"sports programs": { | |
"fitness programs": {} | |
}, | |
"youth programs": { | |
"after school programs": {}, | |
"day camps": {} | |
} | |
}, | |
"recreational subsidies": {}, | |
"rentals": { | |
"equipment rentals": { | |
"bicycle rentals": {}, | |
"boat charters": {}, | |
"boat rentals": {}, | |
"skate rentals": {} | |
}, | |
"pool rentals": {}, | |
"rink rentals": {} | |
}, | |
"sports": { | |
"archery": {}, | |
"basketball": {}, | |
"bocce": {}, | |
"bowling": {}, | |
"canoeing": {}, | |
"curling": {}, | |
"extreme sports": { | |
"bicycle motocross": {}, | |
"skateboarding": {} | |
}, | |
"field sports": { | |
"baseball": {}, | |
"cricket": {}, | |
"field hockey": {}, | |
"football": {}, | |
"lacrosse": {}, | |
"rugby": {}, | |
"soccer": {} | |
}, | |
"frisbee golf": {}, | |
"golf": {}, | |
"hockey": {}, | |
"horse racing": {}, | |
"horseback riding": {}, | |
"in-line skating": {}, | |
"kiteboarding": {}, | |
"lawn bowling": {}, | |
"rowing": {}, | |
"sailing": {}, | |
"skating": {}, | |
"skiing": {}, | |
"sledge hockey": {}, | |
"snowboarding": {}, | |
"swimming": {}, | |
"tennis": {}, | |
"track and field": {}, | |
"volleyball": { | |
"beach volleyball": {} | |
}, | |
"windsurfing": {} | |
}, | |
"tourism": { | |
"green tourism": {}, | |
"sightseeing": {}, | |
"tourism development": {}, | |
"tours": { | |
"bicycle tours": {}, | |
"boat tours": {}, | |
"city tours": {}, | |
"garden tours": {}, | |
"group tours": {}, | |
"harbour tours": {}, | |
"self-guided tours": {}, | |
"walking tours": {} | |
}, | |
"tours (travel packages)": {}, | |
"travel": {}, | |
"travel services": {} | |
}, | |
"wayfinding": {} | |
}, | |
"[events in recreation and tourism]": { | |
"circuses": {}, | |
"flower shows": {}, | |
"picnics": {}, | |
"sporting events": { | |
"sports tournaments": { | |
"Olympic Games": {}, | |
"Pan American Games": {} | |
} | |
} | |
}, | |
"[locations in recreation and tourism]": { | |
"amusement parks": {}, | |
"attractions": { | |
"Exhibition Place": {} | |
}, | |
"campgrounds": {}, | |
"casinos": {}, | |
"information kiosks": {}, | |
"multi-purpose venues": {}, | |
"places of amusement": {}, | |
"recreational facilities": { | |
"beaches": { | |
"clothing optional beaches": {} | |
}, | |
"boat facilities": { | |
"boat launches": {} | |
}, | |
"community centres": {}, | |
"labyrinths": {}, | |
"movie theatres": {}, | |
"parks": { | |
"dog off-leash areas": {}, | |
"garden parks": { | |
"botanical gardens": {}, | |
"children's gardens": {} | |
}, | |
"parkettes": {}, | |
"playgrounds": {}, | |
"provincial parks": {} | |
}, | |
"recreation centres": {}, | |
"snoezelen rooms": {}, | |
"sports facilities": { | |
"BMX bike parks": {}, | |
"[sports facilities by ownership/operation]": { | |
"city-operated sports facilities": {}, | |
"privately-operated sports facilities": {}, | |
"privately-owned sports facilities": {} | |
}, | |
"archery ranges": {}, | |
"arenas": {}, | |
"bocce courts": {}, | |
"bowling alleys": {}, | |
"fitness centres": { | |
"employee fitness centres": {}, | |
"municipal fitness centres": {} | |
}, | |
"golf courses": {}, | |
"gymnasiums": {}, | |
"ice rinks": { | |
"curling rinks": {}, | |
"indoor ice rinks": {}, | |
"outdoor ice rinks": {} | |
}, | |
"lawn bowling greens": {}, | |
"multi-sport watercourses": {}, | |
"racetrack": {}, | |
"running tracks": {}, | |
"skateboard parks": {}, | |
"ski centres": {}, | |
"sports fields": { | |
"baseball diamonds": {}, | |
"cricket pitches": {}, | |
"soccer fields": {} | |
}, | |
"stadiums": {}, | |
"swimming pools": { | |
"indoor pools": {}, | |
"outdoor pools": {}, | |
"splash pads": {}, | |
"wading pools": {} | |
}, | |
"tennis courts": {}, | |
"track and field centres": {}, | |
"volleyball courts": { | |
"beach volleyball courts": {} | |
}, | |
"water parks": {} | |
} | |
}, | |
"trail systems": { | |
"fitness trails": {}, | |
"nature trails": {} | |
}, | |
"zoos": {} | |
}, | |
"[materials in recreation and tourism]": { | |
"ice time": {}, | |
"visitor information": {}, | |
"visitor statistics": {} | |
}, | |
"[objects in recreation and tourism]": { | |
"admission tickets": {}, | |
"barbeques": {}, | |
"campfires": {}, | |
"go carts": {}, | |
"information pillars": {}, | |
"park furnishings": { | |
"chess tables": {}, | |
"drinking fountains": {}, | |
"park benches": { | |
"commemorative benches": {} | |
}, | |
"picnic tables": {}, | |
"planter boxes": {} | |
}, | |
"parks vehicles": {}, | |
"playground equipment": {}, | |
"recreation guides": {}, | |
"recreational watercraft": { | |
"canoes": {}, | |
"dragon boats": {}, | |
"pedal boats": {}, | |
"sailboats": {}, | |
"sea kayaks": {} | |
}, | |
"souvenirs": {}, | |
"sports equipment": { | |
"hockey helmets": {} | |
}, | |
"tents": {}, | |
"zoo animals": {} | |
}, | |
"[organizations in recreation and tourism]": { | |
"[organizations in tourism]": { | |
"accommodation providers": {}, | |
"tourism promotion agencies": {}, | |
"travel agencies": {}, | |
"travellers aid societies": {} | |
}, | |
"professional sports": {}, | |
"recreational organizations": { | |
"boating clubs": {}, | |
"bridge clubs": {} | |
}, | |
"sports clubs": {} | |
}, | |
"[people in recreation and tourism]": { | |
"athletes": {}, | |
"greeters": {}, | |
"lifeguards": {}, | |
"tour guides": {}, | |
"visitors": {} | |
}, | |
"[rules in recreation and tourism]": { | |
"customs regulations": {}, | |
"fishing licences": {}, | |
"hunting licences": {}, | |
"lottery licences": {}, | |
"recreation policies": { | |
"swim policy": {} | |
} | |
} | |
}, | |
"SCIENCE & TECHNOLOGY (SC)": { | |
"[activities in science and technology]": { | |
"audio recording": {}, | |
"engineering": {}, | |
"technology acquisition": {}, | |
"videography": {} | |
}, | |
"[events in science and technology]": {}, | |
"[objects in science and technology]": { | |
"information and communication technology": { | |
"computer equipment": {}, | |
"computer networks": { | |
"internet": { | |
"wireless internet": {} | |
}, | |
"intranets": {} | |
}, | |
"software": { | |
"application software": { | |
"geographic information systems": {}, | |
"mobile application software": {} | |
}, | |
"system software": {} | |
}, | |
"telecommunication infrastructure": { | |
"Voice over internet protocol": {}, | |
"fax": {}, | |
"landline telephones": {}, | |
"mobile phones": {}, | |
"telecommunications towers": {}, | |
"text telephones": {} | |
} | |
} | |
}, | |
"[people in science and technology]": { | |
"engineers": {} | |
} | |
}, | |
"TRANSPORTATION (SC)": { | |
"[activities in transportation]": { | |
"[transportation management]": { | |
"air traffic control": {}, | |
"traffic management": { | |
"parking enforcement": {}, | |
"parking infractions": {}, | |
"towing": {}, | |
"traffic calming": {}, | |
"traffic signal timing": { | |
"pedestrian priority phase": {} | |
}, | |
"traffic violations": {} | |
}, | |
"transportation infrastructure management": { | |
"boulevard maintenance": {}, | |
"highway lighting": {}, | |
"pothole reporting": {}, | |
"road operations": { | |
"bridge maintenance": {}, | |
"bridge rehabilitation": {}, | |
"road maintenance": { | |
"road repairs": {}, | |
"snow management": { | |
"salting": {}, | |
"sanding": {}, | |
"snow advisory reports": {}, | |
"snow ploughing": { | |
"mechanical sidewalk clearing (snow)": {} | |
}, | |
"snow removal": {} | |
}, | |
"street cleaning": {} | |
}, | |
"road reconstruction": {}, | |
"road restrictions": { | |
"road closures": {} | |
}, | |
"road resurfacing": {}, | |
"sidewalk repairs": {} | |
}, | |
"road salt management": {}, | |
"street lighting": {}, | |
"transportation projects": {} | |
}, | |
"transportation planning": { | |
"transportation research": { | |
"travel surveys": {} | |
} | |
} | |
}, | |
"bicycle sharing": {}, | |
"car sharing": {}, | |
"carpooling": {}, | |
"commuting": {}, | |
"parking": { | |
"bicycle parking": {}, | |
"bus parking": {}, | |
"on-street parking": {}, | |
"permit parking": { | |
"accessible permit parking": {} | |
} | |
}, | |
"taxicab driver training": {}, | |
"transportation": { | |
"air transportation": {}, | |
"cycling": {}, | |
"driving": {}, | |
"public transit": { | |
"specialized paratransit services": {} | |
}, | |
"rail transportation": {}, | |
"road transportation": {}, | |
"walking": {}, | |
"water transportation": {} | |
} | |
}, | |
"[attributes in transportation]": { | |
"[traffic characteristics]": { | |
"congestion": {}, | |
"traffic direction": {}, | |
"traffic speed": {}, | |
"traffic volume": {} | |
}, | |
"[transportation equipment conditions]": { | |
"damaged street poles": {}, | |
"street light outages": {}, | |
"traffic signal malfunctions": {} | |
}, | |
"road characteristics": { | |
"curb cuts": {}, | |
"pavement markings": { | |
"sharrows": {}, | |
"yellow grid markings": {}, | |
"zebra markings": {} | |
}, | |
"street names": {}, | |
"traffic calming measures": { | |
"curb extensions": { | |
"chicanes (traffic calming)": {}, | |
"chokers (traffic calming)": {} | |
}, | |
"curb radius reduction": {}, | |
"directional closures": {}, | |
"full closures (traffic calming)": {}, | |
"intersection channelization": {}, | |
"raised medians": {}, | |
"speed humps": {}, | |
"textured crosswalks": {}, | |
"textured intersections": {}, | |
"traffic island diverters": {} | |
} | |
}, | |
"road conditions": { | |
"potholes": {}, | |
"road safety": {}, | |
"traffic": {}, | |
"windrows": {} | |
}, | |
"transportation schedules": { | |
"transit schedules": { | |
"ferry boat schedules": {} | |
} | |
} | |
}, | |
"[events in transportation]": { | |
"aircraft accidents": {}, | |
"collisions": {}, | |
"derailments": {}, | |
"marine accidents": {}, | |
"snow emergencies": {} | |
}, | |
"[locations in transportation]": { | |
"transportation infrastructure": { | |
"bikeway networks": { | |
"bike lanes": {}, | |
"bike paths": {} | |
}, | |
"bridges": { | |
"pedestrian bridges": {} | |
}, | |
"culverts": {}, | |
"ditches": {}, | |
"pedestrian infrastructure": { | |
"pedestrian crossovers": {}, | |
"pedestrian islands": {}, | |
"pedestrian walkways": { | |
"sidewalks": {}, | |
"underground walkways": {} | |
} | |
}, | |
"ports": {}, | |
"railway crossings": {}, | |
"road networks": { | |
"intersections": { | |
"grade separations": { | |
"overpasses": {}, | |
"underpasses": {} | |
}, | |
"raised intersections": {}, | |
"signalized intersections": {}, | |
"traffic circles": {} | |
}, | |
"laneways": {}, | |
"roads": { | |
"[parts of roads]": { | |
"boulevards": {}, | |
"curbs": {}, | |
"lanes": { | |
"high occupancy vehicle lanes": {} | |
}, | |
"property access (roads)": {}, | |
"ramps (highways)": {}, | |
"road barriers": { | |
"bollards": {}, | |
"guardrails": {}, | |
"medians (roads)": {} | |
}, | |
"road shoulders": {}, | |
"through highways": {} | |
}, | |
"[roads by classification]": { | |
"collector roads": {}, | |
"expressways": {}, | |
"highways": { | |
"electronic toll highways": {}, | |
"provincial highways": {} | |
}, | |
"local roads": {}, | |
"major arterial roads": {}, | |
"minor arterial roads": {} | |
}, | |
"[roads by form]": { | |
"cul-de-sacs": {}, | |
"dead-end streets": {} | |
}, | |
"[roads by specific function]": { | |
"detours": {}, | |
"emergency snow routes": {} | |
}, | |
"unassumed roads": {} | |
} | |
}, | |
"transit networks": { | |
"light rail transit": {}, | |
"subway stations": {}, | |
"subways": {}, | |
"transit routes": { | |
"bus routes": { | |
"express bus routes": {} | |
}, | |
"streetcar routes": {}, | |
"subway routes": {} | |
}, | |
"transit stops": { | |
"bus stops": {}, | |
"streetcar stops": {} | |
} | |
}, | |
"transportation facilities": { | |
"airports": {}, | |
"parking facilities": { | |
"bicycle parking stations": {}, | |
"carparks": { | |
"attendant-operated carparks": {} | |
}, | |
"laybys": {}, | |
"loading zones": {}, | |
"metered parking spaces": {}, | |
"parking pads": {}, | |
"parking spaces": {}, | |
"taxicab stands": {} | |
}, | |
"stations": { | |
"railway stations": {}, | |
"terminals": { | |
"coach terminals": {} | |
} | |
} | |
} | |
} | |
}, | |
"[materials in transportation]": { | |
"[rates, fares, and tolls]": { | |
"fares": { | |
"transit fares": {} | |
}, | |
"parking fees": {}, | |
"parking fines": {}, | |
"road tolls": {} | |
}, | |
"pavements": {}, | |
"road salt": {}, | |
"traveller information": { | |
"driving records": {}, | |
"traffic data": {} | |
} | |
}, | |
"[objects in transportation]": { | |
"[vehicles (conveyances)]": { | |
"aircraft": { | |
"airplanes": {}, | |
"helicopters": {}, | |
"hot air balloons": {} | |
}, | |
"land vehicles": { | |
"[land vehicles by function]": { | |
"city vehicles": { | |
"dump trucks (fleet)": {}, | |
"green fleet": {}, | |
"pickup trucks (fleet)": {}, | |
"vans (fleet)": {} | |
}, | |
"commercial vehicles": { | |
"buses (motorcoaches)": { | |
"school buses": {} | |
}, | |
"trucks": { | |
"heavy trucks": {} | |
} | |
}, | |
"road maintenance vehicles": { | |
"hired equipment (vehicles)": {}, | |
"snow melting machines": {}, | |
"snow ploughs": { | |
"sidewalk snow ploughs": {} | |
}, | |
"street sweepers": {} | |
}, | |
"transit vehicles": { | |
"buses": { | |
"express buses": {} | |
}, | |
"light rail vehicles": {}, | |
"streetcars": {}, | |
"subway trains": {} | |
} | |
}, | |
"motor vehicles": { | |
"automobiles": { | |
"limousines": {}, | |
"taxicabs": { | |
"accessible taxicabs": {} | |
} | |
}, | |
"electric scooters": {}, | |
"low speed vehicles": {}, | |
"mopeds": {}, | |
"motorcycles": { | |
"limited-speed motorcycles": {}, | |
"pocket bikes": {} | |
}, | |
"power-assisted bicycles": {}, | |
"segway personal transporters": {} | |
}, | |
"non-motorized vehicles": { | |
"bicycles": { | |
"bicycles (abandoned)": {} | |
}, | |
"horse-drawn vehicles": {}, | |
"pedicabs": {} | |
}, | |
"trains": {} | |
}, | |
"vessels": { | |
"ferries": {}, | |
"ships": {}, | |
"tour boats": {}, | |
"water taxis": {} | |
} | |
}, | |
"cycling maps": {}, | |
"fare media": { | |
"ferry tickets": {}, | |
"transfers": {}, | |
"transit passes": {} | |
}, | |
"garages": {}, | |
"parking receipts": {}, | |
"parking tags": {}, | |
"transit maps": {}, | |
"transportation equipment": { | |
"bicycle helmets": {}, | |
"bicycle parking equipment": { | |
"bicycle lockers": {}, | |
"bicycle stands": {} | |
}, | |
"child safety seats": {}, | |
"parking machines": {}, | |
"parking meters": {}, | |
"street furniture": { | |
"benches (street furniture)": {}, | |
"litter receptacles (street furniture)": {}, | |
"multi-publication boxes": {}, | |
"street poles": { | |
"street light poles": {}, | |
"utility poles": {} | |
}, | |
"transit shelters": {} | |
}, | |
"street lights": {}, | |
"traffic control systems": { | |
"controller cabinets (traffic)": {}, | |
"detector loops": {}, | |
"pedestrian pushbuttons": {}, | |
"signal controllers": {}, | |
"traffic cameras": { | |
"red light cameras": {} | |
}, | |
"traffic signals": { | |
"pedestrian signals": { | |
"audible pedestrian signals": {}, | |
"count down signals": {} | |
}, | |
"signal heads": {} | |
} | |
}, | |
"traffic signs": { | |
"stop signs": {}, | |
"street name signs": {} | |
} | |
} | |
}, | |
"[organizations in transportation]": { | |
"transportation organizations": { | |
"airlines": {}, | |
"bicycle shops": {}, | |
"bicycle user groups": {}, | |
"carriers (transportation)": { | |
"bus lines": {} | |
}, | |
"port authorities": {}, | |
"railways": {}, | |
"regional transportation agencies": {}, | |
"taxi companies": {}, | |
"urban transit systems": { | |
"Toronto Transit Commission": {} | |
} | |
} | |
}, | |
"[people in transportation]": { | |
"commercial vehicle operators": {}, | |
"commuters": {}, | |
"cyclists": {}, | |
"drivers": { | |
"motorists": {}, | |
"taxicab drivers": {} | |
}, | |
"passengers": {}, | |
"pedestrians": {}, | |
"taxicab owners": {} | |
}, | |
"[rules in transportation]": { | |
"construction permits (right-of-way)": {}, | |
"drivers' licences": { | |
"city drivers' permits": {} | |
}, | |
"load restrictions": {}, | |
"motor vehicle safety regulations": {}, | |
"operating licences": {}, | |
"parking regulations": { | |
"angle parking": {}, | |
"parking prohibitions": {}, | |
"standing prohibitions": {}, | |
"stopping prohibitions": {} | |
}, | |
"street occupation permits": {}, | |
"traffic regulations": { | |
"entry prohibitions (traffic)": {}, | |
"heavy truck prohibitions": {}, | |
"speed limits": {}, | |
"turn prohibitions (traffic)": {} | |
}, | |
"vehicle registration": { | |
"commercial vehicle registration": {} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment