mnemorandom 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (358) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +5 -0
  3. data/CODE_OF_CONDUCT.md +70 -0
  4. data/Gemfile +12 -0
  5. data/Gemfile.lock +49 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +43 -0
  8. data/Rakefile +12 -0
  9. data/bin/console +15 -0
  10. data/bin/setup +8 -0
  11. data/lib/mnemorandom/version.rb +5 -0
  12. data/lib/mnemorandom.rb +30 -0
  13. data/vendor/git/corpora.git/.editorconfig +16 -0
  14. data/vendor/git/corpora.git/.github/workflows/test.yml +39 -0
  15. data/vendor/git/corpora.git/.gitignore +4 -0
  16. data/vendor/git/corpora.git/.travis.yml +17 -0
  17. data/vendor/git/corpora.git/Gruntfile.js +23 -0
  18. data/vendor/git/corpora.git/README.md +46 -0
  19. data/vendor/git/corpora.git/data/animals/ant_anatomy.json +107 -0
  20. data/vendor/git/corpora.git/data/animals/birds_antarctica.json +106 -0
  21. data/vendor/git/corpora.git/data/animals/birds_north_america.json +1448 -0
  22. data/vendor/git/corpora.git/data/animals/cats.json +100 -0
  23. data/vendor/git/corpora.git/data/animals/cephalopod_anatomy.json +281 -0
  24. data/vendor/git/corpora.git/data/animals/collateral_adjectives.json +1103 -0
  25. data/vendor/git/corpora.git/data/animals/common.json +139 -0
  26. data/vendor/git/corpora.git/data/animals/dinosaurs.json +1455 -0
  27. data/vendor/git/corpora.git/data/animals/dog_names.json +1005 -0
  28. data/vendor/git/corpora.git/data/animals/dogs-en-de.json +1814 -0
  29. data/vendor/git/corpora.git/data/animals/dogs.json +459 -0
  30. data/vendor/git/corpora.git/data/animals/donkeys.json +174 -0
  31. data/vendor/git/corpora.git/data/animals/horses.json +349 -0
  32. data/vendor/git/corpora.git/data/animals/ponies.json +175 -0
  33. data/vendor/git/corpora.git/data/animals/rabbits.json +55 -0
  34. data/vendor/git/corpora.git/data/archetypes/artifact.json +53 -0
  35. data/vendor/git/corpora.git/data/archetypes/character.json +257 -0
  36. data/vendor/git/corpora.git/data/archetypes/event.json +107 -0
  37. data/vendor/git/corpora.git/data/archetypes/setting.json +179 -0
  38. data/vendor/git/corpora.git/data/architecture/passages.json +35 -0
  39. data/vendor/git/corpora.git/data/architecture/rooms.json +113 -0
  40. data/vendor/git/corpora.git/data/art/isms.json +146 -0
  41. data/vendor/git/corpora.git/data/books/academic_subjects.json +261 -0
  42. data/vendor/git/corpora.git/data/books/bestsellers.json +258 -0
  43. data/vendor/git/corpora.git/data/colors/crayola.json +485 -0
  44. data/vendor/git/corpora.git/data/colors/dulux.json +42242 -0
  45. data/vendor/git/corpora.git/data/colors/fictional.json +47 -0
  46. data/vendor/git/corpora.git/data/colors/google_material_colors.json +294 -0
  47. data/vendor/git/corpora.git/data/colors/paints.json +4005 -0
  48. data/vendor/git/corpora.git/data/colors/palettes.json +1403 -0
  49. data/vendor/git/corpora.git/data/colors/web_colors.json +565 -0
  50. data/vendor/git/corpora.git/data/colors/wikipedia.json +4070 -0
  51. data/vendor/git/corpora.git/data/colors/xkcd.json +4749 -0
  52. data/vendor/git/corpora.git/data/corporations/cars.json +71 -0
  53. data/vendor/git/corpora.git/data/corporations/charities.json +105 -0
  54. data/vendor/git/corpora.git/data/corporations/djia.json +125 -0
  55. data/vendor/git/corpora.git/data/corporations/fortune500.json +506 -0
  56. data/vendor/git/corpora.git/data/corporations/industries.json +155 -0
  57. data/vendor/git/corpora.git/data/corporations/nasdaq.json +409 -0
  58. data/vendor/git/corpora.git/data/corporations/newspapers.json +107 -0
  59. data/vendor/git/corpora.git/data/divination/hexagrams.json +261 -0
  60. data/vendor/git/corpora.git/data/divination/tarot_interpretations.json +2593 -0
  61. data/vendor/git/corpora.git/data/divination/zodiac.json +274 -0
  62. data/vendor/git/corpora.git/data/film-tv/Westworld_quotes.json +326 -0
  63. data/vendor/git/corpora.git/data/film-tv/extended-netflix-categories.json +605 -0
  64. data/vendor/git/corpora.git/data/film-tv/game-of-thrones-houses.json +277 -0
  65. data/vendor/git/corpora.git/data/film-tv/iab_categories.json +1571 -0
  66. data/vendor/git/corpora.git/data/film-tv/look-around-you-shakespeare.json +28 -0
  67. data/vendor/git/corpora.git/data/film-tv/netflix-categories.json +216 -0
  68. data/vendor/git/corpora.git/data/film-tv/popular-movies.json +263 -0
  69. data/vendor/git/corpora.git/data/film-tv/tv_shows.json +1005 -0
  70. data/vendor/git/corpora.git/data/foods/apple_cultivars.json +1005 -0
  71. data/vendor/git/corpora.git/data/foods/bad_beers.json +104 -0
  72. data/vendor/git/corpora.git/data/foods/beer_categories.json +631 -0
  73. data/vendor/git/corpora.git/data/foods/beer_styles.json +144 -0
  74. data/vendor/git/corpora.git/data/foods/breads_and_pastries.json +62 -0
  75. data/vendor/git/corpora.git/data/foods/combine.json +96 -0
  76. data/vendor/git/corpora.git/data/foods/condiments.json +104 -0
  77. data/vendor/git/corpora.git/data/foods/curds.json +1969 -0
  78. data/vendor/git/corpora.git/data/foods/fruits.json +85 -0
  79. data/vendor/git/corpora.git/data/foods/herbs_n_spices.json +202 -0
  80. data/vendor/git/corpora.git/data/foods/hot_peppers.json +69 -0
  81. data/vendor/git/corpora.git/data/foods/iba_cocktails.json +82 -0
  82. data/vendor/git/corpora.git/data/foods/menuItems.json +1005 -0
  83. data/vendor/git/corpora.git/data/foods/pizzaToppings.json +30 -0
  84. data/vendor/git/corpora.git/data/foods/sandwiches.json +855 -0
  85. data/vendor/git/corpora.git/data/foods/sausages.json +208 -0
  86. data/vendor/git/corpora.git/data/foods/scotch_whiskey.json +82 -0
  87. data/vendor/git/corpora.git/data/foods/tea.json +533 -0
  88. data/vendor/git/corpora.git/data/foods/vegetable_cooking_times.json +310 -0
  89. data/vendor/git/corpora.git/data/foods/vegetables.json +125 -0
  90. data/vendor/git/corpora.git/data/foods/verbs.json +287 -0
  91. data/vendor/git/corpora.git/data/foods/wine_descriptions.json +108 -0
  92. data/vendor/git/corpora.git/data/games/League_of_legends_champion_names.json +150 -0
  93. data/vendor/git/corpora.git/data/games/bannedGames/argentina/bannedList.json +9 -0
  94. data/vendor/git/corpora.git/data/games/bannedGames/brazil/bannedList.json +53 -0
  95. data/vendor/git/corpora.git/data/games/bannedGames/china/bannedList.json +25 -0
  96. data/vendor/git/corpora.git/data/games/bannedGames/denmark/bannedList.json +9 -0
  97. data/vendor/git/corpora.git/data/games/bannedGames/germany/bannedList.json +457 -0
  98. data/vendor/git/corpora.git/data/games/bannedGames/saudi_arabia/bannedList.json +69 -0
  99. data/vendor/git/corpora.git/data/games/board_games.json +218 -0
  100. data/vendor/git/corpora.git/data/games/cluedo.json +65 -0
  101. data/vendor/git/corpora.git/data/games/dark_souls_iii_messages.json +367 -0
  102. data/vendor/git/corpora.git/data/games/jeopardy_questions.json +9005 -0
  103. data/vendor/git/corpora.git/data/games/pokemon.json +20684 -0
  104. data/vendor/git/corpora.git/data/games/rpg/rpg_designers.json +202 -0
  105. data/vendor/git/corpora.git/data/games/rpg/rpg_games.json +859 -0
  106. data/vendor/git/corpora.git/data/games/rpg/rpg_settings.json +103 -0
  107. data/vendor/git/corpora.git/data/games/scrabble.json +33 -0
  108. data/vendor/git/corpora.git/data/games/street_fighter_ii.json +73 -0
  109. data/vendor/git/corpora.git/data/games/trivial_pursuit.json +29 -0
  110. data/vendor/git/corpora.git/data/games/wrestling_moves.json +284 -0
  111. data/vendor/git/corpora.git/data/games/zelda.json +372 -0
  112. data/vendor/git/corpora.git/data/geography/anthropogenic_features.json +143 -0
  113. data/vendor/git/corpora.git/data/geography/canada_provinces_and_territories.json +16 -0
  114. data/vendor/git/corpora.git/data/geography/canadian_municipalities.json +606 -0
  115. data/vendor/git/corpora.git/data/geography/countries.json +203 -0
  116. data/vendor/git/corpora.git/data/geography/countries_with_capitals.json +202 -0
  117. data/vendor/git/corpora.git/data/geography/english_towns_cities.json +997 -0
  118. data/vendor/git/corpora.git/data/geography/environmental_hazards.json +76 -0
  119. data/vendor/git/corpora.git/data/geography/geographic_features.json +514 -0
  120. data/vendor/git/corpora.git/data/geography/japanese_prefectures.json +99 -0
  121. data/vendor/git/corpora.git/data/geography/london_underground_stations.json +1352 -0
  122. data/vendor/git/corpora.git/data/geography/nationalities.json +232 -0
  123. data/vendor/git/corpora.git/data/geography/norwegian_cities.json +370 -0
  124. data/vendor/git/corpora.git/data/geography/nyc_neighborhood_zips.json +395 -0
  125. data/vendor/git/corpora.git/data/geography/oceans.json +305 -0
  126. data/vendor/git/corpora.git/data/geography/rivers.json +1101 -0
  127. data/vendor/git/corpora.git/data/geography/sf_neighborhoods.json +455 -0
  128. data/vendor/git/corpora.git/data/geography/us_airport_codes.json +373 -0
  129. data/vendor/git/corpora.git/data/geography/us_cities.json +5006 -0
  130. data/vendor/git/corpora.git/data/geography/us_counties.json +2979 -0
  131. data/vendor/git/corpora.git/data/geography/us_metropolitan_areas.json +4488 -0
  132. data/vendor/git/corpora.git/data/geography/us_state_capitals.json +205 -0
  133. data/vendor/git/corpora.git/data/geography/venues.json +3656 -0
  134. data/vendor/git/corpora.git/data/geography/winds.json +117 -0
  135. data/vendor/git/corpora.git/data/governments/governmentForms.json +28 -0
  136. data/vendor/git/corpora.git/data/governments/mass-surveillance-project-names.json +215 -0
  137. data/vendor/git/corpora.git/data/governments/nsa_projects.json +213 -0
  138. data/vendor/git/corpora.git/data/governments/uk_political_parties.json +623 -0
  139. data/vendor/git/corpora.git/data/governments/us_federal_agencies.json +128 -0
  140. data/vendor/git/corpora.git/data/governments/us_mil_operations.json +3613 -0
  141. data/vendor/git/corpora.git/data/humans/2016_us_presidential_candidates.json +7329 -0
  142. data/vendor/git/corpora.git/data/humans/atus_activities.json +4617 -0
  143. data/vendor/git/corpora.git/data/humans/authors.json +506 -0
  144. data/vendor/git/corpora.git/data/humans/bodyParts.json +46 -0
  145. data/vendor/git/corpora.git/data/humans/britishActors.json +705 -0
  146. data/vendor/git/corpora.git/data/humans/celebrities.json +998 -0
  147. data/vendor/git/corpora.git/data/humans/descriptions.json +398 -0
  148. data/vendor/git/corpora.git/data/humans/englishHonorifics.json +226 -0
  149. data/vendor/git/corpora.git/data/humans/familyRelations.json +77 -0
  150. data/vendor/git/corpora.git/data/humans/famousDuos.json +194 -0
  151. data/vendor/git/corpora.git/data/humans/firstNames.json +400 -0
  152. data/vendor/git/corpora.git/data/humans/genders.json +82 -0
  153. data/vendor/git/corpora.git/data/humans/human_universals.json +374 -0
  154. data/vendor/git/corpora.git/data/humans/lastNames.json +205 -0
  155. data/vendor/git/corpora.git/data/humans/moods.json +771 -0
  156. data/vendor/git/corpora.git/data/humans/norwayFirstNamesBoys.json +822 -0
  157. data/vendor/git/corpora.git/data/humans/norwayFirstNamesGirls.json +929 -0
  158. data/vendor/git/corpora.git/data/humans/norwayLastNames.json +1003 -0
  159. data/vendor/git/corpora.git/data/humans/occupations.json +976 -0
  160. data/vendor/git/corpora.git/data/humans/prefixes.json +88 -0
  161. data/vendor/git/corpora.git/data/humans/richpeople.json +305 -0
  162. data/vendor/git/corpora.git/data/humans/scientists.json +333 -0
  163. data/vendor/git/corpora.git/data/humans/spanishFirstNames.json +460 -0
  164. data/vendor/git/corpora.git/data/humans/spanishLastNames.json +108 -0
  165. data/vendor/git/corpora.git/data/humans/spinalTapDrummers.json +93 -0
  166. data/vendor/git/corpora.git/data/humans/suffixes.json +50 -0
  167. data/vendor/git/corpora.git/data/humans/thirdPersonPronouns.json +9749 -0
  168. data/vendor/git/corpora.git/data/humans/tolkienCharacterNames.json +600 -0
  169. data/vendor/git/corpora.git/data/humans/us_presidents.json +2743 -0
  170. data/vendor/git/corpora.git/data/humans/wrestlers.json +99 -0
  171. data/vendor/git/corpora.git/data/instructions/burroughsinstructionset.json +216 -0
  172. data/vendor/git/corpora.git/data/instructions/laundry_care.json +149 -0
  173. data/vendor/git/corpora.git/data/materials/abridged-body-fluids.json +34 -0
  174. data/vendor/git/corpora.git/data/materials/building-materials.json +50 -0
  175. data/vendor/git/corpora.git/data/materials/carbon-allotropes.json +19 -0
  176. data/vendor/git/corpora.git/data/materials/decorative-stones.json +99 -0
  177. data/vendor/git/corpora.git/data/materials/fabrics.json +211 -0
  178. data/vendor/git/corpora.git/data/materials/fibers.json +33 -0
  179. data/vendor/git/corpora.git/data/materials/fictional-materials.json +170 -0
  180. data/vendor/git/corpora.git/data/materials/gemstones.json +357 -0
  181. data/vendor/git/corpora.git/data/materials/layperson-metals.json +23 -0
  182. data/vendor/git/corpora.git/data/materials/metals.json +97 -0
  183. data/vendor/git/corpora.git/data/materials/natural-materials.json +15 -0
  184. data/vendor/git/corpora.git/data/materials/packaging.json +32 -0
  185. data/vendor/git/corpora.git/data/materials/plastic-brands.json +9 -0
  186. data/vendor/git/corpora.git/data/materials/sculpture-materials.json +49 -0
  187. data/vendor/git/corpora.git/data/materials/technical-fabrics.json +16 -0
  188. data/vendor/git/corpora.git/data/mathematics/fibonnaciSequence.json +1492 -0
  189. data/vendor/git/corpora.git/data/mathematics/primes.json +1015 -0
  190. data/vendor/git/corpora.git/data/mathematics/primes_binary.json +1005 -0
  191. data/vendor/git/corpora.git/data/mathematics/trigonometry.json +24 -0
  192. data/vendor/git/corpora.git/data/medicine/cancer.json +1007 -0
  193. data/vendor/git/corpora.git/data/medicine/diagnoses.json +1006 -0
  194. data/vendor/git/corpora.git/data/medicine/diseases.json +1007 -0
  195. data/vendor/git/corpora.git/data/medicine/drugNameStems.json +470 -0
  196. data/vendor/git/corpora.git/data/medicine/drugs.json +1006 -0
  197. data/vendor/git/corpora.git/data/medicine/hospitals.json +963 -0
  198. data/vendor/git/corpora.git/data/medicine/infectious_diseases.json +122 -0
  199. data/vendor/git/corpora.git/data/medicine/symptoms.json +551 -0
  200. data/vendor/git/corpora.git/data/music/a_list_of_guitar_manufacturers.json +722 -0
  201. data/vendor/git/corpora.git/data/music/bands_that_have_opened_for_tool.json +37 -0
  202. data/vendor/git/corpora.git/data/music/female_classical_guitarists.json +260 -0
  203. data/vendor/git/corpora.git/data/music/genres.json +375 -0
  204. data/vendor/git/corpora.git/data/music/hamilton_musical_obcrecording_actors_characters.json +63 -0
  205. data/vendor/git/corpora.git/data/music/instruments.json +60 -0
  206. data/vendor/git/corpora.git/data/music/media-formats.json +62 -0
  207. data/vendor/git/corpora.git/data/music/mtv_day_one.json +1257 -0
  208. data/vendor/git/corpora.git/data/music/rock_hall_of_fame.json +891 -0
  209. data/vendor/git/corpora.git/data/music/xxl_freshman.json +17 -0
  210. data/vendor/git/corpora.git/data/mythology/egyptian_gods.json +279 -0
  211. data/vendor/git/corpora.git/data/mythology/greek_gods.json +36 -0
  212. data/vendor/git/corpora.git/data/mythology/greek_monsters.json +29 -0
  213. data/vendor/git/corpora.git/data/mythology/greek_myths_master.json +98 -0
  214. data/vendor/git/corpora.git/data/mythology/greek_titans.json +38 -0
  215. data/vendor/git/corpora.git/data/mythology/hebrew_god.json +69 -0
  216. data/vendor/git/corpora.git/data/mythology/lovecraft.json +100 -0
  217. data/vendor/git/corpora.git/data/mythology/monsters.json +91 -0
  218. data/vendor/git/corpora.git/data/mythology/norse_gods.json +75 -0
  219. data/vendor/git/corpora.git/data/mythology/roman_deities.json +30 -0
  220. data/vendor/git/corpora.git/data/objects/clothing.json +95 -0
  221. data/vendor/git/corpora.git/data/objects/corpora_winners.json +32 -0
  222. data/vendor/git/corpora.git/data/objects/objects.json +452 -0
  223. data/vendor/git/corpora.git/data/objects/premodern_weapons.json +55 -0
  224. data/vendor/git/corpora.git/data/plants/cannabis.json +426 -0
  225. data/vendor/git/corpora.git/data/plants/flowers.json +67 -0
  226. data/vendor/git/corpora.git/data/plants/plants.json +2526 -0
  227. data/vendor/git/corpora.git/data/psychology/personality_test.json +305 -0
  228. data/vendor/git/corpora.git/data/religion/christian_saints.json +6982 -0
  229. data/vendor/git/corpora.git/data/religion/fictional_religions.json +267 -0
  230. data/vendor/git/corpora.git/data/religion/parody_religions.json +20 -0
  231. data/vendor/git/corpora.git/data/religion/religions.json +880 -0
  232. data/vendor/git/corpora.git/data/science/elements.json +2835 -0
  233. data/vendor/git/corpora.git/data/science/hail_size.json +85 -0
  234. data/vendor/git/corpora.git/data/science/meteorology.json +659 -0
  235. data/vendor/git/corpora.git/data/science/minor_planets.json +1005 -0
  236. data/vendor/git/corpora.git/data/science/planets.json +241 -0
  237. data/vendor/git/corpora.git/data/science/pregnancy.json +220 -0
  238. data/vendor/git/corpora.git/data/science/toxic_chemicals.json +385 -0
  239. data/vendor/git/corpora.git/data/science/weather_conditions.json +269 -0
  240. data/vendor/git/corpora.git/data/societies_and_groups/animal_welfare.json +408 -0
  241. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/australia.json +24 -0
  242. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/canada.json +54 -0
  243. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/china.json +6 -0
  244. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/egypt.json +9 -0
  245. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/european_union.json +31 -0
  246. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/india.json +35 -0
  247. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/iran.json +7 -0
  248. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/israel.json +13 -0
  249. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/kazakhstan.json +11 -0
  250. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/russia.json +23 -0
  251. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/saudi_arabia.json +9 -0
  252. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/tunisia.json +3 -0
  253. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/turkey.json +15 -0
  254. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/ukraine.json +4 -0
  255. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_arab_emirates.json +31 -0
  256. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_kingdom.json +82 -0
  257. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_nations.json +37 -0
  258. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_states.json +73 -0
  259. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/coeducational_fraternities.json +107 -0
  260. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/defunct.json +107 -0
  261. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/fraternities.json +884 -0
  262. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/professional.json +574 -0
  263. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/service.json +90 -0
  264. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/sororities.json +674 -0
  265. data/vendor/git/corpora.git/data/societies_and_groups/semi_secret.json +146 -0
  266. data/vendor/git/corpora.git/data/sports/football/epl_teams.json +145 -0
  267. data/vendor/git/corpora.git/data/sports/football/laliga_teams.json +125 -0
  268. data/vendor/git/corpora.git/data/sports/football/serieA.json +104 -0
  269. data/vendor/git/corpora.git/data/sports/mlb_teams.json +245 -0
  270. data/vendor/git/corpora.git/data/sports/nba_mvps.json +254 -0
  271. data/vendor/git/corpora.git/data/sports/nba_teams.json +244 -0
  272. data/vendor/git/corpora.git/data/sports/nfl_teams.json +261 -0
  273. data/vendor/git/corpora.git/data/sports/nhl_teams.json +244 -0
  274. data/vendor/git/corpora.git/data/sports/olympics.json +572 -0
  275. data/vendor/git/corpora.git/data/sports/sports.json +972 -0
  276. data/vendor/git/corpora.git/data/technology/appliances.json +112 -0
  277. data/vendor/git/corpora.git/data/technology/computer_sciences.json +203 -0
  278. data/vendor/git/corpora.git/data/technology/fireworks.json +45 -0
  279. data/vendor/git/corpora.git/data/technology/guns_n_rifles.json +65 -0
  280. data/vendor/git/corpora.git/data/technology/knots.json +217 -0
  281. data/vendor/git/corpora.git/data/technology/lisp.json +70 -0
  282. data/vendor/git/corpora.git/data/technology/new_technologies.json +534 -0
  283. data/vendor/git/corpora.git/data/technology/photo_sharing_websites.json +42 -0
  284. data/vendor/git/corpora.git/data/technology/programming_languages.json +707 -0
  285. data/vendor/git/corpora.git/data/technology/programming_languages_popular.json +38 -0
  286. data/vendor/git/corpora.git/data/technology/social_networking_websites.json +217 -0
  287. data/vendor/git/corpora.git/data/technology/video_hosting_websites.json +98 -0
  288. data/vendor/git/corpora.git/data/transportation/commercial-aircraft.json +242 -0
  289. data/vendor/git/corpora.git/data/transportation/launchVehicleList.json +549 -0
  290. data/vendor/git/corpora.git/data/travel/lcc.json +378 -0
  291. data/vendor/git/corpora.git/data/words/adjs.json +965 -0
  292. data/vendor/git/corpora.git/data/words/adverbs.json +330 -0
  293. data/vendor/git/corpora.git/data/words/closed_pairs.json +203 -0
  294. data/vendor/git/corpora.git/data/words/common.json +986 -0
  295. data/vendor/git/corpora.git/data/words/compounds.json +13380 -0
  296. data/vendor/git/corpora.git/data/words/crash_blossoms.json +68 -0
  297. data/vendor/git/corpora.git/data/words/eggcorns.json +183 -0
  298. data/vendor/git/corpora.git/data/words/emoji/codePage437.json +261 -0
  299. data/vendor/git/corpora.git/data/words/emoji/cute_kaomoji.json +36 -0
  300. data/vendor/git/corpora.git/data/words/emoji/emoji.json +869 -0
  301. data/vendor/git/corpora.git/data/words/encouraging_words.json +53 -0
  302. data/vendor/git/corpora.git/data/words/ergative_verbs.json +286 -0
  303. data/vendor/git/corpora.git/data/words/expletives.json +615 -0
  304. data/vendor/git/corpora.git/data/words/harvard_sentences.json +728 -0
  305. data/vendor/git/corpora.git/data/words/infinitive_verbs.json +635 -0
  306. data/vendor/git/corpora.git/data/words/interjections.json +223 -0
  307. data/vendor/git/corpora.git/data/words/literature/infinitejest.json +155 -0
  308. data/vendor/git/corpora.git/data/words/literature/lovecraft_words.json +61 -0
  309. data/vendor/git/corpora.git/data/words/literature/mr_men_little_miss.json +94 -0
  310. data/vendor/git/corpora.git/data/words/literature/shakespeare_phrases.json +161 -0
  311. data/vendor/git/corpora.git/data/words/literature/shakespeare_sonnets.json +2929 -0
  312. data/vendor/git/corpora.git/data/words/literature/shakespeare_words.json +324 -0
  313. data/vendor/git/corpora.git/data/words/literature/technology_quotes.json +79 -0
  314. data/vendor/git/corpora.git/data/words/nouns.json +997 -0
  315. data/vendor/git/corpora.git/data/words/oprah_quotes.json +47 -0
  316. data/vendor/git/corpora.git/data/words/personal_nouns.json +9314 -0
  317. data/vendor/git/corpora.git/data/words/personal_pronouns.json +61 -0
  318. data/vendor/git/corpora.git/data/words/possessive_pronouns.json +43 -0
  319. data/vendor/git/corpora.git/data/words/prefix_root_suffix.json +3688 -0
  320. data/vendor/git/corpora.git/data/words/prepositions.json +135 -0
  321. data/vendor/git/corpora.git/data/words/proverbs.json +533 -0
  322. data/vendor/git/corpora.git/data/words/resume_action_words.json +142 -0
  323. data/vendor/git/corpora.git/data/words/rhymeless_words.json +125 -0
  324. data/vendor/git/corpora.git/data/words/spells.json +460 -0
  325. data/vendor/git/corpora.git/data/words/state_verbs.json +25 -0
  326. data/vendor/git/corpora.git/data/words/states_of_drunkenness.json +39 -0
  327. data/vendor/git/corpora.git/data/words/stopwords/ar.json +169 -0
  328. data/vendor/git/corpora.git/data/words/stopwords/bg.json +265 -0
  329. data/vendor/git/corpora.git/data/words/stopwords/cs.json +412 -0
  330. data/vendor/git/corpora.git/data/words/stopwords/da.json +70 -0
  331. data/vendor/git/corpora.git/data/words/stopwords/de.json +599 -0
  332. data/vendor/git/corpora.git/data/words/stopwords/en.json +862 -0
  333. data/vendor/git/corpora.git/data/words/stopwords/es.json +450 -0
  334. data/vendor/git/corpora.git/data/words/stopwords/fi.json +754 -0
  335. data/vendor/git/corpora.git/data/words/stopwords/fr.json +501 -0
  336. data/vendor/git/corpora.git/data/words/stopwords/gr.json +159 -0
  337. data/vendor/git/corpora.git/data/words/stopwords/it.json +439 -0
  338. data/vendor/git/corpora.git/data/words/stopwords/jp.json +50 -0
  339. data/vendor/git/corpora.git/data/words/stopwords/lv.json +171 -0
  340. data/vendor/git/corpora.git/data/words/stopwords/nl.json +275 -0
  341. data/vendor/git/corpora.git/data/words/stopwords/no.json +125 -0
  342. data/vendor/git/corpora.git/data/words/stopwords/pl.json +281 -0
  343. data/vendor/git/corpora.git/data/words/stopwords/pt.json +449 -0
  344. data/vendor/git/corpora.git/data/words/stopwords/ru.json +428 -0
  345. data/vendor/git/corpora.git/data/words/stopwords/sk.json +185 -0
  346. data/vendor/git/corpora.git/data/words/stopwords/sv.json +393 -0
  347. data/vendor/git/corpora.git/data/words/stopwords/tr.json +236 -0
  348. data/vendor/git/corpora.git/data/words/strange_words.json +65 -0
  349. data/vendor/git/corpora.git/data/words/ultraconserved.json +1673 -0
  350. data/vendor/git/corpora.git/data/words/units_of_time.json +32 -0
  351. data/vendor/git/corpora.git/data/words/us_president_quotes.json +202 -0
  352. data/vendor/git/corpora.git/data/words/verbs.json +2537 -0
  353. data/vendor/git/corpora.git/data/words/verbs_with_conjugations.json +13313 -0
  354. data/vendor/git/corpora.git/data/words/word_clues/clues_five.json +10296 -0
  355. data/vendor/git/corpora.git/data/words/word_clues/clues_four.json +6329 -0
  356. data/vendor/git/corpora.git/data/words/word_clues/clues_six.json +10909 -0
  357. data/vendor/git/corpora.git/package.json +23 -0
  358. metadata +403 -0
@@ -0,0 +1,4617 @@
1
+ {
2
+ "description": "Activity category codes used by the US Bureau of Labor Statistics in its American Time Use Survey. Categories either come with a set of example activities, or are standalone 'miscellaneous' categories denoted 'not elsewhere classified'.",
3
+ "source": "https://www.bls.gov/tus/lexicons.htm",
4
+ "categories": [
5
+ {
6
+ "category": "Sleeping",
7
+ "code": "010101",
8
+ "examples": [
9
+ "getting some shut-eye",
10
+ "dozing off",
11
+ "getting up",
12
+ "napping",
13
+ "falling asleep",
14
+ "sleeping",
15
+ "waking up",
16
+ "dreaming",
17
+ "cat napping",
18
+ "dozing"
19
+ ]
20
+ },
21
+ {
22
+ "category": "Sleeplessness",
23
+ "code": "010102",
24
+ "examples": [
25
+ "tossing and turning",
26
+ "lying awake",
27
+ "counting sheep",
28
+ "insomnia"
29
+ ]
30
+ },
31
+ {
32
+ "category": "Sleeping, not elsewhere classified",
33
+ "code": "010199"
34
+ },
35
+ {
36
+ "category": "Washing, dressing and grooming oneself",
37
+ "code": "010201",
38
+ "examples": [
39
+ "washing feet",
40
+ "combing hair",
41
+ "washing face",
42
+ "doing nails",
43
+ "brushing/flossing teeth",
44
+ "cutting own hair",
45
+ "perming own hair",
46
+ "getting dressed/undressed",
47
+ "filing nails",
48
+ "washing hands",
49
+ "putting on pajamas",
50
+ "putting on shoes",
51
+ "cleaning contact lenses",
52
+ "brushing lint off clothing",
53
+ "putting on makeup",
54
+ "gargling mouthwash",
55
+ "changing clothes",
56
+ "shaving",
57
+ "running bath",
58
+ "putting on nail polish",
59
+ "laying clothes out",
60
+ "cleaning ears",
61
+ "doing own hair",
62
+ "removing curlers",
63
+ "shaving legs",
64
+ "brushing hair",
65
+ "putting on hand cream",
66
+ "putting in contact lenses",
67
+ "using the bathroom",
68
+ "washing hair",
69
+ "putting on night cream",
70
+ "blow-drying hair",
71
+ "grooming",
72
+ "bathing/showering"
73
+ ]
74
+ },
75
+ {
76
+ "category": "Grooming, not elsewhere classified",
77
+ "code": "010299",
78
+ "examples": [
79
+ "getting a haircut from spouse/friend (unpaid)",
80
+ "mom braided my hair",
81
+ "friend rubbed suntan lotion on me"
82
+ ]
83
+ },
84
+ {
85
+ "category": "Health-related self care",
86
+ "code": "010301",
87
+ "examples": [
88
+ "taking insulin",
89
+ "exercising or therapy for medical reasons",
90
+ "applying ointment",
91
+ "resting because of injury",
92
+ "putting ice on injury",
93
+ "bandaging ankle",
94
+ "giving oneself a shot",
95
+ "changing oxygen",
96
+ "giving oneself an injection",
97
+ "resting because of illness",
98
+ "doing childbirth exercises",
99
+ "dressing a wound",
100
+ "testing blood sugar level",
101
+ "taking cough drops",
102
+ "taking medicine",
103
+ "doing stress management exercises",
104
+ "meditating (not religious)",
105
+ "taking vitamins",
106
+ "gargling for sore throat"
107
+ ]
108
+ },
109
+ {
110
+ "category": "Self care, not elsewhere classified",
111
+ "code": "010399",
112
+ "examples": [
113
+ "feeling sick"
114
+ ]
115
+ },
116
+ {
117
+ "category": "Personal/Private activities",
118
+ "code": "010401",
119
+ "examples": [
120
+ "personal activity, unspecified",
121
+ "making out",
122
+ "private activity, unspecified",
123
+ "necking",
124
+ "cuddling partner in bed",
125
+ "having sex",
126
+ "spouse gave me a massage"
127
+ ]
128
+ },
129
+ {
130
+ "category": "Personal activities, not elsewhere classified",
131
+ "code": "010499"
132
+ },
133
+ {
134
+ "category": "Personal emergencies",
135
+ "code": "010501",
136
+ "examples": [
137
+ "being involved in a personal accident",
138
+ "being involved in an accident requiring emergency care",
139
+ "waiting for ambulance",
140
+ "stanching blood flow",
141
+ "losing consciousness"
142
+ ]
143
+ },
144
+ {
145
+ "category": "Personal care emergencies, not elsewhere classified",
146
+ "code": "010599"
147
+ },
148
+ {
149
+ "category": "Personal Care, not elsewhere classified",
150
+ "code": "019999"
151
+ },
152
+ {
153
+ "category": "Interior cleaning",
154
+ "code": "020101",
155
+ "examples": [
156
+ "recycling/sorting newspapers for recycling",
157
+ "cleaning windows/washing walls",
158
+ "emptying trash cans/taking out the trash",
159
+ "cleaning floors/mopping floors",
160
+ "picking up the house/cleaning the house",
161
+ "cleaning cupboards",
162
+ "polishing furniture/dusting",
163
+ "picking up clothes",
164
+ "straightening up the house",
165
+ "washing floor",
166
+ "cleaning carpets/shampooing carpet",
167
+ "cleaning bathtub/cleaning toilet",
168
+ "tidying up",
169
+ "cleaning out closet",
170
+ "vacuuming/sweeping floors/sweeping",
171
+ "emptying ashtray",
172
+ "cleaning out drawers",
173
+ "picking up toys",
174
+ "cleaning bathrooms/cleaning bedroom",
175
+ "scrubbing",
176
+ "making the bed/changing sheets"
177
+ ]
178
+ },
179
+ {
180
+ "category": "Laundry",
181
+ "code": "020102",
182
+ "examples": [
183
+ "bringing in washing/laundry",
184
+ "putting towels in bathroom",
185
+ "washing curtains",
186
+ "sorting laundry/folding clean laundry",
187
+ "hand washing clothing",
188
+ "removing lint from dryer",
189
+ "hanging clothes on clothesline",
190
+ "putting clean laundry away",
191
+ "putting out clean towels",
192
+ "taking clothes off the line",
193
+ "adding fabric softener",
194
+ "doing laundry/checking wash",
195
+ "folding clothes/hanging clothes",
196
+ "ironing",
197
+ "putting laundry in washer/dryer",
198
+ "taking clothes out of washer",
199
+ "treating stains/spot treating clothes"
200
+ ]
201
+ },
202
+ {
203
+ "category": "Sewing, repairing, & maintaining textiles",
204
+ "code": "020103",
205
+ "examples": [
206
+ "sewing a new dress/clothing",
207
+ "sewing curtains/other hh items",
208
+ "cleaning shoes/sneakers",
209
+ "sewing on buttons/hemming garmets",
210
+ "knitting/crocheting blankets",
211
+ "knitting/crocheting sweaters, clothing",
212
+ "repairing/caring for clothes/hats/shoes/curtains",
213
+ "altering clothing/sewing hem",
214
+ "polishing shoes",
215
+ "crocheting/crocheting quilt"
216
+ ]
217
+ },
218
+ {
219
+ "category": "Storing interior hh items, inc. food",
220
+ "code": "020104",
221
+ "examples": [
222
+ "storing food/storing the groceries",
223
+ "boxing things up for storage",
224
+ "putting away the groceries/putting shopping away",
225
+ "moving stuff to attic/basement",
226
+ "putting away decorations/Christmas decorations/holiday items"
227
+ ]
228
+ },
229
+ {
230
+ "category": "Housework, not elsewhere classified",
231
+ "code": "020199"
232
+ },
233
+ {
234
+ "category": "Food and drink preparation",
235
+ "code": "020201",
236
+ "examples": [
237
+ "smoking fish",
238
+ "making a gingerbread house",
239
+ "putting icing on cake",
240
+ "making jam/bottling fruit",
241
+ "mixing/heating up baby formula",
242
+ "chopping/slicing vegetables",
243
+ "thawing frozen food",
244
+ "dehydrating food/drying food",
245
+ "packing food/lunches/picnics",
246
+ "canning food/preserving food",
247
+ "baking/cooking/broiling/boiling",
248
+ "getting a drink/pouring water in glass",
249
+ "baking Christmas cookies",
250
+ "preparing food for company/guests",
251
+ "mixing drinks",
252
+ "butchering/carving/salting meat",
253
+ "heating food up/cooking meals",
254
+ "boiling water",
255
+ "making coffee/tea",
256
+ "preparing salad",
257
+ "defrosting",
258
+ "peeling potatoes",
259
+ "breast-pumping",
260
+ "preparing food for other hh members",
261
+ "baking a cake/baking biscuits",
262
+ "cooking dinner",
263
+ "brewing beer or wine",
264
+ "putting roast in oven",
265
+ "making baby food"
266
+ ]
267
+ },
268
+ {
269
+ "category": "Food presentation",
270
+ "code": "020202",
271
+ "examples": [
272
+ "polishing silver",
273
+ "putting out condiments",
274
+ "serving a meal/serving hors d'oeuvres",
275
+ "passing out drinks",
276
+ "setting the table",
277
+ "filling salt/pepper/sugar",
278
+ "garnishing food"
279
+ ]
280
+ },
281
+ {
282
+ "category": "Kitchen and food clean-up",
283
+ "code": "020203",
284
+ "examples": [
285
+ "cleaning microwave oven",
286
+ "loading the dishwasher/emptying dishwasher",
287
+ "mopping the kitchen floor",
288
+ "washing/drying dishes",
289
+ "rinsing dishes/washing pots and pans",
290
+ "cleaning high chair",
291
+ "cleaning refrigerator",
292
+ "throwing away leftovers",
293
+ "cleaning kitchen cupboard",
294
+ "cleaning up after a meal/clearing the table",
295
+ "putting leftovers away",
296
+ "cleaning freezer/defrosting freezer",
297
+ "cleaning up the kitchen only",
298
+ "cleaning up plates and food",
299
+ "wiping table",
300
+ "putting dishes away",
301
+ "cleaning oven/stove/barbecue grill"
302
+ ]
303
+ },
304
+ {
305
+ "category": "Food & drink prep, presentation, & clean-up, not elsewhere classified",
306
+ "code": "020299"
307
+ },
308
+ {
309
+ "category": "Interior arrangement, decoration, & repairs",
310
+ "code": "020301",
311
+ "examples": [
312
+ "replacing fuses",
313
+ "hanging curtains/wallpaper",
314
+ "hanging blinds/shades",
315
+ "fumigating house",
316
+ "measuring windows for curtains",
317
+ "putting up Christmas lights (inside)",
318
+ "setting up a manger (inside)",
319
+ "fixing leaks",
320
+ "hanging Christmas stockings",
321
+ "taking down towel bars",
322
+ "installing carpet",
323
+ "setting mousetraps",
324
+ "decorating the Christmas tree",
325
+ "refitting kitchen/bathroom",
326
+ "changing light bulbs",
327
+ "carving jack-o-lanterns",
328
+ "moving/rearranging furniture",
329
+ "putting up shelves",
330
+ "stripping wallpaper",
331
+ "hanging pictures",
332
+ "laying linoleum/tile/wood floors",
333
+ "putting up Christmas decorations (inside)",
334
+ "decorating",
335
+ "plastering",
336
+ "setting up menorah candles (inside)",
337
+ "making plumbing improvements",
338
+ "remodeling interior of house",
339
+ "painting",
340
+ "stripping paint"
341
+ ]
342
+ },
343
+ {
344
+ "category": "Building and repairing furniture",
345
+ "code": "020302",
346
+ "examples": [
347
+ "changing cabinet hardware",
348
+ "repairs to furniture",
349
+ "painting furniture",
350
+ "refinishing furniture",
351
+ "stripping furniture",
352
+ "reupholstering furniture",
353
+ "refinishing wood furniture",
354
+ "assembling furniture",
355
+ "making furniture",
356
+ "making cabinets",
357
+ "staining wood furniture",
358
+ "sanding wood furniture"
359
+ ]
360
+ },
361
+ {
362
+ "category": "Heating and cooling",
363
+ "code": "020303",
364
+ "examples": [
365
+ "changing furnace filter",
366
+ "setting the fire",
367
+ "bringing in wood/kindling",
368
+ "chopping wood",
369
+ "installing fireplace",
370
+ "collecting wood",
371
+ "stacking firewood",
372
+ "lighting fireplace",
373
+ "filling heater with fuel",
374
+ "shoveling coal",
375
+ "installing window AC unit",
376
+ "installing wood burning stove",
377
+ "opening/closing windows"
378
+ ]
379
+ },
380
+ {
381
+ "category": "Interior maintenance, repair, & decoration, not elsewhere classified",
382
+ "code": "020399"
383
+ },
384
+ {
385
+ "category": "Exterior cleaning",
386
+ "code": "020401",
387
+ "examples": [
388
+ "putting away bicycles",
389
+ "picking up trash that blew into yard",
390
+ "removing ice from walkways",
391
+ "sweeping garage",
392
+ "washing outside windows",
393
+ "cleaning chimney",
394
+ "shoveling snow",
395
+ "sweeping steps",
396
+ "cleaning gutters",
397
+ "sweeping sidewalk",
398
+ "putting away outside toys",
399
+ "sweeping deck/patio/porch",
400
+ "cleaning shed",
401
+ "cleaning garage",
402
+ "putting away yard equipment"
403
+ ]
404
+ },
405
+ {
406
+ "category": "Exterior repair, improvements, & decoration",
407
+ "code": "020402",
408
+ "examples": [
409
+ "painting house exterior",
410
+ "building a deck",
411
+ "painting or staining fence",
412
+ "building a shed",
413
+ "putting new roof on house",
414
+ "fixing the roof",
415
+ "hanging flags",
416
+ "staining house exterior",
417
+ "replacing screens",
418
+ "fixing weatherboards",
419
+ "installing a gate or fence",
420
+ "setting up garden furniture",
421
+ "decorating outside for parties",
422
+ "paving or blacktopping",
423
+ "building a garage/carport",
424
+ "making structural additions",
425
+ "painting/staining porch/deck",
426
+ "putting new roof on garage",
427
+ "adding another room to house",
428
+ "repairing wind chimes",
429
+ "decorating outside for holidays",
430
+ "putting up Christmas decorations (outside)",
431
+ "hanging up wind chimes",
432
+ "hanging outdoor lights",
433
+ "screening in a porch",
434
+ "fixing broken windows",
435
+ "working on boat lift",
436
+ "building a fence",
437
+ "fixing mailbox",
438
+ "putting up outdoor holiday decorations",
439
+ "putting up Christmas lights (outside)",
440
+ "repairing boat dock",
441
+ "fixing bird feeder",
442
+ "hanging address numbers"
443
+ ]
444
+ },
445
+ {
446
+ "category": "Exterior maintenance, repair & decoration, not elsewhere classified",
447
+ "code": "020499"
448
+ },
449
+ {
450
+ "category": "Lawn, garden, and houseplant care",
451
+ "code": "020501",
452
+ "examples": [
453
+ "mowing the lawn",
454
+ "fertilizing garden",
455
+ "gardening",
456
+ "hunting mushrooms",
457
+ "mulching",
458
+ "planting fruit tree",
459
+ "watering lawn/garden",
460
+ "planting beans",
461
+ "pruning tree",
462
+ "weeding flower garden",
463
+ "fertilizing the lawn",
464
+ "cleaning the yard",
465
+ "gathering nuts",
466
+ "picking up branches, twigs",
467
+ "seeding",
468
+ "pruning shrubs/flowers",
469
+ "sowing flower or vegetable seeds",
470
+ "planting",
471
+ "weeding vegetable garden",
472
+ "turning sprinkler on or off",
473
+ "collecting eggs, honey",
474
+ "spraying rose bushes",
475
+ "watering outdoor plants",
476
+ "adding chemicals to lawn",
477
+ "applying pesticides",
478
+ "blowing leaves",
479
+ "edging",
480
+ "putting snail killer around vegetables",
481
+ "weeding",
482
+ "watering houseplants",
483
+ "tying up tomatoes",
484
+ "disposing/recycling lawn clippings",
485
+ "cutting the grass",
486
+ "trimming branches/hedges",
487
+ "spreading mulch",
488
+ "picking fruit and vegetables",
489
+ "planting tomatoes",
490
+ "laying paving stones",
491
+ "spraying for bugs",
492
+ "raking leaves",
493
+ "putting pesticides on lawn",
494
+ "doing yard work",
495
+ "spraying fruit trees",
496
+ "planting fruit and vegetables",
497
+ "digging in the vegetable garden"
498
+ ]
499
+ },
500
+ {
501
+ "category": "Ponds, pools, and hot tubs",
502
+ "code": "020502",
503
+ "examples": [
504
+ "putting in a pond, pool, hot tub",
505
+ "chlorinating the pool",
506
+ "winterizing pool",
507
+ "draining pool",
508
+ "cleaning the pond, pool, hot tub",
509
+ "testing ph in water",
510
+ "adding chemicals to hot tub",
511
+ "turning on/off the hot tub",
512
+ "filling the pool",
513
+ "adding chemicals to pool",
514
+ "repairing pond, pool, hot tub"
515
+ ]
516
+ },
517
+ {
518
+ "category": "Lawn and garden, not elsewhere classified",
519
+ "code": "020599"
520
+ },
521
+ {
522
+ "category": "Care for animals and pets (not veterinary care)",
523
+ "code": "020601",
524
+ "examples": [
525
+ "watching kittens/puppies being born",
526
+ "burying animals",
527
+ "feeding a stray",
528
+ "petting animals",
529
+ "changing dog's water",
530
+ "caring for household pets",
531
+ "feeding fish",
532
+ "feeding/watering pets",
533
+ "feeding squirrels",
534
+ "visiting an animal shelter to select pet",
535
+ "feeding a raccoon",
536
+ "clipping cat's claws",
537
+ "putting together rabbit pen",
538
+ "feeding horses",
539
+ "brushing dog",
540
+ "filling the bird feeder",
541
+ "bathing dog",
542
+ "feeding cat",
543
+ "caring for an orphaned animal",
544
+ "feeding birds",
545
+ "grooming pets",
546
+ "feeding rabbit",
547
+ "grooming horse",
548
+ "feeding ducks",
549
+ "cleaning the litter box",
550
+ "feeding guinea pig",
551
+ "nursing a sick animal",
552
+ "letting the dog out",
553
+ "cleaning up after pets",
554
+ "clipping dog's nails",
555
+ "adopting a pet",
556
+ "tending a wounded bird",
557
+ "feeding the dog",
558
+ "providing medical care to pets"
559
+ ]
560
+ },
561
+ {
562
+ "category": "Walking / exercising / playing with animals",
563
+ "code": "020602",
564
+ "examples": [
565
+ "exercising pets",
566
+ "playing with animals",
567
+ "taking pets for a walk",
568
+ "playing with the dog",
569
+ "walking the dog"
570
+ ]
571
+ },
572
+ {
573
+ "category": "Pet and animal care, not elsewhere classified",
574
+ "code": "020699"
575
+ },
576
+ {
577
+ "category": "Vehicle repair and maintenance (by self)",
578
+ "code": "020701",
579
+ "examples": [
580
+ "checking fluids",
581
+ "cleaning camper/RV",
582
+ "tuning up vehicles",
583
+ "checking tire pressure",
584
+ "rebuilding engine",
585
+ "putting on registration stickers",
586
+ "cleaning boat",
587
+ "cleaning/vacuuming vehicles",
588
+ "changing oil",
589
+ "charging battery",
590
+ "changing spark plugs",
591
+ "putting new chain on bicycle",
592
+ "putting protective cover on vehicle",
593
+ "adding oil",
594
+ "replacing brakes",
595
+ "fixing motorcycle",
596
+ "checking to make sure car was locked",
597
+ "doing a valve job",
598
+ "assembling bicycle",
599
+ "installing car CD player",
600
+ "changing wheel on motorcycle",
601
+ "doing a ring job",
602
+ "overhauling engine",
603
+ "filling brake fluid",
604
+ "fixing bike",
605
+ "replacing vehicle taillights",
606
+ "filling radiator",
607
+ "washing/waxing cars or other vehicles",
608
+ "restoring car",
609
+ "putting air in tires",
610
+ "changing/rotating tires",
611
+ "adding equipment to vehicles",
612
+ "covering boat",
613
+ "scraping ice/snow off vehicle",
614
+ "installing a trailer hitch",
615
+ "putting on license plates/tags",
616
+ "putting car/vehicle in garage",
617
+ "replacing vehicle headlights",
618
+ "hooking up trailer to car/truck",
619
+ "installing car stereo/speakers",
620
+ "checking tires",
621
+ "winterizing boat",
622
+ "checking battery"
623
+ ]
624
+ },
625
+ {
626
+ "category": "Vehicles, not elsewhere classified",
627
+ "code": "020799"
628
+ },
629
+ {
630
+ "category": "Appliance, tool, and toy set-up, repair, & maintenance (by self)",
631
+ "code": "020801",
632
+ "examples": [
633
+ "installing a printer",
634
+ "changing batteries in appliances",
635
+ "repairing sporting equipment",
636
+ "installing a modem",
637
+ "maintaining tools and equipment",
638
+ "setting up or fixing computer",
639
+ "connecting washing machine/dryer",
640
+ "repairing toys",
641
+ "restringing tennis racket",
642
+ "charging batteries",
643
+ "hooking up satellite dish",
644
+ "cleaning tools and equipment",
645
+ "installing a scanner",
646
+ "setting/winding clocks",
647
+ "installing a fax machine",
648
+ "waxing skis",
649
+ "fixing household camera",
650
+ "repairing tools & equipment",
651
+ "installing appliances",
652
+ "hooking up stereo, VCR",
653
+ "setting up doll house",
654
+ "repairing appliances",
655
+ "sharpening knives/other tools",
656
+ "installing heating or A/C equipment",
657
+ "loading software on computer",
658
+ "cleaning/oiling lawnmowers",
659
+ "setting up toy train track"
660
+ ]
661
+ },
662
+ {
663
+ "category": "Appliances and tools, not elsewhere classified",
664
+ "code": "020899"
665
+ },
666
+ {
667
+ "category": "Financial management",
668
+ "code": "020901",
669
+ "examples": [
670
+ "checking/trading/buying/selling stocks",
671
+ "looking at bills",
672
+ "balancing the checkbook/checking receipts against bank statements",
673
+ "giving money to hh child or hh adult",
674
+ "filing receipts",
675
+ "paying the rent/mortgage/bills",
676
+ "checking bank account balance",
677
+ "filling out tax forms",
678
+ "using computer to pay bills",
679
+ "making a budget/using computer to keep budget",
680
+ "donating money",
681
+ "researching investments",
682
+ "writing checks",
683
+ "borrowing/lending money (not banking)"
684
+ ]
685
+ },
686
+ {
687
+ "category": "Household & personal organization and planning",
688
+ "code": "020902",
689
+ "examples": [
690
+ "unwrapping/opening packages",
691
+ "organizing/planning hh parties or hh events",
692
+ "planning household meals/menu",
693
+ "packing/unpacking bags or suitcase (for self)",
694
+ "Loading/unloading the car",
695
+ "looking at store purchases",
696
+ "getting organized for work (for self)",
697
+ "unloading groceries/shopping items",
698
+ "opening presents/gifts (alone)",
699
+ "organizing file cabinet",
700
+ "wrapping presents",
701
+ "dropping off/picking up household items",
702
+ "carrying in groceries",
703
+ "sorting books/sorting household items",
704
+ "making reservations",
705
+ "making dinner reservations",
706
+ "borrowing/lending household items",
707
+ "packing boxes for household move or trip",
708
+ "making photocopies (for self or hh)",
709
+ "assigning chores",
710
+ "unpacking/packing car for trip",
711
+ "making shopping lists",
712
+ "filling a Christmas stocking/Easter basket",
713
+ "organizing school stuff (for self)",
714
+ "unpacking/packing recreational vehicle for trip",
715
+ "labeling videos",
716
+ "organizing boxes in garage",
717
+ "sorting/doing/filling out paperwork",
718
+ "looking for misplaced items",
719
+ "putting pictures in albums",
720
+ "planning vacation/household trip"
721
+ ]
722
+ },
723
+ {
724
+ "category": "HH & personal mail & messages (except e-mail)",
725
+ "code": "020903",
726
+ "examples": [
727
+ "checking to see if mail came/getting mail in",
728
+ "mailing letters, payments",
729
+ "sending reg./cert. packages/mail/express mail",
730
+ "looking at/checking/sorting mail",
731
+ "signing for certified mail",
732
+ "collecting mail/reading mail",
733
+ "bringing in newspaper/mail",
734
+ "mailing/picking up letters or packages",
735
+ "writing Valentines/Christmas cards",
736
+ "addressing holiday cards",
737
+ "checking phone messages",
738
+ "writing letters/cards (personal or hh)",
739
+ "throwing away junk mail"
740
+ ]
741
+ },
742
+ {
743
+ "category": "HH & personal e-mail and messages",
744
+ "code": "020904",
745
+ "examples": [
746
+ "instant messaging (personal)",
747
+ "reading/sending e-mail (unspecified)",
748
+ "checking e-mail (personal or hh)",
749
+ "cleaning out e-mail inbox (personal or hh)",
750
+ "reading/sending e-mail (personal or hh)"
751
+ ]
752
+ },
753
+ {
754
+ "category": "Home security",
755
+ "code": "020905",
756
+ "examples": [
757
+ "locking up the house/locking up home",
758
+ "maintaining alarms/security systems",
759
+ "closing the blinds/curtains",
760
+ "installing/maintaining smoke detectors",
761
+ "breaking into a locked house",
762
+ "bolting doors/windows",
763
+ "checking/changing locks",
764
+ "breaking into home if locked out",
765
+ "locking doors, windows/turning out the lights",
766
+ "setting security alarm/installing alarms",
767
+ "closing house up"
768
+ ]
769
+ },
770
+ {
771
+ "category": "Household management, not elsewhere classified",
772
+ "code": "020999"
773
+ },
774
+ {
775
+ "category": "Household activities, not elsewhere classified",
776
+ "code": "029999",
777
+ "examples": [
778
+ "putting out a kitchen fire",
779
+ "household accident",
780
+ "household emergency"
781
+ ]
782
+ },
783
+ {
784
+ "category": "Physical care for hh children",
785
+ "code": "030101",
786
+ "examples": [
787
+ "breastfeeding/nursing hh baby",
788
+ "giving hh child a bottle",
789
+ "helping hh child get dressed/brush teeth/bathe",
790
+ "drawing a bath for a hh child",
791
+ "Helping hh child feed him/herself",
792
+ "giving hh child a bath",
793
+ "getting hh child ready to go somewhere",
794
+ "laying out clothes for hh child",
795
+ "tucking in hh child",
796
+ "waking hh child",
797
+ "soothing hh child/baby",
798
+ "changing hh child's diapers",
799
+ "carrying hh child/baby",
800
+ "getting hh child up",
801
+ "preparing a shower for a hh child",
802
+ "getting hh child ready for school",
803
+ "cutting hh child's hair",
804
+ "putting hh child to bed",
805
+ "feeding hh child",
806
+ "rocking/cuddling/holding hh child",
807
+ "dressing/bathing hh child",
808
+ "helping hh child use the bathroom",
809
+ "getting hh child ready for bed"
810
+ ]
811
+ },
812
+ {
813
+ "category": "Reading to/with hh children",
814
+ "code": "030102",
815
+ "examples": [
816
+ "teaching hh child to read",
817
+ "helping hh child read",
818
+ "listening to a hh child read",
819
+ "reading to or with hh child"
820
+ ]
821
+ },
822
+ {
823
+ "category": "Playing with hh children, not sports",
824
+ "code": "030103",
825
+ "examples": [
826
+ "playing games w/hh child only",
827
+ "playing with hh child",
828
+ "tickling hh child",
829
+ "dancing with hh child",
830
+ "giving hh child a piggyback ride",
831
+ "horsing around with hh child",
832
+ "entertaining hh child"
833
+ ]
834
+ },
835
+ {
836
+ "category": "Arts and crafts with hh children",
837
+ "code": "030104",
838
+ "examples": [
839
+ "organizing coin collection with hh child",
840
+ "helping hh child make arts and crafts",
841
+ "building model planes with hh child",
842
+ "making holiday decorations w/hh child"
843
+ ]
844
+ },
845
+ {
846
+ "category": "Playing sports with hh children",
847
+ "code": "030105",
848
+ "examples": [
849
+ "riding bikes with hh child",
850
+ "strolling with a hh child",
851
+ "teaching hh child how to play a sport",
852
+ "walking with a hh child",
853
+ "playing basketball with hh child",
854
+ "teaching hh child to ride a bike"
855
+ ]
856
+ },
857
+ {
858
+ "category": "Talking with/listening to hh children",
859
+ "code": "030106",
860
+ "examples": [
861
+ "singing with hh child",
862
+ "singing to hh child",
863
+ "telling hh child to get ready for bed",
864
+ "listening to hh child sing/recite",
865
+ "fussing at/scolding/lecturing hh child",
866
+ "talking with hh child",
867
+ "telling hh child to brush teeth",
868
+ "hearing about hh child's day"
869
+ ]
870
+ },
871
+ {
872
+ "category": "Organization & planning for hh children",
873
+ "code": "030108",
874
+ "examples": [
875
+ "packing/unpacking hh child's bag",
876
+ "planning parties/activities/events for hh child",
877
+ "organizing activities for hh child",
878
+ "making costume for hh child",
879
+ "organizing closet for hh child",
880
+ "planning play dates for hh child",
881
+ "signing hh child up for activities",
882
+ "helping with parties for hh child"
883
+ ]
884
+ },
885
+ {
886
+ "category": "Looking after hh children (as a primary activity)",
887
+ "code": "030109",
888
+ "examples": [
889
+ "checking on hh child",
890
+ "supervising hh child swimming",
891
+ "sitting with hh child",
892
+ "accompanying hh child visiting Santa Claus",
893
+ "watching but not interacting with hh child",
894
+ "accompanying hh child trick-or-treating",
895
+ "supervising/monitoring/keeping tabs on hh child"
896
+ ]
897
+ },
898
+ {
899
+ "category": "Attending hh children's events",
900
+ "code": "030110",
901
+ "examples": [
902
+ "watching hh child's sporting event or school play",
903
+ "watching hh child's baseball practice",
904
+ "watching hh child's karate lesson",
905
+ "attending hh child's recital",
906
+ "watching hh child's dance class"
907
+ ]
908
+ },
909
+ {
910
+ "category": "Waiting for/with hh children",
911
+ "code": "030111",
912
+ "examples": [
913
+ "waiting to pick up hh child",
914
+ "waiting for school bus with hh child",
915
+ "waiting for hh child to get ready",
916
+ "waiting for hh child to finish his/her activity"
917
+ ]
918
+ },
919
+ {
920
+ "category": "Picking up/dropping off hh children",
921
+ "code": "030112",
922
+ "examples": [
923
+ "picking up hh child from day care/school/church",
924
+ "putting hh child on bus",
925
+ "dropping off hh child at babysitter's",
926
+ "dropping off hh child at friend's house",
927
+ "dropping off hh child at soccer practice"
928
+ ]
929
+ },
930
+ {
931
+ "category": "Caring for & helping hh children, not elsewhere classified",
932
+ "code": "030199",
933
+ "examples": [
934
+ "adopting a child"
935
+ ]
936
+ },
937
+ {
938
+ "category": "Homework (hh children)",
939
+ "code": "030201",
940
+ "examples": [
941
+ "helping hh child with a school project",
942
+ "picking up hh child's books/assignments",
943
+ "signing hh child's homework log",
944
+ "helping hh child with homework",
945
+ "checking hh child's homework for completion",
946
+ "quizzing hh child before a test",
947
+ "reviewing hh child's homework"
948
+ ]
949
+ },
950
+ {
951
+ "category": "Meetings and school conferences (hh children)",
952
+ "code": "030202",
953
+ "examples": [
954
+ "attending hh child's back-to-school night",
955
+ "meeting with guidance counselor of hh child",
956
+ "attending a PTA meeting",
957
+ "meeting with hh child's tutor",
958
+ "talking with teachers of hh child",
959
+ "talking to/with hh child's tutor",
960
+ "meeting w/school speech pathologist of hh child",
961
+ "meeting with principal of hh child",
962
+ "attending hh child's parent-teacher conference",
963
+ "meeting w/school psychologist of hh child",
964
+ "observing hh child's class",
965
+ "attending hh child's school open house"
966
+ ]
967
+ },
968
+ {
969
+ "category": "Home schooling of hh children",
970
+ "code": "030203",
971
+ "examples": [
972
+ "home schooling a hh child"
973
+ ]
974
+ },
975
+ {
976
+ "category": "Waiting associated with hh children's education",
977
+ "code": "030204",
978
+ "examples": [
979
+ "waiting to meet with hh child's teacher"
980
+ ]
981
+ },
982
+ {
983
+ "category": "Activities related to hh child's education, not elsewhere classified",
984
+ "code": "030299",
985
+ "examples": [
986
+ "helping hh child research colleges",
987
+ "helping hh child practice piano"
988
+ ]
989
+ },
990
+ {
991
+ "category": "Providing medical care to hh children",
992
+ "code": "030301",
993
+ "examples": [
994
+ "giving hh child medicine",
995
+ "putting medicine on hh child's cuts",
996
+ "sitting with sick hh child",
997
+ "helping hh child w/physical therapy",
998
+ "giving hh child's insulin shot",
999
+ "putting medicine on hh child's burn",
1000
+ "bandaging hh child's cuts/burns",
1001
+ "bandaging hh child's scrapes",
1002
+ "taking hh child's temperature"
1003
+ ]
1004
+ },
1005
+ {
1006
+ "category": "Obtaining medical care for hh children",
1007
+ "code": "030302",
1008
+ "examples": [
1009
+ "talking with hh child's nurse",
1010
+ "talking with hh child's doctor",
1011
+ "accompanying hh child to medical appt"
1012
+ ]
1013
+ },
1014
+ {
1015
+ "category": "Waiting associated with hh children's health",
1016
+ "code": "030303",
1017
+ "examples": [
1018
+ "waiting with hh child at hospital",
1019
+ "waiting with hh child at physician's office",
1020
+ "waiting while doctor examines hh child"
1021
+ ]
1022
+ },
1023
+ {
1024
+ "category": "Activities related to hh child's health, not elsewhere classified",
1025
+ "code": "030399",
1026
+ "examples": [
1027
+ "visiting hh child in hospital"
1028
+ ]
1029
+ },
1030
+ {
1031
+ "category": "Physical care for hh adults",
1032
+ "code": "030401",
1033
+ "examples": [
1034
+ "bathing hh adult",
1035
+ "dressing hh adult",
1036
+ "putting hh adult to bed",
1037
+ "feeding hh adult",
1038
+ "helping hh adult dress",
1039
+ "getting hh adult ready to go somewhere",
1040
+ "cutting hh adult's hair",
1041
+ "providing physical aid to hh adult",
1042
+ "waking hh adult"
1043
+ ]
1044
+ },
1045
+ {
1046
+ "category": "Looking after hh adult (as a primary activity)",
1047
+ "code": "030402",
1048
+ "examples": [
1049
+ "supervising hh adult",
1050
+ "checking on hh adult",
1051
+ "monitoring hh adult"
1052
+ ]
1053
+ },
1054
+ {
1055
+ "category": "Providing medical care to hh adult",
1056
+ "code": "030403",
1057
+ "examples": [
1058
+ "bandaging hh adult",
1059
+ "giving hh adult medicine"
1060
+ ]
1061
+ },
1062
+ {
1063
+ "category": "Obtaining medical and care services for hh adult",
1064
+ "code": "030404",
1065
+ "examples": [
1066
+ "accompanying hh adult to medical appt.",
1067
+ "talking to hh adult's doctors/nurses",
1068
+ "talking to/with adult daycare provider",
1069
+ "meeting with adult care provider"
1070
+ ]
1071
+ },
1072
+ {
1073
+ "category": "Waiting associated with caring for household adults",
1074
+ "code": "030405",
1075
+ "examples": [
1076
+ "waiting with hh adult at physician's office",
1077
+ "waiting while doctor examines hh adult",
1078
+ "waiting to meet a hh adult's care provider",
1079
+ "waiting with hh adult at hospital"
1080
+ ]
1081
+ },
1082
+ {
1083
+ "category": "Caring for household adults, not elsewhere classified",
1084
+ "code": "030499"
1085
+ },
1086
+ {
1087
+ "category": "Helping hh adults",
1088
+ "code": "030501",
1089
+ "examples": [
1090
+ "helping hh adult w/taxes/bills",
1091
+ "helping hh adult w/computer",
1092
+ "shopping for hh adult (not self)"
1093
+ ]
1094
+ },
1095
+ {
1096
+ "category": "Organization & planning for hh adults",
1097
+ "code": "030502",
1098
+ "examples": [
1099
+ "organizing parties for hh adult",
1100
+ "planning activities for hh adult",
1101
+ "making things for hh adult",
1102
+ "planning events for hh adult",
1103
+ "packing hh adult's bags",
1104
+ "planning parties for hh adult"
1105
+ ]
1106
+ },
1107
+ {
1108
+ "category": "Picking up/dropping off hh adult",
1109
+ "code": "030503",
1110
+ "examples": [
1111
+ "dropping hh adult off at senior center",
1112
+ "helping hh adult get into car",
1113
+ "picking up hh adult from hh adult's event"
1114
+ ]
1115
+ },
1116
+ {
1117
+ "category": "Waiting associated with helping hh adults",
1118
+ "code": "030504",
1119
+ "examples": [
1120
+ "waiting to pick up hh adult"
1121
+ ]
1122
+ },
1123
+ {
1124
+ "category": "Helping household adults, not elsewhere classified",
1125
+ "code": "030599",
1126
+ "examples": [
1127
+ "waiting for hh adult to get ready"
1128
+ ]
1129
+ },
1130
+ {
1131
+ "category": "Caring for & helping hh members, not elsewhere classified",
1132
+ "code": "039999"
1133
+ },
1134
+ {
1135
+ "category": "Physical care for nonhh children",
1136
+ "code": "040101",
1137
+ "examples": [
1138
+ "putting nonhh child to bed",
1139
+ "cutting nonhh child's hair",
1140
+ "soothing nonhh child/baby",
1141
+ "cuddling/rocking/holding nonhh child",
1142
+ "feeding nonhh child",
1143
+ "helping nonhh child get dressed/brush teeth/bathe",
1144
+ "laying out clothes for nonhh child",
1145
+ "tucking in nonhh child",
1146
+ "getting nonhh child ready to go somewhere",
1147
+ "helping nonhh child feed him/herself",
1148
+ "changing nonhh child's diapers",
1149
+ "carrying nonhh child/baby",
1150
+ "helping nonhh child use the bathroom",
1151
+ "waking nonhh child",
1152
+ "giving nonhh child a bottle",
1153
+ "dressing/bathing nonhh child",
1154
+ "preparing a shower for nonhh child",
1155
+ "drawing a bath for nonhh child"
1156
+ ]
1157
+ },
1158
+ {
1159
+ "category": "Reading to/with nonhh children",
1160
+ "code": "040102",
1161
+ "examples": [
1162
+ "teaching nonhh child to read",
1163
+ "reading to or with nonhh children",
1164
+ "listening to a nonhh child read",
1165
+ "helping nonhh child read"
1166
+ ]
1167
+ },
1168
+ {
1169
+ "category": "Playing with nonhh children, not sports",
1170
+ "code": "040103",
1171
+ "examples": [
1172
+ "horsing around w/nonhh child",
1173
+ "tickling nonhh child",
1174
+ "entertaining nonhh child",
1175
+ "giving nonhh child a piggyback ride",
1176
+ "dancing with nonhh child",
1177
+ "playing games w/nonhh child only",
1178
+ "playing with nonhh child"
1179
+ ]
1180
+ },
1181
+ {
1182
+ "category": "Arts and crafts with nonhh children",
1183
+ "code": "040104",
1184
+ "examples": [
1185
+ "organizing coin collection with nonhh child",
1186
+ "making holiday decorations w/nonhh child",
1187
+ "helping nonhh child make arts and crafts",
1188
+ "building model planes with nonhh child"
1189
+ ]
1190
+ },
1191
+ {
1192
+ "category": "Playing sports with nonhh children",
1193
+ "code": "040105",
1194
+ "examples": [
1195
+ "strolling with a nonhh child",
1196
+ "teaching nonhh child how to play a sport",
1197
+ "riding bikes with nonhh child",
1198
+ "teaching nonhh child to ride a bike",
1199
+ "playing basketball with nonhh child",
1200
+ "walking with a nonhh child"
1201
+ ]
1202
+ },
1203
+ {
1204
+ "category": "Talking with/listening to nonhh children",
1205
+ "code": "040106",
1206
+ "examples": [
1207
+ "listening to a nonhh child sing",
1208
+ "telling nonhh child to brush teeth",
1209
+ "fussing at/scolding/lecturing nonhh child",
1210
+ "singing to nonhh child",
1211
+ "singing with nonhh child",
1212
+ "telling nonhh child to get ready for bed",
1213
+ "talking with nonhh child",
1214
+ "hearing about nonhh child's day"
1215
+ ]
1216
+ },
1217
+ {
1218
+ "category": "Organization & planning for nonhh children",
1219
+ "code": "040108",
1220
+ "examples": [
1221
+ "making costumes for nonhh child",
1222
+ "planning play dates for nonhh child",
1223
+ "organizing activities for nonhh child",
1224
+ "planning party/activities for nonhh child",
1225
+ "signing nonhh child up for activities",
1226
+ "helping w/party for nonhh child",
1227
+ "packing/unpacking nonhh child's bag"
1228
+ ]
1229
+ },
1230
+ {
1231
+ "category": "Looking after nonhh children (as primary activity)",
1232
+ "code": "040109",
1233
+ "examples": [
1234
+ "watching but not interacting w/nonhh child",
1235
+ "accompanying nonhh child visiting Santa Claus",
1236
+ "accompanying nonhh child trick-or-treating",
1237
+ "supervising nonhh child swimming",
1238
+ "checking on nonhh child",
1239
+ "supervising/monitoring/keeping tabs on nonhh child"
1240
+ ]
1241
+ },
1242
+ {
1243
+ "category": "Attending nonhh children's events",
1244
+ "code": "040110",
1245
+ "examples": [
1246
+ "attending nonhh child's recital",
1247
+ "watching nonhh child's sporting event or school play",
1248
+ "watching nonhh child's karate clas",
1249
+ "watching nonhh child's dance class",
1250
+ "watching nonhh child's baseball practice"
1251
+ ]
1252
+ },
1253
+ {
1254
+ "category": "Waiting for/with nonhh children",
1255
+ "code": "040111",
1256
+ "examples": [
1257
+ "waiting for nonhh child to finish his/her activity",
1258
+ "waiting for nonhh child to get ready",
1259
+ "waiting for school bus with nonhh child",
1260
+ "waiting to pick up nonhh child"
1261
+ ]
1262
+ },
1263
+ {
1264
+ "category": "Dropping off/picking up nonhh children",
1265
+ "code": "040112",
1266
+ "examples": [
1267
+ "dropping off nonhh child at soccer practice",
1268
+ "picking up nonhh child from day care/school",
1269
+ "dropping off nonhh child at babysitter's",
1270
+ "dropping off nonhh child at friend's house",
1271
+ "putting nonhh child on bus"
1272
+ ]
1273
+ },
1274
+ {
1275
+ "category": "Caring for and helping nonhh children, not elsewhere classified",
1276
+ "code": "040199",
1277
+ "examples": [
1278
+ "handing out Halloween candy"
1279
+ ]
1280
+ },
1281
+ {
1282
+ "category": "Homework (nonhh children)",
1283
+ "code": "040201",
1284
+ "examples": [
1285
+ "reviewing nonhh child's homework",
1286
+ "helping a nonhh child w/homework",
1287
+ "helping nonhh child with sch. project",
1288
+ "quizzing nonhh child before a test",
1289
+ "signing nonhh child's homework log",
1290
+ "checking nonhh child's homework",
1291
+ "picking up nonhh child's books/assignments"
1292
+ ]
1293
+ },
1294
+ {
1295
+ "category": "Meetings and school conferences (nonhh children)",
1296
+ "code": "040202",
1297
+ "examples": [
1298
+ "meeting with guidance counselor of nonhh child",
1299
+ "meeting w/school speech pathologist of nonhh child",
1300
+ "talking with teachers of nonhh child",
1301
+ "observing nonhh child's class",
1302
+ "meeting with nonhh child's tutor",
1303
+ "attending non-hh child's parent-teacher conference",
1304
+ "attending PTA meeting",
1305
+ "attending nonhh child's school open house",
1306
+ "meeting w/school psychologist of nonhh child",
1307
+ "talking to/with nonhh child's tutor",
1308
+ "attending non-hh child's back-to-school night",
1309
+ "meeting with principal of nonhh child"
1310
+ ]
1311
+ },
1312
+ {
1313
+ "category": "Home schooling of nonhh children",
1314
+ "code": "040203",
1315
+ "examples": [
1316
+ "home schooling a nonhh child"
1317
+ ]
1318
+ },
1319
+ {
1320
+ "category": "Waiting associated with nonhh children's education",
1321
+ "code": "040204",
1322
+ "examples": [
1323
+ "waiting to meet with nonhh child's teacher"
1324
+ ]
1325
+ },
1326
+ {
1327
+ "category": "Activities related to nonhh child's educ., not elsewhere classified",
1328
+ "code": "040299"
1329
+ },
1330
+ {
1331
+ "category": "Providing medical care to nonhh children",
1332
+ "code": "040301",
1333
+ "examples": [
1334
+ "sitting with sick nonhh child",
1335
+ "helping nonhh child w/phys. therapy",
1336
+ "giving nonhh child's insulin shot",
1337
+ "taking a nonhh child's temperature",
1338
+ "giving nonhh child medicine",
1339
+ "putting medicine on nonhh child's burn",
1340
+ "bandaging nonhh child's scrapes/cuts",
1341
+ "bandaging nonhh child's cuts/burns",
1342
+ "putting medicine on nonhh child's cuts"
1343
+ ]
1344
+ },
1345
+ {
1346
+ "category": "Obtaining medical care for nonhh children",
1347
+ "code": "040302",
1348
+ "examples": [
1349
+ "talking with nonhh child's nurse",
1350
+ "accompanying nonhh child to medical appt",
1351
+ "talking with nonhh child's doctor"
1352
+ ]
1353
+ },
1354
+ {
1355
+ "category": "Waiting associated with nonhh children's health",
1356
+ "code": "040303",
1357
+ "examples": [
1358
+ "waiting with nonhh child at physician's office",
1359
+ "waiting while doctor examines nonhh child",
1360
+ "waiting with nonhh child at hospital"
1361
+ ]
1362
+ },
1363
+ {
1364
+ "category": "Activities related to nonhh child's health, not elsewhere classified",
1365
+ "code": "040399",
1366
+ "examples": [
1367
+ "visiting a nonhh child in the hospital"
1368
+ ]
1369
+ },
1370
+ {
1371
+ "category": "Physical care for nonhh adults",
1372
+ "code": "040401",
1373
+ "examples": [
1374
+ "providing physical aid to nonhh adult",
1375
+ "cutting nonhh adult's hair",
1376
+ "helping nonhh adult dress",
1377
+ "feeding nonhh adult",
1378
+ "putting nonhh adult to bed",
1379
+ "getting nonhh adult ready to go somewhere",
1380
+ "waking nonhh adult",
1381
+ "dressing nonhh adult",
1382
+ "bathing nonhh adult"
1383
+ ]
1384
+ },
1385
+ {
1386
+ "category": "Looking after nonhh adult (as a primary activity)",
1387
+ "code": "040402",
1388
+ "examples": [
1389
+ "checking on nonhh adult",
1390
+ "supervising nonhh adult",
1391
+ "monitoring nonhh adult"
1392
+ ]
1393
+ },
1394
+ {
1395
+ "category": "Providing medical care to nonhh adult",
1396
+ "code": "040403",
1397
+ "examples": [
1398
+ "giving nonhh adult medicine",
1399
+ "bandaging nonhh adult"
1400
+ ]
1401
+ },
1402
+ {
1403
+ "category": "Obtaining medical and care services for nonhh adult",
1404
+ "code": "040404",
1405
+ "examples": [
1406
+ "accompanying nonhh adult to medical appt.",
1407
+ "talking to nonhh adult's doctors/nurses",
1408
+ "meeting w/nonhh adult care provider",
1409
+ "talking to/with nonhh adult care provider"
1410
+ ]
1411
+ },
1412
+ {
1413
+ "category": "Waiting associated with caring for nonhh adults",
1414
+ "code": "040405",
1415
+ "examples": [
1416
+ "waiting while doctor examines nonhh adult",
1417
+ "waiting with nonhh adult at physician's office",
1418
+ "waiting to meet a nonhh adult care provider",
1419
+ "waiting with nonhh adult at hospital"
1420
+ ]
1421
+ },
1422
+ {
1423
+ "category": "Caring for nonhh adults, not elsewhere classified",
1424
+ "code": "040499"
1425
+ },
1426
+ {
1427
+ "category": "Housework, cooking, & shopping assistance for nonhh adults",
1428
+ "code": "040501",
1429
+ "examples": [
1430
+ "doing housework for nonhh adult",
1431
+ "cooking/preparing food for nonhh adult",
1432
+ "doing laundry for nonhh adult (not self)",
1433
+ "shopping for nonhh adult (not self)"
1434
+ ]
1435
+ },
1436
+ {
1437
+ "category": "House & lawn maintenance & repair assistance for nonhh adults",
1438
+ "code": "040502",
1439
+ "examples": [
1440
+ "disposing of trash for nonhh adult",
1441
+ "painting house for nonhh adult",
1442
+ "mowing the lawn for nonhh adult",
1443
+ "mending fence for nonhh adult",
1444
+ "fixing plumbing leak for nonhh adult"
1445
+ ]
1446
+ },
1447
+ {
1448
+ "category": "Animal & pet care assistance for nonhh adults",
1449
+ "code": "040503",
1450
+ "examples": [
1451
+ "bathing dog for nonhh adult",
1452
+ "walking dog for nonhh adult",
1453
+ "feeding pets for nonhh adult"
1454
+ ]
1455
+ },
1456
+ {
1457
+ "category": "Vehicle & appliance maintenance/repair assistance for nonhh adults",
1458
+ "code": "040504",
1459
+ "examples": [
1460
+ "fixing computer for nonhh adult",
1461
+ "fixing car for nonhh adult",
1462
+ "changing tires for nonhh adult",
1463
+ "fixing appliances for nonhh adult",
1464
+ "maintaining sports equipment for nonhh adults",
1465
+ "adjusting brakes for nonhh adult"
1466
+ ]
1467
+ },
1468
+ {
1469
+ "category": "Financial management assistance for nonhh adults",
1470
+ "code": "040505",
1471
+ "examples": [
1472
+ "helping nonhh adult w/taxes/bills",
1473
+ "helping nonhh adult w/computer applications"
1474
+ ]
1475
+ },
1476
+ {
1477
+ "category": "Household management & paperwork assistance for nonhh adults",
1478
+ "code": "040506",
1479
+ "examples": [
1480
+ "running errands for nonhh adult (not self)",
1481
+ "planning events for nonhh adult",
1482
+ "organizing party for nonhh adult",
1483
+ "doing paperwork for nonhh adult",
1484
+ "planning activities for nonhh adult",
1485
+ "planning party for nonhh adult",
1486
+ "making things for nonhh adult",
1487
+ "packing nonhh adult's bags"
1488
+ ]
1489
+ },
1490
+ {
1491
+ "category": "Picking up/dropping off nonhh adult",
1492
+ "code": "040507",
1493
+ "examples": [
1494
+ "picking up nonhh adult from adult's event",
1495
+ "dropping nonhh adult off at senior center",
1496
+ "helping nonhh adult get into car"
1497
+ ]
1498
+ },
1499
+ {
1500
+ "category": "Waiting associated with helping nonhh adults",
1501
+ "code": "040508",
1502
+ "examples": [
1503
+ "waiting to pick up nonhh adult",
1504
+ "waiting for nonhh adult to get ready"
1505
+ ]
1506
+ },
1507
+ {
1508
+ "category": "Helping nonhh adults, not elsewhere classified",
1509
+ "code": "040599"
1510
+ },
1511
+ {
1512
+ "category": "Caring for & helping nonhh members, not elsewhere classified",
1513
+ "code": "049999"
1514
+ },
1515
+ {
1516
+ "category": "Work, main job",
1517
+ "code": "050101",
1518
+ "examples": [
1519
+ "teaching confirmation class (main job)",
1520
+ "phone calls to/from coworkers (main job)",
1521
+ "phone calls to/from clients (main job)",
1522
+ "attending conferences/convention (main job)",
1523
+ "enrollment in training/classes (main job)",
1524
+ "designing/updating a website (main job)",
1525
+ "surfing the Internet (main job)",
1526
+ "phone calls to/from supervisors (main job)",
1527
+ "attending class (main job)",
1528
+ "reading/sending e-mail (main job)",
1529
+ "attending sales training (main job)",
1530
+ "at work (main job)",
1531
+ "attending typing training (main job)",
1532
+ "phone calls to/from customers (main job)",
1533
+ "reviewing notes, briefs, or papers (main job)",
1534
+ "making reserv. on the Internet (main job)",
1535
+ "preparing lesson plans/grading papers (main job)",
1536
+ "telephone calls (main job)",
1537
+ "writing memos/papers/letters (main job)",
1538
+ "organizing/preparing materials (main job)",
1539
+ "registering for training (main job)",
1540
+ "reading the Bible/Torah/scriptures (main job)",
1541
+ "calling leads for stories/information (main job)",
1542
+ "on-the-job training (main job)",
1543
+ "teaching/leading Bible study (main job)",
1544
+ "doing research/homework (main job)",
1545
+ "marking assignments (main job)",
1546
+ "computer use (main job)",
1547
+ "working extra hours (main job)",
1548
+ "registering for class (main job)",
1549
+ "reading and writing (main job)",
1550
+ "leading a blessing (main job)",
1551
+ "talking to other conference attendees (main job)",
1552
+ "checking voicemail messages (main job)",
1553
+ "putting in overtime at work (main job)",
1554
+ "leading religious youth group (main job)",
1555
+ "teaching bat/bar mitzvah class (main job)",
1556
+ "teaching religious class (main job)",
1557
+ "checking e-mail (main job)",
1558
+ "hearing confession (main job)",
1559
+ "talking to instructor (class for main job)",
1560
+ "reading a book/other material (main job)"
1561
+ ]
1562
+ },
1563
+ {
1564
+ "category": "Work, other job(s)",
1565
+ "code": "050102",
1566
+ "examples": [
1567
+ "registering for class (other job)",
1568
+ "enrollment in training/classes (other job)",
1569
+ "teaching confirmation class (other job)",
1570
+ "designing/updating a website (other job)",
1571
+ "moonlighting",
1572
+ "checking e-mail (other job)",
1573
+ "attending conferences/convention (other job)",
1574
+ "writing memos/papers/letters (other job)",
1575
+ "computer use (other job)",
1576
+ "hearing confession (other job)",
1577
+ "checking voicemail messages (other job)",
1578
+ "leading a blessing (other job)",
1579
+ "surfing the Internet (other job)",
1580
+ "doing research/homework (other job)",
1581
+ "phone calls to/from coworkers (other job)",
1582
+ "teaching/leading Bible study (other job)",
1583
+ "phone calls to/from clients (other job)",
1584
+ "making reserv. on the Internet (other job)",
1585
+ "reading/sending e-mail (other job)",
1586
+ "preparing lesson plans/grading papers (other job)",
1587
+ "attending class (other job)",
1588
+ "telephone calls (other job)",
1589
+ "talking to instructor (class for other job)",
1590
+ "on-the-job training (other job)",
1591
+ "organizing/preparing materials (other job)",
1592
+ "attending sales training (other job)",
1593
+ "teaching bat/bar mitzvah class (other job)",
1594
+ "leading religious youth group (other job)",
1595
+ "reading the Bible/Torah/scriptures (other job)",
1596
+ "attending typing training (other job)",
1597
+ "phone calls to/from supervisors (other job)",
1598
+ "calling leads for stories/information (other job)",
1599
+ "reading a book/other material (other job)",
1600
+ "teaching religious class (other job)",
1601
+ "at work (other job)",
1602
+ "phone calls to/from customers (other job)",
1603
+ "reading and writing (other job)",
1604
+ "extra hours at other job",
1605
+ "registering for training (other job)",
1606
+ "marking assignments (other job)",
1607
+ "reviewing notes, briefs, or papers (other job)",
1608
+ "talking to other conference attendees (other job)"
1609
+ ]
1610
+ },
1611
+ {
1612
+ "category": "Security procedures related to work",
1613
+ "code": "050103",
1614
+ "examples": [
1615
+ "opening bags for security search (work)",
1616
+ "passing through metal detector (work)",
1617
+ "being searched at security checkpoint (work)"
1618
+ ]
1619
+ },
1620
+ {
1621
+ "category": "Waiting associated with working",
1622
+ "code": "050104"
1623
+ },
1624
+ {
1625
+ "category": "Working, not elsewhere classified",
1626
+ "code": "050199"
1627
+ },
1628
+ {
1629
+ "category": "Socializing, relaxing, and leisure as part of job",
1630
+ "code": "050201",
1631
+ "examples": [
1632
+ "attending social event w/coworkers (part of job)",
1633
+ "talking w/co-workers at social event (part of job)",
1634
+ "talking w/clients at social event (part of job)",
1635
+ "attending social event w/bosses (part of job)"
1636
+ ]
1637
+ },
1638
+ {
1639
+ "category": "Eating and drinking as part of job",
1640
+ "code": "050202",
1641
+ "examples": [
1642
+ "eating/drinking w/bosses (part of job)",
1643
+ "having lunch/dinner w/clients (part of job)",
1644
+ "eating/drinking w/coworkers (part of job)",
1645
+ "eating/drinking w/clients (part of job)",
1646
+ "eating/drinking w/customers (part of job)"
1647
+ ]
1648
+ },
1649
+ {
1650
+ "category": "Sports and exercise as part of job",
1651
+ "code": "050203",
1652
+ "examples": [
1653
+ "playing golf w/clients (part of job)",
1654
+ "working out w/clients (part of job)",
1655
+ "attending sporting event w/boss (part of job)"
1656
+ ]
1657
+ },
1658
+ {
1659
+ "category": "Security procedures as part of job",
1660
+ "code": "050204",
1661
+ "examples": [
1662
+ "opening bags for security search (part of job)",
1663
+ "being searched at security checkpoint (part of job)",
1664
+ "passing through metal detector (part of job)"
1665
+ ]
1666
+ },
1667
+ {
1668
+ "category": "Waiting associated with work-related activities",
1669
+ "code": "050205"
1670
+ },
1671
+ {
1672
+ "category": "Work-related activities, not elsewhere classified",
1673
+ "code": "050299"
1674
+ },
1675
+ {
1676
+ "category": "Income-generating hobbies, crafts, and food",
1677
+ "code": "050301",
1678
+ "examples": [
1679
+ "making furniture for sale",
1680
+ "making pottery for sale",
1681
+ "making dinners for sale",
1682
+ "making tapestries/quilts for sale",
1683
+ "drawing, painting, or sketching for sale",
1684
+ "preparing food or drink for sale",
1685
+ "doing woodworking for sale",
1686
+ "making baskets for sale"
1687
+ ]
1688
+ },
1689
+ {
1690
+ "category": "Income-generating performances",
1691
+ "code": "050302",
1692
+ "examples": [
1693
+ "playing in a band for pay",
1694
+ "singing for pay",
1695
+ "dancing for pay",
1696
+ "acting in a play for pay"
1697
+ ]
1698
+ },
1699
+ {
1700
+ "category": "Income-generating services",
1701
+ "code": "050303",
1702
+ "examples": [
1703
+ "typing paper for pay",
1704
+ "mowing lawns for pay",
1705
+ "shoveling snow for pay",
1706
+ "babysitting for pay",
1707
+ "doing household chores for pay",
1708
+ "home improvements for pay"
1709
+ ]
1710
+ },
1711
+ {
1712
+ "category": "Income-generating rental property activities",
1713
+ "code": "050304",
1714
+ "examples": [
1715
+ "making repairs to rental property",
1716
+ "maintaining/renovating rental property"
1717
+ ]
1718
+ },
1719
+ {
1720
+ "category": "Waiting associated with other income-generating activities",
1721
+ "code": "050305"
1722
+ },
1723
+ {
1724
+ "category": "Other income-generating activities, not elsewhere classified",
1725
+ "code": "050399",
1726
+ "examples": [
1727
+ "organizing items for yard sale",
1728
+ "selling items at flea market",
1729
+ "collecting aluminum cans to sell for self",
1730
+ "selling own used textbooks for pay",
1731
+ "listing/selling items on e-bay",
1732
+ "sorting items for garage sale",
1733
+ "selling items at auction, yard sale",
1734
+ "selling items at a garage sale",
1735
+ "redeeming winning lottery ticket",
1736
+ "listing/selling items online"
1737
+ ]
1738
+ },
1739
+ {
1740
+ "category": "Job search activities",
1741
+ "code": "050401",
1742
+ "examples": [
1743
+ "auditioning for acting role (non-volunteer)",
1744
+ "picking up job application",
1745
+ "researching details about a job",
1746
+ "submitting applications",
1747
+ "asking former employers to provide references",
1748
+ "sending out resumes",
1749
+ "meeting with headhunter/temp agency",
1750
+ "sending resumes to employers",
1751
+ "placing/answering ads",
1752
+ "checking vacancies",
1753
+ "filling out job application",
1754
+ "researching an employer",
1755
+ "writing/updating resume",
1756
+ "contacting employer",
1757
+ "asking about job openings",
1758
+ "auditioning for band/symphony (non-volunteer)",
1759
+ "reading ads in paper/on Internet",
1760
+ "making phone calls to prospective. employer"
1761
+ ]
1762
+ },
1763
+ {
1764
+ "category": "Job interviewing",
1765
+ "code": "050403",
1766
+ "examples": [
1767
+ "scheduling/canceling interview (for self)",
1768
+ "preparing for interview",
1769
+ "interviewing by phone or in person"
1770
+ ]
1771
+ },
1772
+ {
1773
+ "category": "Waiting associated with job search or interview",
1774
+ "code": "050404",
1775
+ "examples": [
1776
+ "waiting to go in for an interview"
1777
+ ]
1778
+ },
1779
+ {
1780
+ "category": "Security procedures rel. to job search/interviewing",
1781
+ "code": "050405",
1782
+ "examples": [
1783
+ "passing through metal detector (job search)",
1784
+ "opening bags for security search (job search)",
1785
+ "being searched at security checkpoint (job search)"
1786
+ ]
1787
+ },
1788
+ {
1789
+ "category": "Job search and Interviewing, not elsewhere classified",
1790
+ "code": "050499"
1791
+ },
1792
+ {
1793
+ "category": "Work and work-related activities, not elsewhere classified",
1794
+ "code": "059999"
1795
+ },
1796
+ {
1797
+ "category": "Taking class for degree, certification, or licensure",
1798
+ "code": "060101",
1799
+ "examples": [
1800
+ "taking exams (degree, certificate, or license)",
1801
+ "taking a field trip (degree, certificate, or license)",
1802
+ "taking on-line course (degree, certificate, or license)",
1803
+ "attending a seminar (degree, certificate, or license)",
1804
+ "auditing a course (degree, certificate, or license)",
1805
+ "listening to a lecture (degree, certificate, or license)",
1806
+ "talking to classmates (degree, certificate, or license)",
1807
+ "talking to teacher (degree, certificate, or license)",
1808
+ "attending practicum/internships (degree, certificate, or license)",
1809
+ "attending class (degree, certificate, or license)"
1810
+ ]
1811
+ },
1812
+ {
1813
+ "category": "Taking class for personal interest",
1814
+ "code": "060102",
1815
+ "examples": [
1816
+ "taking academic class (personal int.)",
1817
+ "taking a pottery class (personal int.)",
1818
+ "taking self-defense (personal int.)",
1819
+ "taking a retirement planning seminar",
1820
+ "taking a massage class (personal int.)",
1821
+ "taking a wine appreciation class (personal int.)",
1822
+ "taking a cooking class (personal int.)",
1823
+ "dance class (personal int.)",
1824
+ "attending Lamaze class",
1825
+ "taking an art, craft, hobby, recreational course (personal int.)",
1826
+ "taking a sewing class (personal int.)",
1827
+ "taking on-line course (personal interest)",
1828
+ "prenatal/child care classes (personal int.)",
1829
+ "taking photography class (personal int.)",
1830
+ "taking personal development classes (personal int.)",
1831
+ "taking CPR, first aid (personal int.)",
1832
+ "talking to classmates (class for personal int.)",
1833
+ "taking driving lessons",
1834
+ "taking music/voice lessons (personal int.)",
1835
+ "taking parenting class",
1836
+ "talking to teacher (class for personal int.)",
1837
+ "taking a financial planning class (personal int.)",
1838
+ "taking a car maintenance/repair class (personal int.)",
1839
+ "taking driver's education"
1840
+ ]
1841
+ },
1842
+ {
1843
+ "category": "Waiting associated with taking classes",
1844
+ "code": "060103",
1845
+ "examples": [
1846
+ "waiting for the teacher"
1847
+ ]
1848
+ },
1849
+ {
1850
+ "category": "Security procedures rel. to taking classes",
1851
+ "code": "060104",
1852
+ "examples": [
1853
+ "being searched at security checkpoint (taking classes)",
1854
+ "opening bags for security search (taking classes)",
1855
+ "passing through metal detector (taking classes)"
1856
+ ]
1857
+ },
1858
+ {
1859
+ "category": "Taking class, not elsewhere classified",
1860
+ "code": "060199",
1861
+ "examples": [
1862
+ "taking SAT prep course",
1863
+ "taking GMAT prep course",
1864
+ "taking GRE prep course",
1865
+ "taking a CPA prep course",
1866
+ "attending study hall",
1867
+ "having detention",
1868
+ "attending class, reason unknown",
1869
+ "having a free period",
1870
+ "taking LSAT prep course"
1871
+ ]
1872
+ },
1873
+ {
1874
+ "category": "Extracurricular club activities",
1875
+ "code": "060201",
1876
+ "examples": [
1877
+ "attending American Field Service activities, inc mtgs",
1878
+ "attending science club activities",
1879
+ "attending Key Club activities, including meetings",
1880
+ "attending math club activities",
1881
+ "participating in chess club activities, inc. meetings",
1882
+ "attending pep club activities",
1883
+ "attending National Honor Society activities",
1884
+ "practicing for debate club competition",
1885
+ "attending language club activities",
1886
+ "participating in academic club activities, inc meetings"
1887
+ ]
1888
+ },
1889
+ {
1890
+ "category": "Extracurricular music & performance activities",
1891
+ "code": "060202",
1892
+ "examples": [
1893
+ "attending choir practice as extracurricular school activity",
1894
+ "attending play practice",
1895
+ "attending band practice"
1896
+ ]
1897
+ },
1898
+ {
1899
+ "category": "Extracurricular student government activities",
1900
+ "code": "060203",
1901
+ "examples": [
1902
+ "preparing for student govt elections",
1903
+ "attending student government meetings"
1904
+ ]
1905
+ },
1906
+ {
1907
+ "category": "Waiting associated with extracurricular activities",
1908
+ "code": "060204",
1909
+ "examples": [
1910
+ "waiting for band practice to start",
1911
+ "waiting for an after-school meeting to start"
1912
+ ]
1913
+ },
1914
+ {
1915
+ "category": "Education-related extracurricular activities, not elsewhere classified",
1916
+ "code": "060299"
1917
+ },
1918
+ {
1919
+ "category": "Research/homework for class for degree, certification, or licensure",
1920
+ "code": "060301",
1921
+ "examples": [
1922
+ "writing paper/essay (degree, certificate, or licensure)",
1923
+ "attending study group (degree, certificate, or licensure)",
1924
+ "studying (degree, certificate, or licensure)",
1925
+ "reading/sending e-mail (degree, certificate, or licensure)",
1926
+ "organizing notes (degree, certificate, or licensure)",
1927
+ "reading (degree, certificate, or licensure)",
1928
+ "reading the Bible/scriptures (degree, certificate, or licensure)",
1929
+ "listening to language cd (degree, certificate, or licensure)"
1930
+ ]
1931
+ },
1932
+ {
1933
+ "category": "Research/homework for class for pers. interest",
1934
+ "code": "060302",
1935
+ "examples": [
1936
+ "reading/sending e-mail (class for personal int.)",
1937
+ "writing paper/essay (class for personal int.)",
1938
+ "studying (class for personal int.)",
1939
+ "reading (class for personal int.)",
1940
+ "attending study group (class for personal int.)",
1941
+ "organizing notes (class for personal int.)",
1942
+ "listening to language cd (class for personal int.)"
1943
+ ]
1944
+ },
1945
+ {
1946
+ "category": "Waiting associated with research/homework",
1947
+ "code": "060303",
1948
+ "examples": [
1949
+ "waiting for study group"
1950
+ ]
1951
+ },
1952
+ {
1953
+ "category": "Research/homework not elsewhere classified",
1954
+ "code": "060399",
1955
+ "examples": [
1956
+ "studying for the GMAT",
1957
+ "studying for the SAT",
1958
+ "studying for the LSAT",
1959
+ "preparing for the GRE",
1960
+ "studying English (personal interest)",
1961
+ "studying for the GRE",
1962
+ "preparing for the LSAT",
1963
+ "preparing for SAT",
1964
+ "studying for the CPA exam"
1965
+ ]
1966
+ },
1967
+ {
1968
+ "category": "Administrative activities: class for degree, certification, or licensure",
1969
+ "code": "060401",
1970
+ "examples": [
1971
+ "registering for class (degree, certificate, or licensure)",
1972
+ "getting parking pass for class (degree, certificate, or licensure)",
1973
+ "paying tuition/fees for class (degree)",
1974
+ "getting ID for class (degree, certificate, or licensure)",
1975
+ "enrolling in class (degree, certificate, or licensure)",
1976
+ "looking at course descriptions/listings (degree, certificate, or licensure)"
1977
+ ]
1978
+ },
1979
+ {
1980
+ "category": "Administrative activities: class for personal interest",
1981
+ "code": "060402",
1982
+ "examples": [
1983
+ "getting ID for class (personal interest)",
1984
+ "paying fees for class (personal interest)",
1985
+ "getting parking pass for class (personal interest)",
1986
+ "paying tuition for class (personal interest)",
1987
+ "enrolling in class (personal interest)",
1988
+ "registering for class (personal interest)"
1989
+ ]
1990
+ },
1991
+ {
1992
+ "category": "Waiting associated w/admin. activities (education)",
1993
+ "code": "060403",
1994
+ "examples": [
1995
+ "waiting in line to pay tuition/fees",
1996
+ "waiting in line to register/get ID",
1997
+ "waiting to enroll in class"
1998
+ ]
1999
+ },
2000
+ {
2001
+ "category": "Administrative for education, not elsewhere classified",
2002
+ "code": "060499",
2003
+ "examples": [
2004
+ "registering for test prep class",
2005
+ "registering for GMAT",
2006
+ "registering for CPA exam",
2007
+ "registering for GRE",
2008
+ "registering for MCAT",
2009
+ "registering for LSAT",
2010
+ "registering for SAT"
2011
+ ]
2012
+ },
2013
+ {
2014
+ "category": "Education, not elsewhere classified",
2015
+ "code": "069999",
2016
+ "examples": [
2017
+ "taking the MCAT",
2018
+ "taking the LSAT",
2019
+ "taking the SAT",
2020
+ "taking the CPA exam",
2021
+ "taking the GMAT",
2022
+ "attending own graduation ceremony",
2023
+ "taking the GRE"
2024
+ ]
2025
+ },
2026
+ {
2027
+ "category": "Grocery shopping",
2028
+ "code": "070101",
2029
+ "examples": [
2030
+ "ordering groceries online",
2031
+ "buying/ordering/paying for groceries",
2032
+ "talking to the produce manager"
2033
+ ]
2034
+ },
2035
+ {
2036
+ "category": "Purchasing gas",
2037
+ "code": "070102",
2038
+ "examples": [
2039
+ "buying gas/paying for gasoline",
2040
+ "pumping gas",
2041
+ "talking to gas station attendant"
2042
+ ]
2043
+ },
2044
+ {
2045
+ "category": "Purchasing food (not groceries)",
2046
+ "code": "070103",
2047
+ "examples": [
2048
+ "picking up take-out food",
2049
+ "buying fast food",
2050
+ "paying the pizza delivery person",
2051
+ "paying for meal at restaurant",
2052
+ "paying check for a meal/drink/snack",
2053
+ "paying for fast food at drive-through",
2054
+ "talking to fast food cashier/talking to the waiter",
2055
+ "placing order at a deli/fast food place"
2056
+ ]
2057
+ },
2058
+ {
2059
+ "category": "Shopping, except groceries, food and gas",
2060
+ "code": "070104",
2061
+ "examples": [
2062
+ "test-driving a vehicle",
2063
+ "buying appliances",
2064
+ "buying everyday consumer goods",
2065
+ "shopping at warehouse stores (Wal-Mart, Costco, Super-K, etc.)",
2066
+ "buying/paying for a new or used car",
2067
+ "returning videotapes to store/renting a movie",
2068
+ "returning consumer goods",
2069
+ "buying gardening supplies",
2070
+ "looking through catalogs",
2071
+ "paying for a rental car/truck/van",
2072
+ "buying a pet",
2073
+ "looking at products",
2074
+ "ordering concert tickets/ordering football tickets",
2075
+ "shopping at mall",
2076
+ "buying/ordering clothes",
2077
+ "looking at products in catalogs",
2078
+ "shopping for a new or used car",
2079
+ "ordering products",
2080
+ "renting a tuxedo",
2081
+ "picking up prescriptions/film",
2082
+ "dropping off products for repairs",
2083
+ "paying for purchases",
2084
+ "renting products",
2085
+ "checking out of hotel/motel/B&B",
2086
+ "renting a rug shampooer",
2087
+ "shopping at e-bay/flea markets/auctions",
2088
+ "visiting a book fair",
2089
+ "buying movie tickets",
2090
+ "window shopping",
2091
+ "buying books/CDs/other items",
2092
+ "renting lawn equipment",
2093
+ "checking into hotel/motel/B&B",
2094
+ "paying for movie tickets",
2095
+ "browsing/shopping but not yet buying",
2096
+ "buying postage stamps",
2097
+ "renting a car/truck/van",
2098
+ "browsing/shopping at fundraisers",
2099
+ "buying airline tickets online",
2100
+ "shopping at yard sales",
2101
+ "talking to the salesclerk"
2102
+ ]
2103
+ },
2104
+ {
2105
+ "category": "Waiting associated with shopping",
2106
+ "code": "070105",
2107
+ "examples": [
2108
+ "waiting in line to pay for goods/buy gas",
2109
+ "waiting in line to purchase groceries"
2110
+ ]
2111
+ },
2112
+ {
2113
+ "category": "Shopping, not elsewhere classified",
2114
+ "code": "070199"
2115
+ },
2116
+ {
2117
+ "category": "Comparison shopping",
2118
+ "code": "070201",
2119
+ "examples": [
2120
+ "browsing through circulars",
2121
+ "researching items/prices/availability",
2122
+ "comparison shopping on the Internet",
2123
+ "comparing prices at different stores",
2124
+ "reading product reviews"
2125
+ ]
2126
+ },
2127
+ {
2128
+ "category": "Researching purchases, not elsewhere classified",
2129
+ "code": "070299"
2130
+ },
2131
+ {
2132
+ "category": "Security procedures rel. to consumer purchases",
2133
+ "code": "070301",
2134
+ "examples": [
2135
+ "opening bags for security search (consumer purchases)",
2136
+ "being searched at security checkpoint (consumer purchases)",
2137
+ "passing through metal detector (consumer purchases)"
2138
+ ]
2139
+ },
2140
+ {
2141
+ "category": "Security procedures rel. to consumer purchases, not elsewhere classified",
2142
+ "code": "070399"
2143
+ },
2144
+ {
2145
+ "category": "Consumer purchases, not elsewhere classified",
2146
+ "code": "079999"
2147
+ },
2148
+ {
2149
+ "category": "Using paid childcare services",
2150
+ "code": "080101",
2151
+ "examples": [
2152
+ "paying for daycare",
2153
+ "checking out daycare facility",
2154
+ "hiring a nanny or babysitter",
2155
+ "paying for lessons, instructions",
2156
+ "paying for tutorial services",
2157
+ "hiring a tutor",
2158
+ "talking to/with the daycare provider",
2159
+ "talking to/with the camp counselor",
2160
+ "meeting with daycare providers",
2161
+ "paying for after school care program",
2162
+ "talking to/with babysitter",
2163
+ "paying for summer camp"
2164
+ ]
2165
+ },
2166
+ {
2167
+ "category": "Waiting associated w/purchasing childcare svcs",
2168
+ "code": "080102",
2169
+ "examples": [
2170
+ "waiting to meet a childcare provider"
2171
+ ]
2172
+ },
2173
+ {
2174
+ "category": "Using paid childcare services, not elsewhere classified",
2175
+ "code": "080199"
2176
+ },
2177
+ {
2178
+ "category": "Banking",
2179
+ "code": "080201",
2180
+ "examples": [
2181
+ "using the ATM",
2182
+ "talking to/with a loan officer",
2183
+ "doing banking",
2184
+ "applying for a loan or mortgage",
2185
+ "applying for a loan online",
2186
+ "finding out information about loans",
2187
+ "talking to/with a teller",
2188
+ "making a withdrawal, deposit, transfer",
2189
+ "meeting with loan officer",
2190
+ "talking to/with the bank manager",
2191
+ "filling in loan applications"
2192
+ ]
2193
+ },
2194
+ {
2195
+ "category": "Using other financial services",
2196
+ "code": "080202",
2197
+ "examples": [
2198
+ "meeting with claims adjuster",
2199
+ "talking to/with claims adjusters",
2200
+ "completing a credit card application",
2201
+ "talking to/with an accountant",
2202
+ "meeting with stockbroker",
2203
+ "talking to/with insurance agents",
2204
+ "meeting with an accountant",
2205
+ "talking to/with stock broker",
2206
+ "applying for a credit card online",
2207
+ "meeting w/insurance agent"
2208
+ ]
2209
+ },
2210
+ {
2211
+ "category": "Waiting associated w/banking/financial services",
2212
+ "code": "080203",
2213
+ "examples": [
2214
+ "waiting in line at the bank"
2215
+ ]
2216
+ },
2217
+ {
2218
+ "category": "Using financial services and banking, not elsewhere classified",
2219
+ "code": "080299"
2220
+ },
2221
+ {
2222
+ "category": "Using legal services",
2223
+ "code": "080301",
2224
+ "examples": [
2225
+ "meeting with arbitrator/mediator",
2226
+ "talking to/with a mediator",
2227
+ "meeting with a lawyer/paralegal",
2228
+ "talking to/with a lawyer",
2229
+ "paying a lawyer",
2230
+ "talking to/with a paralegal/arbitrator"
2231
+ ]
2232
+ },
2233
+ {
2234
+ "category": "Waiting associated with legal services",
2235
+ "code": "080302",
2236
+ "examples": [
2237
+ "waiting to meet a lawyer"
2238
+ ]
2239
+ },
2240
+ {
2241
+ "category": "Using legal services, not elsewhere classified",
2242
+ "code": "080399"
2243
+ },
2244
+ {
2245
+ "category": "Using health and care services outside the home",
2246
+ "code": "080401",
2247
+ "examples": [
2248
+ "purchasing elder care services",
2249
+ "receiving physical therapy",
2250
+ "having outpatient treatment",
2251
+ "having acupuncture",
2252
+ "attending group therapy",
2253
+ "checking out adult care facility",
2254
+ "having dental work done",
2255
+ "having blood drawn",
2256
+ "having inpatient treatment",
2257
+ "talking to/with a doctor",
2258
+ "talking to/with a psychologist",
2259
+ "purchasing hospice/respite care",
2260
+ "having a physical",
2261
+ "talking to/with a pharmacist",
2262
+ "talking to/with a nurse",
2263
+ "having lab work done",
2264
+ "making a co-payment",
2265
+ "seeing a psychologist",
2266
+ "having an eye exam",
2267
+ "talking to/with a healthcare practitioner",
2268
+ "paying for long-term care",
2269
+ "having wisdom teeth removed",
2270
+ "having a doctor's appointment",
2271
+ "talking to/with a physical therapist",
2272
+ "paying for adult care services",
2273
+ "paying the doctor",
2274
+ "seeing a chiropractor",
2275
+ "having lab tests done",
2276
+ "purchasing adult daycare",
2277
+ "paying for healthcare services"
2278
+ ]
2279
+ },
2280
+ {
2281
+ "category": "Using in-home health and care services",
2282
+ "code": "080402",
2283
+ "examples": [
2284
+ "hiring someone to look after hh adult",
2285
+ "receiving in-home healthcare"
2286
+ ]
2287
+ },
2288
+ {
2289
+ "category": "Waiting associated with medical services",
2290
+ "code": "080403",
2291
+ "examples": [
2292
+ "waiting for lab test results",
2293
+ "waiting at the physician's office",
2294
+ "waiting for surgery"
2295
+ ]
2296
+ },
2297
+ {
2298
+ "category": "Using medical services, not elsewhere classified",
2299
+ "code": "080499"
2300
+ },
2301
+ {
2302
+ "category": "Using personal care services",
2303
+ "code": "080501",
2304
+ "examples": [
2305
+ "getting a haircut",
2306
+ "having a facial",
2307
+ "talking to/with the manicurist",
2308
+ "having a pedicure",
2309
+ "having nails done",
2310
+ "getting hair done",
2311
+ "paying for a haircut",
2312
+ "getting a tan at the tanning salon",
2313
+ "talking to/with the hair stylist",
2314
+ "having a massage"
2315
+ ]
2316
+ },
2317
+ {
2318
+ "category": "Waiting associated w/personal care services",
2319
+ "code": "080502",
2320
+ "examples": [
2321
+ "waiting for the barber"
2322
+ ]
2323
+ },
2324
+ {
2325
+ "category": "Using personal care services, not elsewhere classified",
2326
+ "code": "080599"
2327
+ },
2328
+ {
2329
+ "category": "Activities rel. to purchasing/selling real estate",
2330
+ "code": "080601",
2331
+ "examples": [
2332
+ "signing a lease",
2333
+ "meeting a real estate agent",
2334
+ "renting storage space",
2335
+ "purchasing house, apartment, land",
2336
+ "putting up \"for sale\" signs for house",
2337
+ "writing a contract on an apartment",
2338
+ "reading real estate ads",
2339
+ "looking at property",
2340
+ "attending open house (real estate)",
2341
+ "renting house, apartment, land",
2342
+ "talking to/with a real estate agent",
2343
+ "reviewing house information",
2344
+ "talking to/with a home seller",
2345
+ "talking to/with a home buyer",
2346
+ "talking to home inspector",
2347
+ "writing a contract on a house/property",
2348
+ "closing on house/condominium",
2349
+ "signing a housing contract"
2350
+ ]
2351
+ },
2352
+ {
2353
+ "category": "Waiting associated w/purchasing/selling real estate",
2354
+ "code": "080602",
2355
+ "examples": [
2356
+ "waiting for a real estate agent"
2357
+ ]
2358
+ },
2359
+ {
2360
+ "category": "Using real estate services, not elsewhere classified",
2361
+ "code": "080699"
2362
+ },
2363
+ {
2364
+ "category": "Using veterinary services",
2365
+ "code": "080701",
2366
+ "examples": [
2367
+ "paying for pet health insurance",
2368
+ "paying for veterinary services",
2369
+ "talking to/with vet assistant/vet tech.",
2370
+ "talking to/with vet",
2371
+ "purchasing medicine for a pet"
2372
+ ]
2373
+ },
2374
+ {
2375
+ "category": "Waiting associated with veterinary services",
2376
+ "code": "080702",
2377
+ "examples": [
2378
+ "waiting for the vet"
2379
+ ]
2380
+ },
2381
+ {
2382
+ "category": "Using veterinary services, not elsewhere classified",
2383
+ "code": "080799"
2384
+ },
2385
+ {
2386
+ "category": "Security procedures rel. to professional/personal svcs.",
2387
+ "code": "080801",
2388
+ "examples": [
2389
+ "opening bags for security search (professional svcs)",
2390
+ "passing through metal detector (professional svcs)",
2391
+ "being searched at security checkpoint (professional svcs)"
2392
+ ]
2393
+ },
2394
+ {
2395
+ "category": "Security procedures rel. to professional/personal svcs not elsewhere classified",
2396
+ "code": "080899"
2397
+ },
2398
+ {
2399
+ "category": "Professional and personal services, not elsewhere classified",
2400
+ "code": "089999",
2401
+ "examples": [
2402
+ "sitting for photos at a portrait studio",
2403
+ "meeting with a wedding planner",
2404
+ "having a family portrait made"
2405
+ ]
2406
+ },
2407
+ {
2408
+ "category": "Using interior cleaning services",
2409
+ "code": "090101",
2410
+ "examples": [
2411
+ "hiring carpet cleaners",
2412
+ "hiring a butler",
2413
+ "paying a cleaning service",
2414
+ "talking to/meeting with the maid/maid service",
2415
+ "hiring a cleaning service or maid"
2416
+ ]
2417
+ },
2418
+ {
2419
+ "category": "Using meal preparation services",
2420
+ "code": "090102",
2421
+ "examples": [
2422
+ "paying the caterer",
2423
+ "talking to/meeting with caterer",
2424
+ "tipping the wait staff or bartender",
2425
+ "meeting a caterer",
2426
+ "hiring a caterer",
2427
+ "talking to/meeting with reception planner",
2428
+ "hiring a personal chef",
2429
+ "hiring wait staff/bartender for a party",
2430
+ "paying the wait staff"
2431
+ ]
2432
+ },
2433
+ {
2434
+ "category": "Using clothing repair and cleaning services",
2435
+ "code": "090103",
2436
+ "examples": [
2437
+ "having a dress hemmed",
2438
+ "paying the tailor",
2439
+ "having a garment altered",
2440
+ "picking up clothing at the dry cleaners",
2441
+ "dropping off clothes at the dry cleaners",
2442
+ "paying the drycleaner",
2443
+ "having shirts laundered",
2444
+ "having a suit tailored"
2445
+ ]
2446
+ },
2447
+ {
2448
+ "category": "Waiting associated with using household services",
2449
+ "code": "090104",
2450
+ "examples": [
2451
+ "watching paid cook prepare a meal",
2452
+ "waiting for the cleaning service",
2453
+ "waiting for meal preparation services"
2454
+ ]
2455
+ },
2456
+ {
2457
+ "category": "Using household services, not elsewhere classified",
2458
+ "code": "090199"
2459
+ },
2460
+ {
2461
+ "category": "Using home maint/repair/d\u00e9cor/construction svcs",
2462
+ "code": "090201",
2463
+ "examples": [
2464
+ "hiring/meeting with an architect",
2465
+ "hiring a prof. home remodeling svc.",
2466
+ "talking to/with electrician or plumber",
2467
+ "hiring a contractor",
2468
+ "meeting with a contractor",
2469
+ "talking to/meeting with movers",
2470
+ "hiring someone to repair house siding",
2471
+ "hiring driveway pavers",
2472
+ "paying to have your roof repaired",
2473
+ "hiring someone to build an addition",
2474
+ "talking to/with computer technician",
2475
+ "hiring/meeting w/interior designer",
2476
+ "talking to/with the interior designer",
2477
+ "paying a contractor",
2478
+ "hiring appliance repairer",
2479
+ "hiring someone to clean house siding",
2480
+ "paying a plumber or electrician",
2481
+ "hiring movers",
2482
+ "hiring/meeting w/interior decorator",
2483
+ "hiring window washers",
2484
+ "hiring deck cleaners/refinishers",
2485
+ "talking to/with the contractor",
2486
+ "paying a decorator",
2487
+ "hiring someone to fix your computer",
2488
+ "hiring an electrician or plumber"
2489
+ ]
2490
+ },
2491
+ {
2492
+ "category": "Waiting associated w/ home main/repair/d\u00e9cor/constr",
2493
+ "code": "090202",
2494
+ "examples": [
2495
+ "waiting for architect",
2496
+ "watching repair person",
2497
+ "waiting while repairs are made",
2498
+ "waiting for cleaners to finish",
2499
+ "watching movers"
2500
+ ]
2501
+ },
2502
+ {
2503
+ "category": "Using home maint/repair/d\u00e9cor/constr services, not elsewhere classified",
2504
+ "code": "090299"
2505
+ },
2506
+ {
2507
+ "category": "Using pet services",
2508
+ "code": "090301",
2509
+ "examples": [
2510
+ "talking to/with animal trainer",
2511
+ "paying the pet sitter/walker",
2512
+ "talking to/with the groomer",
2513
+ "paying the pet groomer",
2514
+ "hiring a pet trainer",
2515
+ "talking to/with the pet sitter",
2516
+ "meeting with pet trainer",
2517
+ "attending animal obedience classes",
2518
+ "talking to/with animal caretaker",
2519
+ "meeting with kennel caretakers",
2520
+ "hiring a pet sitter/walker",
2521
+ "paying the animal trainer"
2522
+ ]
2523
+ },
2524
+ {
2525
+ "category": "Waiting associated with pet services",
2526
+ "code": "090302",
2527
+ "examples": [
2528
+ "watching pet trainer",
2529
+ "waiting for pet services",
2530
+ "watching pet groomer"
2531
+ ]
2532
+ },
2533
+ {
2534
+ "category": "Using pet services, not elsewhere classified",
2535
+ "code": "090399"
2536
+ },
2537
+ {
2538
+ "category": "Using lawn and garden services",
2539
+ "code": "090401",
2540
+ "examples": [
2541
+ "meeting with landscaper",
2542
+ "hiring someone to rake leaves",
2543
+ "talking to/with the landscaper",
2544
+ "talking to/with a plant-sitter",
2545
+ "hiring someone to cut grass",
2546
+ "hiring a landscaper",
2547
+ "hiring someone to water houseplants",
2548
+ "talking to person who cuts your grass",
2549
+ "hiring someone to shovel snow",
2550
+ "paying the landscaper",
2551
+ "hiring someone to water lawn/flowers"
2552
+ ]
2553
+ },
2554
+ {
2555
+ "category": "Waiting associated with using lawn & garden services",
2556
+ "code": "090402",
2557
+ "examples": [
2558
+ "waiting for landscaper",
2559
+ "watching landscaper"
2560
+ ]
2561
+ },
2562
+ {
2563
+ "category": "Using lawn and garden services, not elsewhere classified",
2564
+ "code": "090499"
2565
+ },
2566
+ {
2567
+ "category": "Using vehicle maintenance or repair services",
2568
+ "code": "090501",
2569
+ "examples": [
2570
+ "paying a mechanic",
2571
+ "paying for repair work done on car",
2572
+ "paying for a car wash",
2573
+ "talking to/with auto body repair person",
2574
+ "talking to/with mechanic",
2575
+ "paying for a tune-up/oil change",
2576
+ "talking to/with service person"
2577
+ ]
2578
+ },
2579
+ {
2580
+ "category": "Waiting associated with vehicle main. or repair svcs",
2581
+ "code": "090502",
2582
+ "examples": [
2583
+ "watching car being washed",
2584
+ "waiting while car is repaired",
2585
+ "waiting while car is washed"
2586
+ ]
2587
+ },
2588
+ {
2589
+ "category": "Using vehicle maint. & repair svcs, not elsewhere classified",
2590
+ "code": "090599"
2591
+ },
2592
+ {
2593
+ "category": "Using household services, not elsewhere classified",
2594
+ "code": "099999",
2595
+ "examples": [
2596
+ "using butchering services",
2597
+ "talking to telephone repairperson"
2598
+ ]
2599
+ },
2600
+ {
2601
+ "category": "Using police and fire services",
2602
+ "code": "100101",
2603
+ "examples": [
2604
+ "being questioned by police",
2605
+ "meeting with detective",
2606
+ "talking to police officer",
2607
+ "helping the police with something",
2608
+ "being stopped for traffic violation",
2609
+ "obtaining police or fire services"
2610
+ ]
2611
+ },
2612
+ {
2613
+ "category": "Using social services",
2614
+ "code": "100102",
2615
+ "examples": [
2616
+ "applying for relief services",
2617
+ "meeting social worker",
2618
+ "applying for social services",
2619
+ "collecting unemployment benefits",
2620
+ "filling out forms to receive compensation",
2621
+ "applying for unemployment benefits",
2622
+ "talking to a social services worker",
2623
+ "filling out forms to receive benefits",
2624
+ "applying for welfare, food stamps, etc",
2625
+ "collecting social security/workers comp"
2626
+ ]
2627
+ },
2628
+ {
2629
+ "category": "Obtaining licenses & paying fines, fees, taxes",
2630
+ "code": "100103",
2631
+ "examples": [
2632
+ "paying property taxes at gov't. office",
2633
+ "obtaining boat licensing",
2634
+ "paying overdue library book fines",
2635
+ "taking a driving exam",
2636
+ "getting fishing/crabbing license",
2637
+ "paying for a pet or sporting license",
2638
+ "talking to a motor vehicle admin. clerk",
2639
+ "getting a pet or sporting license",
2640
+ "getting car inspected",
2641
+ "paying for a marriage license",
2642
+ "paying parking/speeding ticket",
2643
+ "taking a pilot's exam",
2644
+ "getting a marriage license",
2645
+ "obtaining parking permits",
2646
+ "getting driver's license or tags",
2647
+ "getting a passport"
2648
+ ]
2649
+ },
2650
+ {
2651
+ "category": "Using government services, not elsewhere classified",
2652
+ "code": "100199"
2653
+ },
2654
+ {
2655
+ "category": "Civic obligations & participation",
2656
+ "code": "100201",
2657
+ "examples": [
2658
+ "acting as a witness in court",
2659
+ "doing court-ordered community service",
2660
+ "attending zoning hearings",
2661
+ "meeting w/congressperson",
2662
+ "serving on jury duty",
2663
+ "talking to immigration/naturalization agent",
2664
+ "talking to a political representative",
2665
+ "talking to a parole officer or judge",
2666
+ "participating in government surveys",
2667
+ "attending a Congressional session",
2668
+ "attending a town hall meeting",
2669
+ "meeting w/State/local govt rep.",
2670
+ "participating in naturalization ceremony",
2671
+ "making a court appearance",
2672
+ "voting",
2673
+ "meeting with a parole officer",
2674
+ "interviewing with INS, IRS, etc."
2675
+ ]
2676
+ },
2677
+ {
2678
+ "category": "Civic obligations & participation, not elsewhere classified",
2679
+ "code": "100299"
2680
+ },
2681
+ {
2682
+ "category": "Waiting associated with using government services",
2683
+ "code": "100304"
2684
+ },
2685
+ {
2686
+ "category": "Waiting associated with civic obligations & participation",
2687
+ "code": "100305"
2688
+ },
2689
+ {
2690
+ "category": "Waiting assoc. w/govt svcs or civic obligations, not elsewhere classified",
2691
+ "code": "100399"
2692
+ },
2693
+ {
2694
+ "category": "Security procedures rel. to govt svcs/civic obligations",
2695
+ "code": "100401",
2696
+ "examples": [
2697
+ "being searched at security checkpoint (govt svcs)",
2698
+ "passing through metal detector (govt svcs)",
2699
+ "opening bags for security search (govt svcs)"
2700
+ ]
2701
+ },
2702
+ {
2703
+ "category": "Security procedures rel. to govt svcs/civic obligations, not elsewhere classified",
2704
+ "code": "100499"
2705
+ },
2706
+ {
2707
+ "category": "Government services, not elsewhere classified",
2708
+ "code": "109999"
2709
+ },
2710
+ {
2711
+ "category": "Eating and drinking",
2712
+ "code": "110101",
2713
+ "examples": [
2714
+ "taking a lunch break"
2715
+ ]
2716
+ },
2717
+ {
2718
+ "category": "Eating and drinking, not elsewhere classified",
2719
+ "code": "110199"
2720
+ },
2721
+ {
2722
+ "category": "Waiting associated w/eating & drinking",
2723
+ "code": "110201",
2724
+ "examples": [
2725
+ "waiting for the pizza delivery person",
2726
+ "waiting for food to be delivered",
2727
+ "waiting for the check",
2728
+ "waiting for a table",
2729
+ "waiting to place an order"
2730
+ ]
2731
+ },
2732
+ {
2733
+ "category": "Waiting associated with eating & drinking, not elsewhere classified",
2734
+ "code": "110299"
2735
+ },
2736
+ {
2737
+ "category": "Eating and drinking, not elsewhere classified",
2738
+ "code": "119999"
2739
+ },
2740
+ {
2741
+ "category": "Socializing and communicating with others",
2742
+ "code": "120101",
2743
+ "examples": [
2744
+ "talking with acquaintances",
2745
+ "opening wedding presents (with others)",
2746
+ "giving gifts to friends",
2747
+ "spending time with friends",
2748
+ "hugging/kissing neighbors",
2749
+ "hugging/kissing acquaintances/others",
2750
+ "entertaining family",
2751
+ "accompanying family while they run errands",
2752
+ "hanging out with family",
2753
+ "visiting adult in nursing home",
2754
+ "spending time with family",
2755
+ "hugging/kissing friends",
2756
+ "giving presents to adults",
2757
+ "accompanying friends while they run errands",
2758
+ "greeting neighbors/acquaintances",
2759
+ "hugging or kissing family",
2760
+ "opening gifts (with others)",
2761
+ "visiting household/nonhh adult in hospital",
2762
+ "greeting family",
2763
+ "entertaining friends",
2764
+ "talking to/with other parents",
2765
+ "visiting with family",
2766
+ "visiting with friends",
2767
+ "talking with family",
2768
+ "opening Christmas gifts (with others)",
2769
+ "greeting other parents",
2770
+ "accompanying family/friends to look at family/friend's new house",
2771
+ "greeting friends",
2772
+ "arguing with family",
2773
+ "hanging out with friends",
2774
+ "arguing with friends",
2775
+ "talking with friends",
2776
+ "opening birthday presents (with others)",
2777
+ "talking with neighbors"
2778
+ ]
2779
+ },
2780
+ {
2781
+ "category": "Socializing and communicating, not elsewhere classified",
2782
+ "code": "120199"
2783
+ },
2784
+ {
2785
+ "category": "Attending or hosting parties/receptions/ceremonies",
2786
+ "code": "120201",
2787
+ "examples": [
2788
+ "attending birthday parties",
2789
+ "attending parties",
2790
+ "attending holiday open house",
2791
+ "attending bachelor/ette party",
2792
+ "attending receptions",
2793
+ "attending housewarming",
2794
+ "attending graduation ceremonies (for adults)",
2795
+ "attending a charity social event"
2796
+ ]
2797
+ },
2798
+ {
2799
+ "category": "Attending meetings for personal interest (not volunteering)",
2800
+ "code": "120202",
2801
+ "examples": [
2802
+ "attending professional meetings (not work)",
2803
+ "attending a homeowner's association meeting",
2804
+ "attending a senior citizens meeting",
2805
+ "attending fraternity/sorority meetings",
2806
+ "attending a Weight Watchers meeting",
2807
+ "attending a church circle meeting",
2808
+ "attending a fraternal lodge meeting",
2809
+ "attending an Al-anon meeting",
2810
+ "attending a Boy Scout/Girl Scout meeting (for self)",
2811
+ "attending AA meetings",
2812
+ "attending club meetings (not school)",
2813
+ "attending book club meetings"
2814
+ ]
2815
+ },
2816
+ {
2817
+ "category": "Attending/hosting social events, not elsewhere classified",
2818
+ "code": "120299"
2819
+ },
2820
+ {
2821
+ "category": "Relaxing, thinking",
2822
+ "code": "120301",
2823
+ "examples": [
2824
+ "grieving",
2825
+ "lying around/sitting around",
2826
+ "sunbathing",
2827
+ "doing nothing/goofing off/wasting time",
2828
+ "watching wife garden/watching husband cook dinner",
2829
+ "worrying/crying",
2830
+ "breaks at work, unspecified activity",
2831
+ "resting/relaxing/lounging",
2832
+ "watching husband assemble lawnmower",
2833
+ "sitting in the hot tub/Jacuzzi/whirlpool/sauna",
2834
+ "hanging around/hanging out (alone)",
2835
+ "reflecting/daydreaming/fantasizing/wondering"
2836
+ ]
2837
+ },
2838
+ {
2839
+ "category": "Tobacco and drug use",
2840
+ "code": "120302",
2841
+ "examples": [
2842
+ "having a cigarette/rolling a cigarette",
2843
+ "smoking marijuana/pot/weed",
2844
+ "smoking a cigarette/cigar/pipe",
2845
+ "chewing tobacco/using recreational drugs"
2846
+ ]
2847
+ },
2848
+ {
2849
+ "category": "Television and movies (not religious)",
2850
+ "code": "120303",
2851
+ "examples": [
2852
+ "watching TV or a DVD/video/instructional video",
2853
+ "watching videos on YouTube",
2854
+ "watching TV/DVDs on computer (personal interest)",
2855
+ "setting TiVo/DVR",
2856
+ "borrowing movies from or returning movies to the library",
2857
+ "watching home movies/home videos",
2858
+ "setting the VCR or DVD player"
2859
+ ]
2860
+ },
2861
+ {
2862
+ "category": "Television (religious)",
2863
+ "code": "120304",
2864
+ "examples": [
2865
+ "watching religious broadcasting"
2866
+ ]
2867
+ },
2868
+ {
2869
+ "category": "Listening to the radio",
2870
+ "code": "120305",
2871
+ "examples": [
2872
+ "listening to music on the radio",
2873
+ "listening to podcast",
2874
+ "listening to public radio/a radio talk show",
2875
+ "listening to Pandora",
2876
+ "listening to the top ten on the radio"
2877
+ ]
2878
+ },
2879
+ {
2880
+ "category": "Listening to/playing music (not radio)",
2881
+ "code": "120306",
2882
+ "examples": [
2883
+ "playing musical instrument (leisure)",
2884
+ "composing music",
2885
+ "tuning musical instruments",
2886
+ "listening to recorded music/records/CDs/DVDs/tapes",
2887
+ "listening to someone play the piano",
2888
+ "singing/singing karaoke/Christmas caroling"
2889
+ ]
2890
+ },
2891
+ {
2892
+ "category": "Playing games",
2893
+ "code": "120307",
2894
+ "examples": [
2895
+ "spinning dreidels",
2896
+ "working jigsaw puzzles/crossword puzzles",
2897
+ "hitting a pinata",
2898
+ "hiding matzo (Passover)/hiding Easter eggs",
2899
+ "playing computer games/playing games over the Internet",
2900
+ "playing board games/Scrabble/cards"
2901
+ ]
2902
+ },
2903
+ {
2904
+ "category": "Computer use for leisure (exc. Games)",
2905
+ "code": "120308",
2906
+ "examples": [
2907
+ "checking MySpace (personal interest)",
2908
+ "writing computer software (personal interest)",
2909
+ "computer use, leisure (personal interest)",
2910
+ "computer use, unspecified",
2911
+ "Using Twitter or tweeting (personal interest)",
2912
+ "designing/updating website (personal interest)",
2913
+ "checking Facebook/Instagram (personal interest)",
2914
+ "computer programming (personal interest)",
2915
+ "surfing the internet/web (personal interest)",
2916
+ "burning CDs (personal interest)",
2917
+ "browsing on the internet (personal interest)",
2918
+ "participating in a chat room (personal interest)",
2919
+ "downloading files, music, pictures (personal interest)"
2920
+ ]
2921
+ },
2922
+ {
2923
+ "category": "Arts and crafts as a hobby",
2924
+ "code": "120309",
2925
+ "examples": [
2926
+ "making pottery/sculpting/wood working",
2927
+ "scrapbooking, making a scrapbook",
2928
+ "dyeing Easter eggs",
2929
+ "making holiday/other decorations",
2930
+ "making Halloween costumes (for self)",
2931
+ "taking pictures/snapshots/photographs",
2932
+ "making Christmas decorations",
2933
+ "artistic painting",
2934
+ "sketching/drawing",
2935
+ "videotaping/photography/model making/jewelry making"
2936
+ ]
2937
+ },
2938
+ {
2939
+ "category": "Collecting as a hobby",
2940
+ "code": "120310",
2941
+ "examples": [
2942
+ "collecting/organizing stamps or coin collection"
2943
+ ]
2944
+ },
2945
+ {
2946
+ "category": "Hobbies, except arts & crafts and collecting",
2947
+ "code": "120311",
2948
+ "examples": [
2949
+ "bird watching",
2950
+ "researching family tree"
2951
+ ]
2952
+ },
2953
+ {
2954
+ "category": "Reading for personal interest",
2955
+ "code": "120312",
2956
+ "examples": [
2957
+ "checking out library books",
2958
+ "borrowing books from the library",
2959
+ "listening to books on tape (personal interest)",
2960
+ "returning library books/browsing at the library",
2961
+ "being read to (personal interest)",
2962
+ "reading a book on a Kindle or other electronic book reader (personal interest)",
2963
+ "doing research (personal interest)",
2964
+ "reading, unspecified",
2965
+ "reading a magazine/book/newspaper (personal interest)",
2966
+ "flipping/leafing through magazine (personal interest)"
2967
+ ]
2968
+ },
2969
+ {
2970
+ "category": "Writing for personal interest",
2971
+ "code": "120313",
2972
+ "examples": [
2973
+ "writing in diary/journal (personal interest)",
2974
+ "editing (personal interest)",
2975
+ "blogging (personal interest)",
2976
+ "writing lyrics",
2977
+ "writing stories (personal interest)"
2978
+ ]
2979
+ },
2980
+ {
2981
+ "category": "Relaxing and leisure, not elsewhere classified",
2982
+ "code": "120399",
2983
+ "examples": [
2984
+ "looking at photos on computer or camera",
2985
+ "looking at pictures in photo album"
2986
+ ]
2987
+ },
2988
+ {
2989
+ "category": "Attending performing arts",
2990
+ "code": "120401",
2991
+ "examples": [
2992
+ "attending jazz bar",
2993
+ "attending a concert",
2994
+ "attending musicals",
2995
+ "attending dance troupe performances",
2996
+ "attending comedy club",
2997
+ "attending plays",
2998
+ "attending the ballet",
2999
+ "attending opera",
3000
+ "attending the theater"
3001
+ ]
3002
+ },
3003
+ {
3004
+ "category": "Attending museums",
3005
+ "code": "120402",
3006
+ "examples": [
3007
+ "attending an art gallery",
3008
+ "attending an arboretum",
3009
+ "attending exhibitions",
3010
+ "visiting the zoo",
3011
+ "attending a botanical garden"
3012
+ ]
3013
+ },
3014
+ {
3015
+ "category": "Attending movies/film",
3016
+ "code": "120403",
3017
+ "examples": [
3018
+ "attending the movies"
3019
+ ]
3020
+ },
3021
+ {
3022
+ "category": "Attending gambling establishments",
3023
+ "code": "120404",
3024
+ "examples": [
3025
+ "attending a casino",
3026
+ "gambling",
3027
+ "playing craps",
3028
+ "betting on the horses",
3029
+ "playing keno"
3030
+ ]
3031
+ },
3032
+ {
3033
+ "category": "Security procedures rel. to arts & entertainment",
3034
+ "code": "120405",
3035
+ "examples": [
3036
+ "being searched at security checkpoint (art/entertainment)",
3037
+ "opening bags for security search (art/entertainment)",
3038
+ "passing through metal detector (art/entertainment)"
3039
+ ]
3040
+ },
3041
+ {
3042
+ "category": "Arts and entertainment, not elsewhere classified",
3043
+ "code": "120499",
3044
+ "examples": [
3045
+ "attending a carnival",
3046
+ "setting off fireworks",
3047
+ "attending a flower show",
3048
+ "attending an amusement park",
3049
+ "attending a festival",
3050
+ "visiting historic sites",
3051
+ "attending the circus",
3052
+ "attending an auto show",
3053
+ "attending the county fair",
3054
+ "watching a parade/fireworks",
3055
+ "attending a book signing",
3056
+ "attending an art/history/music lecture",
3057
+ "attending a poetry reading",
3058
+ "taking a guided nature walk",
3059
+ "sightseeing"
3060
+ ]
3061
+ },
3062
+ {
3063
+ "category": "Waiting assoc. w/socializing & communicating",
3064
+ "code": "120501"
3065
+ },
3066
+ {
3067
+ "category": "Waiting assoc. w/attending/hosting social events",
3068
+ "code": "120502"
3069
+ },
3070
+ {
3071
+ "category": "Waiting associated with relaxing/leisure",
3072
+ "code": "120503"
3073
+ },
3074
+ {
3075
+ "category": "Waiting associated with arts & entertainment",
3076
+ "code": "120504"
3077
+ },
3078
+ {
3079
+ "category": "Waiting associated with socializing, not elsewhere classified",
3080
+ "code": "120599"
3081
+ },
3082
+ {
3083
+ "category": "Socializing, relaxing, and leisure, not elsewhere classified",
3084
+ "code": "129999"
3085
+ },
3086
+ {
3087
+ "category": "Doing aerobics",
3088
+ "code": "130101",
3089
+ "examples": [
3090
+ "doing low-impact aerobics",
3091
+ "Zumba",
3092
+ "talking to aerobics instructor",
3093
+ "doing high-impact aerobics",
3094
+ "doing step aerobics"
3095
+ ]
3096
+ },
3097
+ {
3098
+ "category": "Playing baseball",
3099
+ "code": "130102",
3100
+ "examples": [
3101
+ "talking to baseball coach"
3102
+ ]
3103
+ },
3104
+ {
3105
+ "category": "Playing basketball",
3106
+ "code": "130103",
3107
+ "examples": [
3108
+ "talking to basketball referee"
3109
+ ]
3110
+ },
3111
+ {
3112
+ "category": "Biking",
3113
+ "code": "130104",
3114
+ "examples": [
3115
+ "registering for a bike race",
3116
+ "biking/mountain biking",
3117
+ "spinning",
3118
+ "riding a stationary bike"
3119
+ ]
3120
+ },
3121
+ {
3122
+ "category": "Playing billiards",
3123
+ "code": "130105",
3124
+ "examples": [
3125
+ "playing snooker",
3126
+ "shooting pool"
3127
+ ]
3128
+ },
3129
+ {
3130
+ "category": "Boating",
3131
+ "code": "130106",
3132
+ "examples": [
3133
+ "crewing",
3134
+ "sailing",
3135
+ "canoeing",
3136
+ "yachting",
3137
+ "kayaking",
3138
+ "rafting"
3139
+ ]
3140
+ },
3141
+ {
3142
+ "category": "Bowling",
3143
+ "code": "130107",
3144
+ "examples": [
3145
+ "playing ten pins",
3146
+ "playing duck pins"
3147
+ ]
3148
+ },
3149
+ {
3150
+ "category": "Climbing, spelunking, caving",
3151
+ "code": "130108",
3152
+ "examples": [
3153
+ "rock climbing",
3154
+ "mountain climbing"
3155
+ ]
3156
+ },
3157
+ {
3158
+ "category": "Dancing",
3159
+ "code": "130109"
3160
+ },
3161
+ {
3162
+ "category": "Participating in equestrian sports",
3163
+ "code": "130110",
3164
+ "examples": [
3165
+ "horseback riding",
3166
+ "playing polo",
3167
+ "steeple chase"
3168
+ ]
3169
+ },
3170
+ {
3171
+ "category": "Fencing",
3172
+ "code": "130111"
3173
+ },
3174
+ {
3175
+ "category": "Fishing",
3176
+ "code": "130112",
3177
+ "examples": [
3178
+ "clam-digging",
3179
+ "ice fishing",
3180
+ "talking to the boat captain",
3181
+ "deep-sea fishing",
3182
+ "fly fishing",
3183
+ "crabbing"
3184
+ ]
3185
+ },
3186
+ {
3187
+ "category": "Playing football",
3188
+ "code": "130113",
3189
+ "examples": [
3190
+ "playing touch football",
3191
+ "talking to the football referee",
3192
+ "playing flag football"
3193
+ ]
3194
+ },
3195
+ {
3196
+ "category": "Golfing",
3197
+ "code": "130114",
3198
+ "examples": [
3199
+ "hitting balls at the driving range",
3200
+ "practicing putting",
3201
+ "playing the front 9",
3202
+ "talking to the caddy",
3203
+ "playing the back 9"
3204
+ ]
3205
+ },
3206
+ {
3207
+ "category": "Doing gymnastics",
3208
+ "code": "130115",
3209
+ "examples": [
3210
+ "using the balance beam",
3211
+ "using uneven bars",
3212
+ "using parallel bars",
3213
+ "talking to the gymnastics coach",
3214
+ "tumbling",
3215
+ "using the pommel horse"
3216
+ ]
3217
+ },
3218
+ {
3219
+ "category": "Hiking",
3220
+ "code": "130116"
3221
+ },
3222
+ {
3223
+ "category": "Playing hockey",
3224
+ "code": "130117",
3225
+ "examples": [
3226
+ "playing field hockey",
3227
+ "playing ice hockey",
3228
+ "talking to the hockey coach"
3229
+ ]
3230
+ },
3231
+ {
3232
+ "category": "Hunting",
3233
+ "code": "130118",
3234
+ "examples": [
3235
+ "hunting deer/elk",
3236
+ "talking to the hunting guide",
3237
+ "hunting ducks",
3238
+ "hunting game"
3239
+ ]
3240
+ },
3241
+ {
3242
+ "category": "Participating in martial arts",
3243
+ "code": "130119",
3244
+ "examples": [
3245
+ "doing kickboxing",
3246
+ "doing tae kwon do",
3247
+ "doing karate",
3248
+ "talking to martial arts instructor"
3249
+ ]
3250
+ },
3251
+ {
3252
+ "category": "Playing racquet sports",
3253
+ "code": "130120",
3254
+ "examples": [
3255
+ "talking to the tennis coach",
3256
+ "playing racquetball",
3257
+ "playing lacrosse",
3258
+ "playing squash",
3259
+ "playing badminton",
3260
+ "playing handball",
3261
+ "playing tennis"
3262
+ ]
3263
+ },
3264
+ {
3265
+ "category": "Participating in rodeo competitions",
3266
+ "code": "130121",
3267
+ "examples": [
3268
+ "calf roping",
3269
+ "barrel riding"
3270
+ ]
3271
+ },
3272
+ {
3273
+ "category": "Rollerblading",
3274
+ "code": "130122",
3275
+ "examples": [
3276
+ "inline skating",
3277
+ "roller-skating",
3278
+ "skateboarding"
3279
+ ]
3280
+ },
3281
+ {
3282
+ "category": "Playing rugby",
3283
+ "code": "130123"
3284
+ },
3285
+ {
3286
+ "category": "Running",
3287
+ "code": "130124",
3288
+ "examples": [
3289
+ "running on a treadmill",
3290
+ "running a marathon",
3291
+ "running cross country",
3292
+ "running a race/organized run",
3293
+ "jogging",
3294
+ "talking to race officials"
3295
+ ]
3296
+ },
3297
+ {
3298
+ "category": "Skiing, ice skating, snowboarding",
3299
+ "code": "130125",
3300
+ "examples": [
3301
+ "sledding",
3302
+ "snow tubing"
3303
+ ]
3304
+ },
3305
+ {
3306
+ "category": "Playing soccer",
3307
+ "code": "130126"
3308
+ },
3309
+ {
3310
+ "category": "Softball",
3311
+ "code": "130127",
3312
+ "examples": [
3313
+ "playing wiffle ball"
3314
+ ]
3315
+ },
3316
+ {
3317
+ "category": "Using cardiovascular equipment",
3318
+ "code": "130128",
3319
+ "examples": [
3320
+ "using the Stairmaster",
3321
+ "using the rowing machine",
3322
+ "using the elliptical"
3323
+ ]
3324
+ },
3325
+ {
3326
+ "category": "Vehicle touring/racing",
3327
+ "code": "130129",
3328
+ "examples": [
3329
+ "4-wheeling",
3330
+ "riding in or driving a dune buggy",
3331
+ "doing motocross",
3332
+ "snowmobiling",
3333
+ "riding in a go-cart",
3334
+ "stock car racing",
3335
+ "drag racing"
3336
+ ]
3337
+ },
3338
+ {
3339
+ "category": "Playing volleyball",
3340
+ "code": "130130",
3341
+ "examples": [
3342
+ "playing Wally ball"
3343
+ ]
3344
+ },
3345
+ {
3346
+ "category": "Walking",
3347
+ "code": "130131",
3348
+ "examples": [
3349
+ "speed walking",
3350
+ "power walking",
3351
+ "walking on a treadmill"
3352
+ ]
3353
+ },
3354
+ {
3355
+ "category": "Participating in water sports",
3356
+ "code": "130132",
3357
+ "examples": [
3358
+ "boogie-boarding",
3359
+ "playing water polo",
3360
+ "water aerobics",
3361
+ "waterskiing",
3362
+ "river tubing",
3363
+ "surfing",
3364
+ "body surfing",
3365
+ "diving",
3366
+ "scuba diving",
3367
+ "talking to the swimming coach",
3368
+ "snorkeling",
3369
+ "swimming"
3370
+ ]
3371
+ },
3372
+ {
3373
+ "category": "Weightlifting/strength training",
3374
+ "code": "130133",
3375
+ "examples": [
3376
+ "bodybuilding",
3377
+ "lifting weights"
3378
+ ]
3379
+ },
3380
+ {
3381
+ "category": "Working out, unspecified",
3382
+ "code": "130134",
3383
+ "examples": [
3384
+ "doing cardio (unspecified)",
3385
+ "stretching",
3386
+ "doing calisthenics"
3387
+ ]
3388
+ },
3389
+ {
3390
+ "category": "Wrestling",
3391
+ "code": "130135",
3392
+ "examples": [
3393
+ "Greco-Roman wrestling",
3394
+ "talking to the wrestling referee",
3395
+ "freestyle wrestling"
3396
+ ]
3397
+ },
3398
+ {
3399
+ "category": "Doing yoga",
3400
+ "code": "130136",
3401
+ "examples": [
3402
+ "Pilates",
3403
+ "talking to the yoga instructor"
3404
+ ]
3405
+ },
3406
+ {
3407
+ "category": "Playing sports not elsewhere classified",
3408
+ "code": "130199",
3409
+ "examples": [
3410
+ "tai chi",
3411
+ "curling",
3412
+ "hang-gliding",
3413
+ "skydiving",
3414
+ "javelin",
3415
+ "ping-pong",
3416
+ "pole vaulting",
3417
+ "skeet-shooting",
3418
+ "discus",
3419
+ "footbag",
3420
+ "boxing",
3421
+ "throwing a Frisbee",
3422
+ "collecting firewood for camp",
3423
+ "croquet",
3424
+ "windsurfing",
3425
+ "setting up camping tent",
3426
+ "ballooning",
3427
+ "cricket",
3428
+ "parkour",
3429
+ "digging a latrine",
3430
+ "playing ultimate frisbee",
3431
+ "playing in the snow",
3432
+ "target practice",
3433
+ "horseshoes",
3434
+ "table tennis",
3435
+ "cheerleading",
3436
+ "paintball",
3437
+ "starting a campfire",
3438
+ "kite flying",
3439
+ "archery",
3440
+ "bungee jumping",
3441
+ "shooting league",
3442
+ "playing Frisbee golf",
3443
+ "baton twirling",
3444
+ "throwing darts"
3445
+ ]
3446
+ },
3447
+ {
3448
+ "category": "Watching aerobics",
3449
+ "code": "130201"
3450
+ },
3451
+ {
3452
+ "category": "Watching baseball",
3453
+ "code": "130202"
3454
+ },
3455
+ {
3456
+ "category": "Watching basketball",
3457
+ "code": "130203"
3458
+ },
3459
+ {
3460
+ "category": "Watching biking",
3461
+ "code": "130204",
3462
+ "examples": [
3463
+ "watching a bicycle race"
3464
+ ]
3465
+ },
3466
+ {
3467
+ "category": "Watching billiards",
3468
+ "code": "130205",
3469
+ "examples": [
3470
+ "watching pool players",
3471
+ "watching snooker players"
3472
+ ]
3473
+ },
3474
+ {
3475
+ "category": "Watching boating",
3476
+ "code": "130206",
3477
+ "examples": [
3478
+ "watching yachting",
3479
+ "watching rafting",
3480
+ "watching canoeing",
3481
+ "watching crewing",
3482
+ "watching sailing",
3483
+ "watching kayaking"
3484
+ ]
3485
+ },
3486
+ {
3487
+ "category": "Watching bowling",
3488
+ "code": "130207",
3489
+ "examples": [
3490
+ "watching ten pins",
3491
+ "watching duck pins"
3492
+ ]
3493
+ },
3494
+ {
3495
+ "category": "Watching climbing, spelunking, caving",
3496
+ "code": "130208"
3497
+ },
3498
+ {
3499
+ "category": "Watching dancing",
3500
+ "code": "130209"
3501
+ },
3502
+ {
3503
+ "category": "Watching equestrian sports",
3504
+ "code": "130210",
3505
+ "examples": [
3506
+ "watching polo game",
3507
+ "watching a steeple chase",
3508
+ "watching horseback riding"
3509
+ ]
3510
+ },
3511
+ {
3512
+ "category": "Watching fencing",
3513
+ "code": "130211"
3514
+ },
3515
+ {
3516
+ "category": "Watching fishing",
3517
+ "code": "130212",
3518
+ "examples": [
3519
+ "watching clam-digging",
3520
+ "watching deep-sea fishing",
3521
+ "watching crabbing",
3522
+ "watching fly fishing"
3523
+ ]
3524
+ },
3525
+ {
3526
+ "category": "Watching football",
3527
+ "code": "130213",
3528
+ "examples": [
3529
+ "watching tag football",
3530
+ "watching touch football"
3531
+ ]
3532
+ },
3533
+ {
3534
+ "category": "Watching golfing",
3535
+ "code": "130214",
3536
+ "examples": [
3537
+ "watching a golf tournament"
3538
+ ]
3539
+ },
3540
+ {
3541
+ "category": "Watching gymnastics",
3542
+ "code": "130215",
3543
+ "examples": [
3544
+ "watching tumbling",
3545
+ "watching balance beam completion",
3546
+ "watching parallel bar competition"
3547
+ ]
3548
+ },
3549
+ {
3550
+ "category": "Watching hockey",
3551
+ "code": "130216",
3552
+ "examples": [
3553
+ "watching ice hockey",
3554
+ "watching field hockey"
3555
+ ]
3556
+ },
3557
+ {
3558
+ "category": "Watching martial arts",
3559
+ "code": "130217",
3560
+ "examples": [
3561
+ "watching karate",
3562
+ "watching kickboxing"
3563
+ ]
3564
+ },
3565
+ {
3566
+ "category": "Watching racquet sports",
3567
+ "code": "130218",
3568
+ "examples": [
3569
+ "watching squash",
3570
+ "watching tennis",
3571
+ "watching lacrosse",
3572
+ "watching handball",
3573
+ "watching racquetball",
3574
+ "watching badminton"
3575
+ ]
3576
+ },
3577
+ {
3578
+ "category": "Watching rodeo competitions",
3579
+ "code": "130219"
3580
+ },
3581
+ {
3582
+ "category": "Watching rollerblading",
3583
+ "code": "130220",
3584
+ "examples": [
3585
+ "watching roller-skating",
3586
+ "watching skateboarding"
3587
+ ]
3588
+ },
3589
+ {
3590
+ "category": "Watching rugby",
3591
+ "code": "130221"
3592
+ },
3593
+ {
3594
+ "category": "Watching running",
3595
+ "code": "130222",
3596
+ "examples": [
3597
+ "watching a running race",
3598
+ "watching cross country running",
3599
+ "watching an organized run",
3600
+ "watching a marathon"
3601
+ ]
3602
+ },
3603
+ {
3604
+ "category": "Watching skiing, ice skating, snowboarding",
3605
+ "code": "130223",
3606
+ "examples": [
3607
+ "watching snow tubing"
3608
+ ]
3609
+ },
3610
+ {
3611
+ "category": "Watching soccer",
3612
+ "code": "130224"
3613
+ },
3614
+ {
3615
+ "category": "Watching softball",
3616
+ "code": "130225",
3617
+ "examples": [
3618
+ "watching wiffle ball"
3619
+ ]
3620
+ },
3621
+ {
3622
+ "category": "Watching vehicle touring/racing",
3623
+ "code": "130226",
3624
+ "examples": [
3625
+ "watching 4-wheeling",
3626
+ "watching a drag race",
3627
+ "watching a stock car race",
3628
+ "watching snowmobiling",
3629
+ "watching a motocross race"
3630
+ ]
3631
+ },
3632
+ {
3633
+ "category": "Watching volleyball",
3634
+ "code": "130227",
3635
+ "examples": [
3636
+ "watching Wally ball"
3637
+ ]
3638
+ },
3639
+ {
3640
+ "category": "Watching walking",
3641
+ "code": "130228",
3642
+ "examples": [
3643
+ "watching a walking sporting event"
3644
+ ]
3645
+ },
3646
+ {
3647
+ "category": "Watching water sports",
3648
+ "code": "130229",
3649
+ "examples": [
3650
+ "watching a water polo match",
3651
+ "watching a swim/dive meet",
3652
+ "watching water aerobics"
3653
+ ]
3654
+ },
3655
+ {
3656
+ "category": "Watching weightlifting/strength training",
3657
+ "code": "130230",
3658
+ "examples": [
3659
+ "watching weightlifting competition"
3660
+ ]
3661
+ },
3662
+ {
3663
+ "category": "Watching people working out, unspecified",
3664
+ "code": "130231"
3665
+ },
3666
+ {
3667
+ "category": "Watching wrestling",
3668
+ "code": "130232"
3669
+ },
3670
+ {
3671
+ "category": "Attending sporting events, not elsewhere classified",
3672
+ "code": "130299",
3673
+ "examples": [
3674
+ "watching skeet-shooting",
3675
+ "watching hang-gliding",
3676
+ "watching cheerleading",
3677
+ "watching croquet game",
3678
+ "watching archery",
3679
+ "watching ping-pong",
3680
+ "watching pole vaulting",
3681
+ "watching discus",
3682
+ "watching windsurfing",
3683
+ "watching ballooning",
3684
+ "watching baton twirling",
3685
+ "watching skydiving",
3686
+ "watching dart playing",
3687
+ "watching javelin",
3688
+ "watching boxing",
3689
+ "watching bungee jumping"
3690
+ ]
3691
+ },
3692
+ {
3693
+ "category": "Waiting related to playing sports or exercising",
3694
+ "code": "130301"
3695
+ },
3696
+ {
3697
+ "category": "Waiting related to attending sporting events",
3698
+ "code": "130302"
3699
+ },
3700
+ {
3701
+ "category": "Waiting associated with sports, exercise, & recreation, not elsewhere classified",
3702
+ "code": "130399"
3703
+ },
3704
+ {
3705
+ "category": "Security related to playing sports or exercising",
3706
+ "code": "130401",
3707
+ "examples": [
3708
+ "passing through metal detector (playing sports)",
3709
+ "being searched at security checkpoint (playing sports)",
3710
+ "opening bags for security search (playing sports)"
3711
+ ]
3712
+ },
3713
+ {
3714
+ "category": "Security related to attending sporting events",
3715
+ "code": "130402",
3716
+ "examples": [
3717
+ "passing through metal detector (attending sports)",
3718
+ "opening bags for security search (attending sports)",
3719
+ "being searched at security checkpoint (attending sports)"
3720
+ ]
3721
+ },
3722
+ {
3723
+ "category": "Security related to sports, exercise, & recreation, not elsewhere classified",
3724
+ "code": "130499"
3725
+ },
3726
+ {
3727
+ "category": "Sports, exercise, & recreation, not elsewhere classified",
3728
+ "code": "139999"
3729
+ },
3730
+ {
3731
+ "category": "Attending religious services",
3732
+ "code": "140101",
3733
+ "examples": [
3734
+ "attending a blessing",
3735
+ "leading blessings",
3736
+ "attending church revival",
3737
+ "attending funerals/attending wakes, memorial services",
3738
+ "attending confirmation service",
3739
+ "attending church services/synagogue/temple/mosque",
3740
+ "attending a bar mitzvah/bat mitzvah/briss",
3741
+ "attending/hearing confession",
3742
+ "attending/participating in weddings",
3743
+ "attending a baptism/christening"
3744
+ ]
3745
+ },
3746
+ {
3747
+ "category": "Participation in religious practices",
3748
+ "code": "140102",
3749
+ "examples": [
3750
+ "preparing the sacrament/communion",
3751
+ "lighting advent wreath",
3752
+ "attending a religious retreat",
3753
+ "lighting menorah candles (Hanukkah)",
3754
+ "participating in church musical performance",
3755
+ "ushering for religious services",
3756
+ "cleaning up after religious ceremonies",
3757
+ "visiting graves/putting flowers on graves",
3758
+ "preparing food for a Seder",
3759
+ "singing in the church choir",
3760
+ "meditating for religious purposes",
3761
+ "praying with hh child",
3762
+ "saying prayers for a Seder",
3763
+ "reading the Bible/Koran/Torah/Talmud/scriptures",
3764
+ "listening to Bible audio",
3765
+ "praying with others",
3766
+ "leading church choir, musical groups",
3767
+ "opening advent calendar day",
3768
+ "praying alone",
3769
+ "playing the church organ",
3770
+ "rehearsing/decorating for religious ceremonies",
3771
+ "attending church choir practice",
3772
+ "attending Passover Seder",
3773
+ "attending a wedding rehearsal",
3774
+ "praying with nonhh child",
3775
+ "conducting religious rites in the home",
3776
+ "studying the Bible/Koran/sciptures"
3777
+ ]
3778
+ },
3779
+ {
3780
+ "category": "Waiting associated w/religious & spiritual activities",
3781
+ "code": "140103",
3782
+ "examples": [
3783
+ "Waiting associated w/ religious & spiritual activities"
3784
+ ]
3785
+ },
3786
+ {
3787
+ "category": "Security procedures rel. to religious & spiritual activities",
3788
+ "code": "140104",
3789
+ "examples": [
3790
+ "being searched at security checkpoint (religious activities)",
3791
+ "opening bags for security search (religious activities)",
3792
+ "passing through metal detector (religious activities)"
3793
+ ]
3794
+ },
3795
+ {
3796
+ "category": "Religious education activities",
3797
+ "code": "140105",
3798
+ "examples": [
3799
+ "attending confirmation class/attending Sunday school",
3800
+ "teaching bat/bar mitvah class",
3801
+ "preparing materials for Bible study",
3802
+ "reading (other: confirmation class)",
3803
+ "reading/studying scriptures for Sunday school",
3804
+ "distributing religious literature",
3805
+ "memorizing verses for confirmation class",
3806
+ "attending pre-Cana class",
3807
+ "leading religious youth group",
3808
+ "teaching/leading Bible study",
3809
+ "attending Bible study",
3810
+ "teaching Sunday school"
3811
+ ]
3812
+ },
3813
+ {
3814
+ "category": "Religious and spiritual activities, not elsewhere classified",
3815
+ "code": "149999"
3816
+ },
3817
+ {
3818
+ "category": "Computer use",
3819
+ "code": "150101",
3820
+ "examples": [
3821
+ "loading computer software (volunteer)",
3822
+ "computer use, unspecified (volunteer)",
3823
+ "setting up computer (volunteer)",
3824
+ "designing website for volunteer org.",
3825
+ "checking e-mail (volunteer)",
3826
+ "surfing the internet (volunteer)",
3827
+ "writing/sending e-mail (volunteer)"
3828
+ ]
3829
+ },
3830
+ {
3831
+ "category": "Organizing and preparing",
3832
+ "code": "150102",
3833
+ "examples": [
3834
+ "completing paperwork (volunteer)",
3835
+ "preparing/organizing schedules (volunteer)",
3836
+ "addressing envelopes (volunteer)",
3837
+ "filing (volunteer)",
3838
+ "reviewing applications (volunteer)",
3839
+ "re-shelving library books (volunteer)",
3840
+ "preparing for a meeting (volunteer)",
3841
+ "organizing volunteer materials",
3842
+ "stuffing envelopes (volunteer)"
3843
+ ]
3844
+ },
3845
+ {
3846
+ "category": "Reading",
3847
+ "code": "150103",
3848
+ "examples": [
3849
+ "reviewing notes, briefs, papers (volunteer)",
3850
+ "reading the Bible (volunteer)",
3851
+ "reading books, journals, newspapers (volunteer)",
3852
+ "reading scriptures (volunteer)"
3853
+ ]
3854
+ },
3855
+ {
3856
+ "category": "Telephone calls (except hotline counseling)",
3857
+ "code": "150104",
3858
+ "examples": [
3859
+ "making phone calls (volunteer)",
3860
+ "answering phones (volunteer)"
3861
+ ]
3862
+ },
3863
+ {
3864
+ "category": "Writing",
3865
+ "code": "150105",
3866
+ "examples": [
3867
+ "editing newsletters (volunteer)",
3868
+ "writing letters/memos (volunteer)"
3869
+ ]
3870
+ },
3871
+ {
3872
+ "category": "Fundraising",
3873
+ "code": "150106",
3874
+ "examples": [
3875
+ "donating money (volunteer)",
3876
+ "running a race to raise money (volunteer)",
3877
+ "collecting monetary donations (volunteer)",
3878
+ "helping with a yard sale (volunteer)",
3879
+ "ringing a bell for the Salvation Army (volunteer)",
3880
+ "planning a benefit (volunteer)",
3881
+ "selling items at a yard sale (volunteer)",
3882
+ "setting up a silent auction (volunteer)",
3883
+ "selling Girl Scout cookies (volunteer)",
3884
+ "selling raffle tickets (volunteer)",
3885
+ "selling items at a bazaar (volunteer)",
3886
+ "soliciting pledges (volunteer)",
3887
+ "raising money for charitable causes (volunteer)",
3888
+ "selling tickets (volunteer)",
3889
+ "raising money for political candidates (volunteer)",
3890
+ "selling nonfood items at a concession stand (volunteer)"
3891
+ ]
3892
+ },
3893
+ {
3894
+ "category": "Administrative & support activities, not elsewhere classified",
3895
+ "code": "150199",
3896
+ "examples": [
3897
+ "collecting signatures for a petition (volunteer)",
3898
+ "counted church offering (volunteer)"
3899
+ ]
3900
+ },
3901
+ {
3902
+ "category": "Food preparation, presentation, clean-up",
3903
+ "code": "150201",
3904
+ "examples": [
3905
+ "preparing food for a fundraiser (volunteer)",
3906
+ "serving food at a homeless shelter (volunteer)",
3907
+ "donating food to a food bank (volunteer)",
3908
+ "baking cookies for the PTA bake sale (volunteer)",
3909
+ "working in a soup kitchen (volunteer)",
3910
+ "distributing groceries at food bank (volunteer)",
3911
+ "delivering/serving meals to shut-ins (volunteer)",
3912
+ "serving food to racers (volunteer)",
3913
+ "selling food or unknown items at a concession stand (volunteer)"
3914
+ ]
3915
+ },
3916
+ {
3917
+ "category": "Collecting & delivering clothing & other goods",
3918
+ "code": "150202",
3919
+ "examples": [
3920
+ "collecting toys (volunteer)",
3921
+ "donating books (volunteer)",
3922
+ "collecting used electronics (volunteer)",
3923
+ "collecting school supplies (volunteer)",
3924
+ "sorting clothing (volunteer)",
3925
+ "loading items into vehicle (volunteer)",
3926
+ "unloading items from vehicle (volunteer)",
3927
+ "distributing blankets at a homeless shelter (volunteer)",
3928
+ "sorting books (volunteer)",
3929
+ "collecting clothing for disaster relief (volunteer)",
3930
+ "assembling gift baskets (volunteer)",
3931
+ "donating clothing (volunteer)",
3932
+ "donating tooys (voluteer)"
3933
+ ]
3934
+ },
3935
+ {
3936
+ "category": "Providing care",
3937
+ "code": "150203",
3938
+ "examples": [
3939
+ "playing with children (volunteer)",
3940
+ "visiting with others (volunteer)",
3941
+ "spending time with hospice patients (volunteer)",
3942
+ "walking dogs at animal shelter (volunteer)",
3943
+ "chaperoning (volunteer)",
3944
+ "acting as an interpreter (volunteer)",
3945
+ "supervising children (volunteer)",
3946
+ "reading to the blind (volunteer)",
3947
+ "visiting shut-ins or the elderly (volunteer)"
3948
+ ]
3949
+ },
3950
+ {
3951
+ "category": "Teaching, leading, counseling, mentoring",
3952
+ "code": "150204",
3953
+ "examples": [
3954
+ "leading a tour (volunteer)",
3955
+ "assisting in a classroom (volunteer)",
3956
+ "leading a musical group (volunteer)",
3957
+ "counseling at a halfway house (volunteer)",
3958
+ "leading Boy Scout meeting (volunteer)",
3959
+ "leading religious youth group (volunteer)",
3960
+ "teaching bat/bar mitzvah class (volunteer)",
3961
+ "leading story time at library (volunteer)",
3962
+ "teaching religious class (volunteer)",
3963
+ "leading a blessing (volunteer)",
3964
+ "being a Big Brother/Big Sister (volunteer)",
3965
+ "teaching confirmation class (volunteer)",
3966
+ "teaching parenting classes (volunteer)",
3967
+ "teaching Sunday school (volunteer)",
3968
+ "teaching a class (volunteer)",
3969
+ "teaching a cooking class (volunteer)",
3970
+ "leading a choir (volunteer)",
3971
+ "teaching/leading religious class (volunteer)",
3972
+ "coaching teams (volunteer)",
3973
+ "tutoring (volunteer)",
3974
+ "doing vocational training (volunteer)",
3975
+ "working a hotline for victim support svcs. (volunteer)",
3976
+ "providing a demo (volunteer)",
3977
+ "teaching/leading Bible study (volunteer)"
3978
+ ]
3979
+ },
3980
+ {
3981
+ "category": "Social service & care activities, not elsewhere classified",
3982
+ "code": "150299",
3983
+ "examples": [
3984
+ "sewing items to donate (volunteer)",
3985
+ "making quilts for soldiers (volunteer)",
3986
+ "knitting (volunteer)",
3987
+ "making crafts (volunteer)"
3988
+ ]
3989
+ },
3990
+ {
3991
+ "category": "Building houses, wildlife sites, & other structures",
3992
+ "code": "150301",
3993
+ "examples": [
3994
+ "building playgrounds (volunteer)",
3995
+ "building a wildlife refuge area (volunteer)",
3996
+ "building houses for Habitat for Humanity (volunteer)"
3997
+ ]
3998
+ },
3999
+ {
4000
+ "category": "Indoor & outdoor maintenance, repair, & clean-up",
4001
+ "code": "150302",
4002
+ "examples": [
4003
+ "painting (volunteer)",
4004
+ "planting trees (volunteer)",
4005
+ "clearing brush (volunteer)",
4006
+ "cleaning parks/streets (volunteer)",
4007
+ "maintaining hiking trails (volunteer)",
4008
+ "watering trees (volunteer)",
4009
+ "weeding (volunteer)",
4010
+ "doing environmental clean-up (volunteer)",
4011
+ "repairing cars (volunteer)",
4012
+ "gardening (volunteer)",
4013
+ "cleaning up yards, buildings (volunteer)",
4014
+ "mowing the lawn (volunteer)",
4015
+ "renovating a house (volunteer)",
4016
+ "landscaping (volunteer)",
4017
+ "repairing tools or equipment (volunteer)",
4018
+ "picking up trash (volunteer)",
4019
+ "planting flowers (volunteer)"
4020
+ ]
4021
+ },
4022
+ {
4023
+ "category": "Indoor & outdoor maintenance, building & clean-up activities, not elsewhere classified",
4024
+ "code": "150399"
4025
+ },
4026
+ {
4027
+ "category": "Performing",
4028
+ "code": "150401",
4029
+ "examples": [
4030
+ "auctioneering a benefit auction (volunteer)",
4031
+ "practicing for a performance (volunteer)",
4032
+ "dancing in a performance (volunteer)",
4033
+ "performing music (volunteer)",
4034
+ "acting in a performance (volunteer)",
4035
+ "emceeing a charity function (volunteer)"
4036
+ ]
4037
+ },
4038
+ {
4039
+ "category": "Serving at volunteer events & cultural activities",
4040
+ "code": "150402",
4041
+ "examples": [
4042
+ "ushering for a benefit performance (volunteer)",
4043
+ "running a carnival/festival booth (volunteer)",
4044
+ "supporting racers (volunteer)",
4045
+ "constructing a float for a parade (volunteer)",
4046
+ "working a booth at a fair (volunteer)",
4047
+ "setting up for an event (volunteer)",
4048
+ "manning an information booth (volunteer)",
4049
+ "setting up lighting (volunteer)",
4050
+ "distributing race packets (volunteer)",
4051
+ "designing a set for a performance (volunteer)",
4052
+ "designing a float for a parade (volunteer)",
4053
+ "directing a child's school play (volunteer)",
4054
+ "setting up music equipment (volunteer)",
4055
+ "distributing event T-shirts (volunteer)",
4056
+ "driving a float in a parade (volunteer)",
4057
+ "ushering at a theatre performance (volunteer)",
4058
+ "setting up for a walk-a-thon (volunteer)",
4059
+ "manning a booth (volunteer)",
4060
+ "being a docent/museum guide (volunteer)",
4061
+ "serving at a marathon (volunteer)",
4062
+ "testing sound system (volunteer)",
4063
+ "cleaning up after an event (volunteer)"
4064
+ ]
4065
+ },
4066
+ {
4067
+ "category": "Participating in performance & cultural activities, not elsewhere classified",
4068
+ "code": "150499"
4069
+ },
4070
+ {
4071
+ "category": "Attending meetings, conferences, & training",
4072
+ "code": "150501",
4073
+ "examples": [
4074
+ "serving on a board (volunteer)",
4075
+ "chairing a committee (volunteer)",
4076
+ "attending training (volunteer)",
4077
+ "serving on a finance committee (volunteer)",
4078
+ "attending meetings (volunteer)",
4079
+ "attending seminars (volunteer)",
4080
+ "attending conferences (volunteer)"
4081
+ ]
4082
+ },
4083
+ {
4084
+ "category": "Attending meetings, conferences, & training, not elsewhere classified",
4085
+ "code": "150599"
4086
+ },
4087
+ {
4088
+ "category": "Public health activities",
4089
+ "code": "150601",
4090
+ "examples": [
4091
+ "donating blood (volunteer)",
4092
+ "providing medical care (volunteer)"
4093
+ ]
4094
+ },
4095
+ {
4096
+ "category": "Public safety activities",
4097
+ "code": "150602",
4098
+ "examples": [
4099
+ "being on duty as firefighter (volunteer)",
4100
+ "patrolling for neighborhood crime watch (volunteer)"
4101
+ ]
4102
+ },
4103
+ {
4104
+ "category": "Public health & safety activities, not elsewhere classified",
4105
+ "code": "150699"
4106
+ },
4107
+ {
4108
+ "category": "Waiting associated with volunteer activities",
4109
+ "code": "150701"
4110
+ },
4111
+ {
4112
+ "category": "Waiting associated with volunteer activities, not elsewhere classified",
4113
+ "code": "150799"
4114
+ },
4115
+ {
4116
+ "category": "Security procedures related to volunteer activities",
4117
+ "code": "150801",
4118
+ "examples": [
4119
+ "passing through metal detector (volunteer)",
4120
+ "opening bags for security search (volunteer)",
4121
+ "being searched at security checkpoint (volunteer)"
4122
+ ]
4123
+ },
4124
+ {
4125
+ "category": "Security procedures related to volunteer activities, not elsewhere classified",
4126
+ "code": "150899"
4127
+ },
4128
+ {
4129
+ "category": "Volunteer activities, not elsewhere classified",
4130
+ "code": "159999",
4131
+ "examples": [
4132
+ "inventorying bird or other wildlife populations (volunteer)",
4133
+ "monitoring water quality (volunteer)",
4134
+ "shopping (volunteer)",
4135
+ "greeting people at church (volunteer)",
4136
+ "picketing (volunteer)",
4137
+ "running a race (volunteer)",
4138
+ "handing out political flyers (volunteer)",
4139
+ "handing out flyers (volunteer)",
4140
+ "taping religious services (volunteer)",
4141
+ "ushering at church (volunteer)"
4142
+ ]
4143
+ },
4144
+ {
4145
+ "category": "Telephone calls to/from family members",
4146
+ "code": "160101",
4147
+ "examples": [
4148
+ "talking on phone to relatives",
4149
+ "Skyping with my sister"
4150
+ ]
4151
+ },
4152
+ {
4153
+ "category": "Telephone calls to/from friends, neighbors, or acquaintances",
4154
+ "code": "160102",
4155
+ "examples": [
4156
+ "talking on phone to girlfriend",
4157
+ "talking on phone to fiancee",
4158
+ "talking on phone to friends/neighbors/acquaintances",
4159
+ "texting with a friend",
4160
+ "talking on phone to boyfriend"
4161
+ ]
4162
+ },
4163
+ {
4164
+ "category": "Telephone calls to/from education services providers",
4165
+ "code": "160103",
4166
+ "examples": [
4167
+ "talking on phone to a professor",
4168
+ "talking on phone to a school nurse",
4169
+ "talking on phone to a school cafeteria worker",
4170
+ "talking on phone to a principal",
4171
+ "talking on phone to a teacher",
4172
+ "talking on phone to an instructor"
4173
+ ]
4174
+ },
4175
+ {
4176
+ "category": "Telephone calls to/from salespeople",
4177
+ "code": "160104",
4178
+ "examples": [
4179
+ "talking on phone to a customer service representative",
4180
+ "talking on phone to a cashier",
4181
+ "talking on phone to a telemarketer",
4182
+ "talking on phone to a salesperson",
4183
+ "talking on phone to a sales clerk",
4184
+ "talking on phone to a store manager",
4185
+ "talking on phone to a store counter person",
4186
+ "talking to credit card company"
4187
+ ]
4188
+ },
4189
+ {
4190
+ "category": "Telephone calls to/from professional or personal care svcs providers",
4191
+ "code": "160105",
4192
+ "examples": [
4193
+ "talking on phone to a barber/hairstylist/manicurist",
4194
+ "talking on phone to a lawyer/mediator/paralegal",
4195
+ "talking on phone to a pharmacist",
4196
+ "talking on phone to a doctor/nurse/veterinarian",
4197
+ "talking on phone to a banker/insurance agent/loan officer",
4198
+ "talking on phone to an accountant",
4199
+ "talking on phone to a real estate agent",
4200
+ "talking on phone to a massage therapist"
4201
+ ]
4202
+ },
4203
+ {
4204
+ "category": "Telephone calls to/from household services providers",
4205
+ "code": "160106",
4206
+ "examples": [
4207
+ "talking on phone to an architect",
4208
+ "talking on phone to a mechanic/auto body repair person",
4209
+ "talking on phone to a cleaning service/caterer",
4210
+ "talking on phone to a plumber/electrician/contractor",
4211
+ "talking on phone to a pet sitter/pet walker",
4212
+ "talking on phone to a landscaper/gardener",
4213
+ "talking on phone to electric company representative",
4214
+ "talking on phone to a decorator",
4215
+ "talking on phone to gas company representative"
4216
+ ]
4217
+ },
4218
+ {
4219
+ "category": "Telephone calls to/from paid child or adult care providers",
4220
+ "code": "160107",
4221
+ "examples": [
4222
+ "talking on phone to a babysitter",
4223
+ "talking on phone to day care provider",
4224
+ "talking on phone to a tutor"
4225
+ ]
4226
+ },
4227
+ {
4228
+ "category": "Telephone calls to/from government officials",
4229
+ "code": "160108",
4230
+ "examples": [
4231
+ "talking on phone to police or firefighters",
4232
+ "talking on phone to a court employee",
4233
+ "talking on phone to a U.S. postal employee",
4234
+ "talking on phone to a politician",
4235
+ "talking on phone to a congressperson",
4236
+ "talking on phone to a public librarian",
4237
+ "talking on phone to a county council member"
4238
+ ]
4239
+ },
4240
+ {
4241
+ "category": "Telephone calls (to or from), not elsewhere classified",
4242
+ "code": "160199",
4243
+ "examples": [
4244
+ "talking on phone to ex-husband",
4245
+ "talking on phone, no more info provided"
4246
+ ]
4247
+ },
4248
+ {
4249
+ "category": "Waiting associated with telephone calls",
4250
+ "code": "160201",
4251
+ "examples": [
4252
+ "waiting to use a pay phone",
4253
+ "waiting for a phone call"
4254
+ ]
4255
+ },
4256
+ {
4257
+ "category": "Waiting associated with telephone calls, not elsewhere classified",
4258
+ "code": "160299"
4259
+ },
4260
+ {
4261
+ "category": "Telephone calls, not elsewhere classified",
4262
+ "code": "169999"
4263
+ },
4264
+ {
4265
+ "category": "Travel related to personal care",
4266
+ "code": "180101"
4267
+ },
4268
+ {
4269
+ "category": "Travel related to personal care, not elsewhere classified",
4270
+ "code": "180199"
4271
+ },
4272
+ {
4273
+ "category": "Travel related to housework",
4274
+ "code": "180201"
4275
+ },
4276
+ {
4277
+ "category": "Travel related to food & drink prep., clean-up, & presentation",
4278
+ "code": "180202"
4279
+ },
4280
+ {
4281
+ "category": "Travel related to interior maintenance, repair, & decoration",
4282
+ "code": "180203"
4283
+ },
4284
+ {
4285
+ "category": "Travel related to exterior maintenance, repair, & decoration",
4286
+ "code": "180204"
4287
+ },
4288
+ {
4289
+ "category": "Travel related to lawn, garden, and houseplant care",
4290
+ "code": "180205"
4291
+ },
4292
+ {
4293
+ "category": "Travel related to care for animals and pets (not vet care)",
4294
+ "code": "180206"
4295
+ },
4296
+ {
4297
+ "category": "Travel related to vehicle care & maintenance (by self)",
4298
+ "code": "180207"
4299
+ },
4300
+ {
4301
+ "category": "Travel related to appliance, tool, and toy set-up, repair, & maintenance (by self)",
4302
+ "code": "180208"
4303
+ },
4304
+ {
4305
+ "category": "Travel related to household management",
4306
+ "code": "180209"
4307
+ },
4308
+ {
4309
+ "category": "Travel related to household activities, not elsewhere classified",
4310
+ "code": "180299"
4311
+ },
4312
+ {
4313
+ "category": "Travel related to caring for & helping hh children",
4314
+ "code": "180301"
4315
+ },
4316
+ {
4317
+ "category": "Travel related to hh children's education",
4318
+ "code": "180302"
4319
+ },
4320
+ {
4321
+ "category": "Travel related to hh children's health",
4322
+ "code": "180303"
4323
+ },
4324
+ {
4325
+ "category": "Travel related to caring for hh adults",
4326
+ "code": "180304"
4327
+ },
4328
+ {
4329
+ "category": "Travel related to helping hh adults",
4330
+ "code": "180305"
4331
+ },
4332
+ {
4333
+ "category": "Travel rel. to caring for & helping hh members, not elsewhere classified",
4334
+ "code": "180399"
4335
+ },
4336
+ {
4337
+ "category": "Travel related to caring for and helping nonhh children",
4338
+ "code": "180401"
4339
+ },
4340
+ {
4341
+ "category": "Travel related to nonhh children's education",
4342
+ "code": "180402"
4343
+ },
4344
+ {
4345
+ "category": "Travel related to nonhh children's health",
4346
+ "code": "180403"
4347
+ },
4348
+ {
4349
+ "category": "Travel related to caring for nonhh adults",
4350
+ "code": "180404"
4351
+ },
4352
+ {
4353
+ "category": "Travel related to helping nonhh adults",
4354
+ "code": "180405"
4355
+ },
4356
+ {
4357
+ "category": "Travel rel. to caring for & helping nonhh members, not elsewhere classified",
4358
+ "code": "180499"
4359
+ },
4360
+ {
4361
+ "category": "Travel related to working",
4362
+ "code": "180501"
4363
+ },
4364
+ {
4365
+ "category": "Travel related to work-related activities",
4366
+ "code": "180502"
4367
+ },
4368
+ {
4369
+ "category": "Travel related to income-generating activities",
4370
+ "code": "180503"
4371
+ },
4372
+ {
4373
+ "category": "Travel related to job search & interviewing",
4374
+ "code": "180504"
4375
+ },
4376
+ {
4377
+ "category": "Travel related to work, not elsewhere classified",
4378
+ "code": "180599"
4379
+ },
4380
+ {
4381
+ "category": "Travel related to taking class",
4382
+ "code": "180601"
4383
+ },
4384
+ {
4385
+ "category": "Travel related to extracurricular activities (ex. Sports)",
4386
+ "code": "180602"
4387
+ },
4388
+ {
4389
+ "category": "Travel related to research/homework",
4390
+ "code": "180603"
4391
+ },
4392
+ {
4393
+ "category": "Travel related to registration/administrative activities",
4394
+ "code": "180604"
4395
+ },
4396
+ {
4397
+ "category": "Travel related to education, not elsewhere classified",
4398
+ "code": "180699"
4399
+ },
4400
+ {
4401
+ "category": "Travel related to grocery shopping",
4402
+ "code": "180701"
4403
+ },
4404
+ {
4405
+ "category": "Travel related to purchasing gas",
4406
+ "code": "180702"
4407
+ },
4408
+ {
4409
+ "category": "Travel related to purchasing food (not groceries)",
4410
+ "code": "180703"
4411
+ },
4412
+ {
4413
+ "category": "Travel related to shopping, ex groceries, food, and gas",
4414
+ "code": "180704"
4415
+ },
4416
+ {
4417
+ "category": "Travel related to consumer purchases, not elsewhere classified",
4418
+ "code": "180799"
4419
+ },
4420
+ {
4421
+ "category": "Travel related to using childcare services",
4422
+ "code": "180801"
4423
+ },
4424
+ {
4425
+ "category": "Travel related to using financial services and banking",
4426
+ "code": "180802"
4427
+ },
4428
+ {
4429
+ "category": "Travel related to using legal services",
4430
+ "code": "180803"
4431
+ },
4432
+ {
4433
+ "category": "Travel related to using medical services",
4434
+ "code": "180804"
4435
+ },
4436
+ {
4437
+ "category": "Travel related to using personal care services",
4438
+ "code": "180805"
4439
+ },
4440
+ {
4441
+ "category": "Travel related to using real estate services",
4442
+ "code": "180806"
4443
+ },
4444
+ {
4445
+ "category": "Travel related to using veterinary services",
4446
+ "code": "180807"
4447
+ },
4448
+ {
4449
+ "category": "Travel rel. to using prof. & personal care services, not elsewhere classified",
4450
+ "code": "180899"
4451
+ },
4452
+ {
4453
+ "category": "Travel related to using household services",
4454
+ "code": "180901"
4455
+ },
4456
+ {
4457
+ "category": "Travel related to using home main./repair/d\u00e9cor./construction svcs",
4458
+ "code": "180902"
4459
+ },
4460
+ {
4461
+ "category": "Travel related to using pet services (not vet)",
4462
+ "code": "180903"
4463
+ },
4464
+ {
4465
+ "category": "Travel related to using lawn and garden services",
4466
+ "code": "180904"
4467
+ },
4468
+ {
4469
+ "category": "Travel related to using vehicle maintenance & repair services",
4470
+ "code": "180905"
4471
+ },
4472
+ {
4473
+ "category": "Travel related to using household services, not elsewhere classified",
4474
+ "code": "180999"
4475
+ },
4476
+ {
4477
+ "category": "Travel related to using government services",
4478
+ "code": "181001"
4479
+ },
4480
+ {
4481
+ "category": "Travel related to civic obligations & participation",
4482
+ "code": "181002"
4483
+ },
4484
+ {
4485
+ "category": "Travel rel. to govt svcs & civic obligations, not elsewhere classified",
4486
+ "code": "181099"
4487
+ },
4488
+ {
4489
+ "category": "Travel related to eating and drinking",
4490
+ "code": "181101"
4491
+ },
4492
+ {
4493
+ "category": "Travel related to eating and drinking, not elsewhere classified",
4494
+ "code": "181199"
4495
+ },
4496
+ {
4497
+ "category": "Travel related to socializing and communicating",
4498
+ "code": "181201"
4499
+ },
4500
+ {
4501
+ "category": "Travel related to attending or hosting social events",
4502
+ "code": "181202"
4503
+ },
4504
+ {
4505
+ "category": "Travel related to relaxing and leisure",
4506
+ "code": "181203"
4507
+ },
4508
+ {
4509
+ "category": "Travel related to arts and entertainment",
4510
+ "code": "181204"
4511
+ },
4512
+ {
4513
+ "category": "Travel as a form of entertainment",
4514
+ "code": "181205",
4515
+ "examples": [
4516
+ "driving, no purpose (pleasure driving)",
4517
+ "sightseeing on a tour bus",
4518
+ "driving around looking at Christmas lights"
4519
+ ]
4520
+ },
4521
+ {
4522
+ "category": "Travel rel. to socializing, relaxing, & leisure, not elsewhere classified",
4523
+ "code": "181299"
4524
+ },
4525
+ {
4526
+ "category": "Travel related to participating in sports/exercise/recreation",
4527
+ "code": "181301"
4528
+ },
4529
+ {
4530
+ "category": "Travel related to attending sporting/recreational events",
4531
+ "code": "181302"
4532
+ },
4533
+ {
4534
+ "category": "Travel related to sports, exercise, & recreation, not elsewhere classified",
4535
+ "code": "181399"
4536
+ },
4537
+ {
4538
+ "category": "Travel related to religious/spiritual practices",
4539
+ "code": "181401"
4540
+ },
4541
+ {
4542
+ "category": "Travel rel. to religious/spiritual activities, not elsewhere classified",
4543
+ "code": "181499"
4544
+ },
4545
+ {
4546
+ "category": "Travel related to volunteering",
4547
+ "code": "181501"
4548
+ },
4549
+ {
4550
+ "category": "Travel related to volunteer activities, not elsewhere classified",
4551
+ "code": "181599"
4552
+ },
4553
+ {
4554
+ "category": "Travel related to phone calls",
4555
+ "code": "181601"
4556
+ },
4557
+ {
4558
+ "category": "Travel rel. to phone calls, not elsewhere classified",
4559
+ "code": "181699"
4560
+ },
4561
+ {
4562
+ "category": "Security procedures related to traveling",
4563
+ "code": "181801",
4564
+ "examples": [
4565
+ "passing through metal detector",
4566
+ "being searched at security checkpoint (traveling)",
4567
+ "waiting in line at security checkpoint",
4568
+ "opening bags for security search (traveling)"
4569
+ ]
4570
+ },
4571
+ {
4572
+ "category": "Security procedures related to traveling, not elsewhere classified",
4573
+ "code": "181899"
4574
+ },
4575
+ {
4576
+ "category": "Traveling, not elsewhere classified",
4577
+ "code": "189999",
4578
+ "examples": [
4579
+ "hailing help after accident/emergency",
4580
+ "changing a flat tire",
4581
+ "waiting to check bags for flight",
4582
+ "exchanging insurance info after accident",
4583
+ "walking to get help after travel accident",
4584
+ "travel accident",
4585
+ "taking shuttle to gate (in airport)",
4586
+ "picking up baggage (traveling)",
4587
+ "riding in a tow truck after accident",
4588
+ "car accident",
4589
+ "driving, no purpose (DP changed mind)",
4590
+ "travel emergency",
4591
+ "checking in for flight",
4592
+ "boarding flight",
4593
+ "checking bags (traveling)"
4594
+ ]
4595
+ },
4596
+ {
4597
+ "category": "Insufficient detail in verbatim",
4598
+ "code": "500101"
4599
+ },
4600
+ {
4601
+ "category": "Missing travel or destination",
4602
+ "code": "500103"
4603
+ },
4604
+ {
4605
+ "category": "Respondent refused to provide information/\"none of your business\"",
4606
+ "code": "500105"
4607
+ },
4608
+ {
4609
+ "category": "Gap/can't remember",
4610
+ "code": "500106"
4611
+ },
4612
+ {
4613
+ "category": "Unable to code activity at 1st tier",
4614
+ "code": "500107"
4615
+ }
4616
+ ]
4617
+ }