super_good-solidus_taxjar 0.18.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (130) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +48 -6
  3. data/CHANGELOG.md +103 -1
  4. data/Gemfile +26 -10
  5. data/PULL_REQUEST_TEMPLATE.md +0 -1
  6. data/README.md +299 -39
  7. data/Rakefile +3 -0
  8. data/app/controllers/spree/admin/taxjar_settings_controller.rb +86 -1
  9. data/app/controllers/spree/admin/taxjar_transactions_controller.rb +37 -0
  10. data/app/controllers/spree/admin/transaction_sync_batches_controller.rb +18 -0
  11. data/app/jobs/super_good/solidus_taxjar/backfill_transaction_sync_batch_job.rb +23 -0
  12. data/app/jobs/super_good/solidus_taxjar/replace_transaction_job.rb +26 -0
  13. data/app/jobs/super_good/solidus_taxjar/report_transaction_job.rb +22 -0
  14. data/app/models/super_good/solidus_taxjar/configuration.rb +27 -0
  15. data/app/models/super_good/solidus_taxjar/order_transaction.rb +16 -0
  16. data/app/models/super_good/solidus_taxjar/refund_transaction.rb +13 -0
  17. data/app/models/super_good/solidus_taxjar/transaction_sync_batch.rb +11 -0
  18. data/app/models/super_good/solidus_taxjar/transaction_sync_log.rb +8 -0
  19. data/app/overrides/spree/admin/orders_controller_override.rb +12 -0
  20. data/app/overrides/spree/admin/shared/_order_submenu/add_taxjar_sync_history_tab.html.erb.deface +6 -0
  21. data/app/overrides/spree/admin/shared/_order_summary/add_taxjar_reported_at.html.erb.deface +30 -0
  22. data/app/overrides/spree/admin/shared/_taxes_tabs/add_configuration_menu_items.html.erb.deface +5 -0
  23. data/app/overrides/super_good/solidus_taxjar/spree/order_override.rb +21 -0
  24. data/app/views/spree/admin/orders/taxjar_transactions.html.erb +4 -0
  25. data/app/views/spree/admin/shared/_transaction_sync_log_table.html.erb +35 -0
  26. data/app/views/spree/admin/taxjar_settings/_nexus_regions.html.erb +23 -0
  27. data/app/views/spree/admin/taxjar_settings/_tax_categories.html.erb +41 -0
  28. data/app/views/spree/admin/taxjar_settings/edit.html.erb +17 -0
  29. data/app/views/spree/admin/taxjar_settings/edit_no_api_key.html.erb +21 -0
  30. data/app/views/spree/admin/transaction_sync_batches/index.html.erb +50 -0
  31. data/app/views/spree/admin/transaction_sync_batches/show.html.erb +7 -0
  32. data/bin/console +2 -0
  33. data/bin/rails-engine +1 -1
  34. data/bin/sandbox +43 -36
  35. data/bin/setup +3 -3
  36. data/config/routes.rb +13 -1
  37. data/db/migrate/20210908205201_create_taxjar_order_transactions.rb +16 -0
  38. data/db/migrate/20211008175113_create_taxjar_refund_transaction.rb +15 -0
  39. data/db/migrate/20211008183858_add_transaction_date_to_order_transaction.rb +5 -0
  40. data/db/migrate/20211119143354_create_configuration.rb +8 -0
  41. data/db/migrate/20220405213958_create_transaction_sync_batches.rb +7 -0
  42. data/db/migrate/20220405215225_create_transaction_sync_logs.rb +14 -0
  43. data/db/migrate/20220908181655_add_dates_to_transaction_sync_batch.rb +6 -0
  44. data/db/migrate/20220912182210_allow_null_transaction_sync_batches_on_logs.rb +5 -0
  45. data/db/migrate/20230320211309_add_refund_transaction_to_sync_logs.rb +5 -0
  46. data/lib/generators/super_good/solidus_taxjar/install/install_generator.rb +68 -0
  47. data/lib/super_good/solidus_taxjar/api.rb +41 -9
  48. data/lib/super_good/solidus_taxjar/api_params.rb +92 -25
  49. data/lib/super_good/solidus_taxjar/backfill_transactions.rb +11 -0
  50. data/lib/super_good/solidus_taxjar/cached_api.rb +23 -0
  51. data/lib/super_good/solidus_taxjar/calculator_helper.rb +33 -4
  52. data/lib/super_good/solidus_taxjar/discount_calculator.rb +1 -1
  53. data/lib/super_good/solidus_taxjar/overrides/request_override.rb +15 -0
  54. data/lib/super_good/solidus_taxjar/reportable.rb +91 -0
  55. data/lib/super_good/solidus_taxjar/reporting.rb +44 -0
  56. data/lib/super_good/solidus_taxjar/spree/legacy_reporting_subscriber.rb +41 -0
  57. data/lib/super_good/solidus_taxjar/spree/reporting_subscriber.rb +40 -0
  58. data/lib/super_good/solidus_taxjar/tax_calculator.rb +7 -1
  59. data/lib/super_good/solidus_taxjar/testing_support/factories/address_factory.rb +11 -0
  60. data/lib/super_good/solidus_taxjar/testing_support/factories/configuration_factory.rb +11 -0
  61. data/lib/super_good/solidus_taxjar/testing_support/factories/order_transaction_factory.rb +22 -0
  62. data/lib/super_good/solidus_taxjar/testing_support/factories/refund_transaction_factory.rb +7 -0
  63. data/lib/super_good/solidus_taxjar/testing_support/factories/transaction_sync_batch_factory.rb +9 -0
  64. data/lib/super_good/solidus_taxjar/testing_support/factories/transaction_sync_log_factory.rb +18 -0
  65. data/lib/super_good/solidus_taxjar/transaction_id_generator.rb +45 -0
  66. data/lib/super_good/solidus_taxjar/version.rb +1 -1
  67. data/lib/super_good/solidus_taxjar.rb +29 -2
  68. data/spec/features/spree/admin/backfill_transactions_spec.rb +138 -0
  69. data/spec/features/spree/admin/refund_spec.rb +167 -0
  70. data/spec/features/spree/admin/reporting_to_taxjar_spec.rb +156 -0
  71. data/spec/features/spree/admin/taxjar_settings_spec.rb +58 -16
  72. data/spec/features/spree/checkout_spec.rb +58 -0
  73. data/spec/fixtures/cassettes/Admin_TaxJar_Settings/GET_sync_nexus_regions/Taxjar_API_token_is_not_set/doesn_t_make_a_request_for_the_nexus_regions.yml +57 -0
  74. data/spec/fixtures/cassettes/Admin_TaxJar_Settings/GET_sync_tax_categories/Taxjar_API_token_is_not_set/doesn_t_make_a_request_for_the_tax_categories.yml +57 -0
  75. data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_is_set/shows_the_settings_page.yml +2437 -0
  76. data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_isn_t_set/doesn_t_show_any_other_TaxJar_features.yml +57 -0
  77. data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_isn_t_set/shows_a_descriptive_error_message.yml +57 -0
  78. data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_reporting_is_enabled/shows_that_reporting_is_enabled.yml +2382 -0
  79. data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/order_is_shipped/the_user_backfills_their_transactions.yml +2511 -0
  80. data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/the_user_navigates_to_the_TaxJar_Settings.yml +2382 -0
  81. data/spec/fixtures/cassettes/Admin_Transaction_Sync_Batches/user_has_a_shipped_order/starts_a_transaction_backfill.yml +370 -0
  82. data/spec/fixtures/cassettes/Reporting_orders_to_TaxJar/shipping_a_complete_and_paid_order.yml +310 -0
  83. data/spec/fixtures/cassettes/Reporting_orders_to_TaxJar/updating_an_order_which_was_not_reported_due_to_failure/it_reports_the_order_instead_of_trying_to_replace_it.yml +794 -0
  84. data/spec/fixtures/cassettes/Reporting_orders_to_TaxJar/with_an_order_with_invalid_zipcode/retry_of_a_previously_failed_transaction_sync.yml +418 -0
  85. data/spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/creates_a_batch.yml +250 -0
  86. data/spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/creates_a_log_in_the_batch_with_an_order.yml +250 -0
  87. data/spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/user_supplies_a_start_date/creates_a_batch.yml +250 -0
  88. data/spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/user_supplies_a_start_date/user_supplies_start_and_end_date/creates_a_batch.yml +250 -0
  89. data/spec/fixtures/cassettes/SuperGood_SolidusTaxjar_CalculatorHelper/_taxable_address_/when_taxable_address_check_returns_true/with_US_address/when_the_address_is_not_within_a_nexus_region/1_3_2_2_2_1.yml +58 -0
  90. data/spec/fixtures/cassettes/SuperGood_SolidusTaxjar_CalculatorHelper/_taxable_address_/when_taxable_address_check_returns_true/with_US_address/when_the_address_is_within_a_nexus_region/1_3_2_2_1_1.yml +58 -0
  91. data/spec/fixtures/cassettes/SuperGood_SolidusTaxjar_Reporting/_refund_and_create_transaction/when_Taxjar_cannot_create_a_refund_transaction/doesn_t_create_a_new_transaction.yml +393 -0
  92. data/spec/fixtures/cassettes/SuperGood_SolidusTaxjar_Reporting/_refund_and_create_transaction/when_Taxjar_cannot_create_a_refund_transaction/raises_an_error.yml +393 -0
  93. data/spec/fixtures/cassettes/Taxjar_API_Request/logging_is_disabled/doesn_t_call_the_logger.yml +158 -0
  94. data/spec/fixtures/cassettes/Taxjar_API_Request/logging_is_enabled/calls_the_logger.yml +158 -0
  95. data/spec/fixtures/cassettes/features/spree/admin/checkout.yml +238 -0
  96. data/spec/fixtures/cassettes/features/spree/admin/refund.yml +1162 -0
  97. data/spec/jobs/super_good/solidus_taxjar/backfill_transaction_sync_batch_job_spec.rb +117 -0
  98. data/spec/jobs/super_good/solidus_taxjar/replace_transaction_job_spec.rb +95 -0
  99. data/spec/jobs/super_good/solidus_taxjar/report_transaction_job_spec.rb +76 -0
  100. data/spec/models/super_good/solidus_taxjar/configuration_spec.rb +79 -0
  101. data/spec/models/super_good/solidus_taxjar/order_transaction_spec.rb +36 -0
  102. data/spec/models/super_good/solidus_taxjar/transaction_sync_batch_spec.rb +48 -0
  103. data/spec/requests/spree/admin/order_request_spec.rb +121 -0
  104. data/spec/requests/spree/admin/taxjar_settings_request_spec.rb +198 -0
  105. data/spec/requests/spree/admin/taxjar_transactions_request_spec.rb +62 -0
  106. data/spec/requests/spree/admin/transaction_sync_batches_request_spec.rb +82 -0
  107. data/spec/spec_helper.rb +46 -3
  108. data/spec/subscribers/super_good/solidus_taxjar/spree/reporting_subscriber_spec.rb +278 -0
  109. data/spec/super_good/solidus_taxjar/addresses_spec.rb +0 -14
  110. data/spec/super_good/solidus_taxjar/api_params_spec.rb +261 -89
  111. data/spec/super_good/solidus_taxjar/api_spec.rb +152 -29
  112. data/spec/super_good/solidus_taxjar/backfill_transactions_spec.rb +24 -0
  113. data/spec/super_good/solidus_taxjar/cached_api_spec.rb +58 -0
  114. data/spec/super_good/solidus_taxjar/calculator_helper_spec.rb +131 -0
  115. data/spec/super_good/solidus_taxjar/discount_calculator_spec.rb +19 -2
  116. data/spec/super_good/solidus_taxjar/reportable_spec.rb +194 -0
  117. data/spec/super_good/solidus_taxjar/reporting_spec.rb +243 -0
  118. data/spec/super_good/solidus_taxjar/tax_calculator_spec.rb +19 -19
  119. data/spec/super_good/solidus_taxjar/tax_rate_calculator_spec.rb +8 -3
  120. data/spec/super_good/solidus_taxjar/transaction_id_generator_spec.rb +77 -0
  121. data/spec/super_good/solidus_taxjar_spec.rb +84 -0
  122. data/spec/support/checkoutable_store_shared_context.rb +19 -0
  123. data/spec/support/solidus_events_helper.rb +26 -0
  124. data/spec/taxjar/api/request_spec.rb +52 -0
  125. data/super_good-solidus_taxjar.gemspec +3 -2
  126. metadata +169 -17
  127. data/app/decorators/super_good/solidus_taxjar/spree/order_updater/fire_recalculated_event.rb +0 -18
  128. data/app/overrides/spree/admin/shared/_configuration_menu.rb +0 -11
  129. data/app/views/spree/admin/taxjar_settings/show.html.erb +0 -13
  130. data/spec/models/spree/order_updater_spec.rb +0 -12
@@ -0,0 +1,2511 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.taxjar.com/v2/taxes
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"customer_id":"1","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
9
+ Different Road","line_items":[{"id":1,"quantity":1,"unit_price":"10.0","discount":"-0.0","product_tax_code":"123"}],"shipping":"100.0"}'
10
+ headers:
11
+ User-Agent:
12
+ - 'TaxJar/Ruby (Darwin MacBook-Pro.hitronhub.home 21.2.0 Darwin Kernel Version
13
+ 21.2.0: Sun Nov 28 20:28:54 PST 2021; root:xnu-8019.61.5~1/RELEASE_X86_64
14
+ x86_64; ruby 2.6.6-p146; OpenSSL 1.1.1m 14 Dec 2021) taxjar-ruby/3.0.2'
15
+ Authorization:
16
+ - Bearer <BEARER_TOKEN>
17
+ X-Api-Version:
18
+ - '2020-08-07'
19
+ Plugin:
20
+ - supergoodsolidustaxjar
21
+ Connection:
22
+ - close
23
+ Content-Type:
24
+ - application/json; charset=UTF-8
25
+ Host:
26
+ - api.taxjar.com
27
+ response:
28
+ status:
29
+ code: 200
30
+ message: OK
31
+ headers:
32
+ Content-Type:
33
+ - application/json; charset=utf-8
34
+ Content-Length:
35
+ - '1487'
36
+ Connection:
37
+ - close
38
+ Date:
39
+ - Wed, 13 Apr 2022 18:19:21 GMT
40
+ X-Amzn-Requestid:
41
+ - d90469f2-37b6-42c6-8611-31f091a9229c
42
+ Access-Control-Allow-Origin:
43
+ - https://developers.taxjar.com
44
+ X-Amz-Apigw-Id:
45
+ - QiAWlFjQIAMF7eA=
46
+ X-Amzn-Trace-Id:
47
+ - Root=1-62571429-61d6304e101ad8f10c434309
48
+ X-Cache:
49
+ - Miss from cloudfront
50
+ Via:
51
+ - 1.1 ac463f3377446e4c603deca30feb744a.cloudfront.net (CloudFront)
52
+ X-Amz-Cf-Pop:
53
+ - SEA19-C3
54
+ X-Amz-Cf-Id:
55
+ - 0uAUbxF6PhaeSu933Cs4P33OWB-PXrk8r_dHTMriN6pnRj_U6qfK4w==
56
+ body:
57
+ encoding: UTF-8
58
+ string: '{"tax":{"amount_to_collect":9.76,"breakdown":{"city_tax_collectable":5.36,"city_tax_rate":0.04875,"city_taxable_amount":110.0,"combined_tax_rate":0.08875,"county_tax_collectable":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"line_items":[{"city_amount":0.49,"city_tax_rate":0.04875,"city_taxable_amount":10.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"id":"1","special_district_amount":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_amount":0.4,"state_sales_tax_rate":0.04,"state_taxable_amount":10.0,"tax_collectable":0.89,"taxable_amount":10.0}],"shipping":{"city_amount":4.88,"city_tax_rate":0.04875,"city_taxable_amount":100.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"special_district_amount":0.0,"special_tax_rate":0.0,"special_taxable_amount":0.0,"state_amount":4.0,"state_sales_tax_rate":0.04,"state_taxable_amount":100.0,"tax_collectable":8.88,"taxable_amount":100.0},"special_district_tax_collectable":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_tax_collectable":4.4,"state_tax_rate":0.04,"state_taxable_amount":110.0,"tax_collectable":9.76,"taxable_amount":110.0},"freight_taxable":true,"has_nexus":true,"jurisdictions":{"city":"NEW
59
+ YORK CITY","country":"US","county":"QUEENS","state":"NY"},"order_total_amount":110.0,"rate":0.08875,"shipping":100.0,"tax_source":"destination","taxable_amount":110.0}}'
60
+ http_version:
61
+ recorded_at: Wed, 13 Apr 2022 18:19:21 GMT
62
+ - request:
63
+ method: post
64
+ uri: https://api.taxjar.com/v2/taxes
65
+ body:
66
+ encoding: UTF-8
67
+ string: '{"customer_id":"1","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
68
+ Different Road","line_items":[{"id":1,"quantity":1,"unit_price":"10.0","discount":"-0.0","product_tax_code":"123"}],"shipping":"100.0"}'
69
+ headers:
70
+ User-Agent:
71
+ - 'TaxJar/Ruby (Darwin MacBook-Pro.hitronhub.home 21.2.0 Darwin Kernel Version
72
+ 21.2.0: Sun Nov 28 20:28:54 PST 2021; root:xnu-8019.61.5~1/RELEASE_X86_64
73
+ x86_64; ruby 2.6.6-p146; OpenSSL 1.1.1m 14 Dec 2021) taxjar-ruby/3.0.2'
74
+ Authorization:
75
+ - Bearer <BEARER_TOKEN>
76
+ X-Api-Version:
77
+ - '2020-08-07'
78
+ Plugin:
79
+ - supergoodsolidustaxjar
80
+ Connection:
81
+ - close
82
+ Content-Type:
83
+ - application/json; charset=UTF-8
84
+ Host:
85
+ - api.taxjar.com
86
+ response:
87
+ status:
88
+ code: 200
89
+ message: OK
90
+ headers:
91
+ Content-Type:
92
+ - application/json; charset=utf-8
93
+ Content-Length:
94
+ - '1487'
95
+ Connection:
96
+ - close
97
+ Date:
98
+ - Wed, 13 Apr 2022 18:19:22 GMT
99
+ X-Amzn-Requestid:
100
+ - 8253bed8-8b9f-4434-951c-7c0b2112f2d0
101
+ Access-Control-Allow-Origin:
102
+ - https://developers.taxjar.com
103
+ X-Amz-Apigw-Id:
104
+ - QiAWpE_OIAMF0Gg=
105
+ X-Amzn-Trace-Id:
106
+ - Root=1-6257142a-129a35545884516f78c711d5
107
+ X-Cache:
108
+ - Miss from cloudfront
109
+ Via:
110
+ - 1.1 de2dd11312f7d5ad3bcd0cb112c7fd0e.cloudfront.net (CloudFront)
111
+ X-Amz-Cf-Pop:
112
+ - SEA19-C3
113
+ X-Amz-Cf-Id:
114
+ - rKgvQck2shNUaQgSX26yioYrKspHYZweOrXfR_6zJhxCk5LgOWfKRA==
115
+ body:
116
+ encoding: UTF-8
117
+ string: '{"tax":{"amount_to_collect":9.76,"breakdown":{"city_tax_collectable":5.36,"city_tax_rate":0.04875,"city_taxable_amount":110.0,"combined_tax_rate":0.08875,"county_tax_collectable":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"line_items":[{"city_amount":0.49,"city_tax_rate":0.04875,"city_taxable_amount":10.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"id":"1","special_district_amount":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_amount":0.4,"state_sales_tax_rate":0.04,"state_taxable_amount":10.0,"tax_collectable":0.89,"taxable_amount":10.0}],"shipping":{"city_amount":4.88,"city_tax_rate":0.04875,"city_taxable_amount":100.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"special_district_amount":0.0,"special_tax_rate":0.0,"special_taxable_amount":0.0,"state_amount":4.0,"state_sales_tax_rate":0.04,"state_taxable_amount":100.0,"tax_collectable":8.88,"taxable_amount":100.0},"special_district_tax_collectable":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_tax_collectable":4.4,"state_tax_rate":0.04,"state_taxable_amount":110.0,"tax_collectable":9.76,"taxable_amount":110.0},"freight_taxable":true,"has_nexus":true,"jurisdictions":{"city":"NEW
118
+ YORK CITY","country":"US","county":"QUEENS","state":"NY"},"order_total_amount":110.0,"rate":0.08875,"shipping":100.0,"tax_source":"destination","taxable_amount":110.0}}'
119
+ http_version:
120
+ recorded_at: Wed, 13 Apr 2022 18:19:22 GMT
121
+ - request:
122
+ method: get
123
+ uri: https://api.taxjar.com/v2/categories
124
+ body:
125
+ encoding: UTF-8
126
+ string: ''
127
+ headers:
128
+ User-Agent:
129
+ - 'TaxJar/Ruby (Darwin MacBook-Pro.hitronhub.home 21.2.0 Darwin Kernel Version
130
+ 21.2.0: Sun Nov 28 20:28:54 PST 2021; root:xnu-8019.61.5~1/RELEASE_X86_64
131
+ x86_64; ruby 2.6.6-p146; OpenSSL 1.1.1m 14 Dec 2021) taxjar-ruby/3.0.2'
132
+ Authorization:
133
+ - Bearer <BEARER_TOKEN>
134
+ X-Api-Version:
135
+ - '2020-08-07'
136
+ Plugin:
137
+ - supergoodsolidustaxjar
138
+ Connection:
139
+ - close
140
+ Host:
141
+ - api.taxjar.com
142
+ response:
143
+ status:
144
+ code: 200
145
+ message: OK
146
+ headers:
147
+ Content-Type:
148
+ - application/json; charset=utf-8
149
+ Content-Length:
150
+ - '202081'
151
+ Connection:
152
+ - close
153
+ Date:
154
+ - Wed, 13 Apr 2022 18:19:22 GMT
155
+ X-Amzn-Requestid:
156
+ - 22f4a5c6-4851-44c5-98d4-7886de4b1ea3
157
+ Access-Control-Allow-Origin:
158
+ - https://developers.taxjar.com
159
+ X-Amz-Apigw-Id:
160
+ - QiAWuFd6IAMFqLQ=
161
+ X-Amzn-Trace-Id:
162
+ - Root=1-6257142a-5f29abe234c69fb677c5c90a
163
+ X-Cache:
164
+ - Miss from cloudfront
165
+ Via:
166
+ - 1.1 74ab105148338444981d1b2277ffd9c4.cloudfront.net (CloudFront)
167
+ X-Amz-Cf-Pop:
168
+ - SEA19-C3
169
+ X-Amz-Cf-Id:
170
+ - Buw74A4-8v0-oxXzELzbOjuKY17H4xEfGFNuc2LqSeDCEUMGB0JTuw==
171
+ body:
172
+ encoding: UTF-8
173
+ string: '{"categories":[{"description":"Bibles","name":"Bibles","product_tax_code":"81121"},{"description":"Paper
174
+ based items for household use designed to be disposed of after single use,
175
+ including the the following...Facial tissue; Paper bags; Paper freezer wrap;
176
+ Paper place mats; Paper plates and cups; Paper napkins; Paper straws; Paper
177
+ tablecloths; Paper towels.","name":"Disposable Paper Products, non-commercial
178
+ use","product_tax_code":"14111700A0001"},{"description":"A compound providing
179
+ vital nutrients that a companion animal requires.","name":"Vitamins - Pets","product_tax_code":"50501903A0000"},{"description":"Medical
180
+ supplies for pets available without a prescription, such as bandages, dressings,
181
+ gauze, medical tape.","name":"Wound Care Supplies - Bandages, Dressings, Gauze
182
+ - for Pets","product_tax_code":"42311500A0002"},{"description":"Medicinal
183
+ substances for treating companion animals and intended for use in the diagnosis,
184
+ cure, mitigation, treatment, or prevention of disease, sold without prescription.","name":"Over-the-Counter
185
+ Drugs - Pets","product_tax_code":"51000000A1000"},{"description":"Substances
186
+ for treating and preventing flea and ticks in companion animals, sold without
187
+ prescription. Examples include flea collars, flea powder, tick and flea soap,
188
+ and tick sprays.","name":"Flea & Tick Products - Pets","product_tax_code":"51000000A1001"},{"description":"An
189
+ unbound publication distributed to the public at regular intervals printed
190
+ on newsprint that contains news, editorial comment, opinions, features, advertising
191
+ matter, and other matters of public interest.","name":"Newspaper - Tangible","product_tax_code":"55101504A0000"},{"description":"Products
192
+ for use in non-commercial food producing gardens to enhance plant growth.","name":"Agricultural
193
+ Fertilizer - Non-commercial gardening","product_tax_code":"10171800A0001"},{"description":"Products
194
+ for use in non-commercial food producing gardens to control insects, weeds,
195
+ and fungus.","name":"Agricultural Chemicals - Non-commercial gardening","product_tax_code":"10191500A0001"},{"description":"Disposable
196
+ wipes used to disinfect objects and surfaces.","name":"Surface Cleaning Wipes","product_tax_code":"47131502A0001"},{"description":"A
197
+ portable seat that can be installed and removed from motor vehicles designed
198
+ to protect infants and children through a certain age or weight (includes
199
+ booster seats).","name":"Infant/Child Car Seat","product_tax_code":"56101805A0000"},{"description":"A
200
+ bottle with a teat or nipple made for babies to drink from.","name":"Baby
201
+ Feeding Bottles/Nipples","product_tax_code":"42311808A0000"},{"description":"A
202
+ reusable mask made of common fabrics worn over the mouth and nose to act as
203
+ personal protection from airborne pathogens.","name":"Cloth Face Masks - Reusable","product_tax_code":"42131713A0002"},{"description":"A
204
+ charge for the service of residential or commercial painting or paperhanging
205
+ of interior or exterior real property structures. This a labor charge, with
206
+ any non-separately stated property transferred in performing the service considered
207
+ inconsequential.","name":"Painting/Paperhanging Services - Real Property","product_tax_code":"72151300A0000"},{"description":"A
208
+ charge for services of general lawn and grounds maintenance, including lawn
209
+ cutting, weeding, yard clean-up, shrub and tree trimming, periodic seeding
210
+ or aeration, etc. This a labor charge, with any non-separately stated property
211
+ transferred in performing the service considered inconsequential.","name":"Lawn
212
+ Maintenance Services","product_tax_code":"70111706A0000"},{"description":"A
213
+ charge for services to modify land structures including the establishment
214
+ of lawns or gardens, the planting of trees, flowers and shrubs, the building
215
+ of landforms, retaining walls, water features and other similar structures. This
216
+ a labor charge, with any non-separately stated property transferred in performing
217
+ the service considered inconsequential.","name":"Landscaping Services","product_tax_code":"72102902A0000"},{"description":"A
218
+ charge for services related to extermination of unwanted insects and animals
219
+ from inside and outside of structures, including tasks to inspect, detect,
220
+ prevent, and remove infestations from the residential or commercial area.","name":"Pest
221
+ Control Services","product_tax_code":"72102100A0000"},{"description":"A charge
222
+ for janitorial services to commercial buildings, including the cleaning of
223
+ floors, carpets, walls, windows, fixtures, exterior cleaning, etc.","name":"Cleaning/Janitorial
224
+ Services - Commercial","product_tax_code":"76111501A0000"},{"description":"A
225
+ charge to install tangible personal property such that the property becomes
226
+ permanently affixed to the real property, so that it cannot be removed without
227
+ causing damage. This a labor charge, with any non-separately stated property
228
+ transferred in performing the service considered inconsequential.","name":"Installation
229
+ of Property - Permanent","product_tax_code":"72150000A0001"},{"description":"A
230
+ charge for the cleaning of tangible personal property, other than motor vehicles
231
+ or clothing.","name":"Cleaning of Tangible Personal Property","product_tax_code":"76110000A1000"},{"description":"An
232
+ agreement between a service contract provider and a customer for prepaid routine
233
+ maintenance (e.g. oil changes, tire rotations, air filter, spark plugs, transmission
234
+ and transfer case fluid changes) for a motor vehicle. Contract covers both
235
+ parts and labor and is made at the same time as Motor Vehicle purchase but
236
+ is separately stated.","name":"Optional Maintenance Contract on Motor Vehicle","product_tax_code":"81111818A0003"},{"description":"An
237
+ agreement between a service contract provider and a customer for prepaid routine
238
+ maintenance (e.g. oil changes, tire rotations, air filter, spark plugs, transmission
239
+ and transfer case fluid changes) of a leased motor vehicle. Contract covers
240
+ both parts and labor.","name":"Optional Maintenance Contract on Leased Motor
241
+ Vehicle","product_tax_code":"81111818A0005"},{"description":"An agreement
242
+ between a service contract provider and a customer where the service provider
243
+ agrees to repair or replace certain parts on a motor vehicle that has had
244
+ a failure after the original manufacturer’s warranty has expired. Commonly
245
+ referred to as extended warranty or protection plan. Contract covers both
246
+ parts and labor and is made after the motor vehicle purchase.","name":"Optional
247
+ Extended Warranty Contract on Motor Vehicle - After Market","product_tax_code":"81111818A0006"},{"description":"An
248
+ agreement between a service contract provider and a customer where the service
249
+ provider agrees to repair or replace certain parts on a motor vehicle that
250
+ has had a failure after the original manufacturer’s warranty has expired. Commonly
251
+ referred to as extended warranty or protection plan. Contract covers both
252
+ parts and labor, and is made at the same time as Motor Vehicle purchase but
253
+ is separately stated.","name":"Optional Extended Warranty Contract on Motor
254
+ Vehicle","product_tax_code":"81111818A0002"},{"description":"An agreement
255
+ between a service contract provider and a customer where the service provider
256
+ agrees to repair or replace certain parts on a leased motor vehicle that has
257
+ had a failure after the original manufacturer’s warranty has expired. Commonly
258
+ referred to as extended warranty or protection plan. Contract covers both
259
+ parts and labor.","name":"Optional Extended Warranty Contract on Leased Motor
260
+ Vehicle","product_tax_code":"81111818A0004"},{"description":"An agreement
261
+ between a service contract provider and a customer for prepaid routine maintenance
262
+ (e.g. oil changes, tire rotations, air filter, spark plugs, transmission and
263
+ transfer case fluid changes) of a motor vehicle. Contract covers both parts
264
+ and labor and is made after the motor vehicle purchase.","name":"Optional
265
+ Maintenance Contract on Motor Vehicle - After Market","product_tax_code":"81111818A0007"},{"description":"A
266
+ charge for a service performed by providers considered professionals due to
267
+ the extensive initial and continuing education and/or training requirements,
268
+ and the likelihood of state or federal licensing requirements. Choose this
269
+ product tax code for any professional service offering in which a more detailed
270
+ code is not available.","name":"Professional Services","product_tax_code":"19005"},{"description":"A
271
+ lock that enters through the chamber or barrel of a firearm that prevents
272
+ use. (trigger lock or barrel lock)","name":"Gun Safety Lock","product_tax_code":"46171502A0001"},{"description":"A
273
+ locking container or other enclosure equipped with a padlock, key lock,combination
274
+ lock, or other locking device that is designed and intended for the secure
275
+ storage of one or more firearms. Glass display cases, racks/stands are excluded.","name":"Gun
276
+ Safe","product_tax_code":"46101806A0001"},{"description":"An item commonly
277
+ used by a student in a course of study. This category is limited to the following
278
+ items...binders, blackboard chalk, cellophane tape, compasses, composition
279
+ books, crayons, erasers, folders, glue/paste/glue sticks, highlighters, index
280
+ cards, index card boxes, legal pads, lunch boxes, markers, notebooks, paper
281
+ (copy, graph, tracing, manila, colored, construction, notebook), pencils,
282
+ pencil boxes, pencil sharpeners, pens, posterboard, protractors, rulers, scissors,
283
+ writing tablets.","name":"School Supplies","product_tax_code":"44121600A0001"},{"description":"This
284
+ is a labor charge for: the planning and design of interior spaces; preparation
285
+ of layout drawings, schedules, and specifications pertaining to the planning
286
+ and design of interior spaces; furniture arranging; design and planning of
287
+ furniture, fixtures, and cabinetry; staging; lighting and sound design; and
288
+ the selection, purchase, and arrangement of surface coverings, draperies,
289
+ furniture, and other decorations.","name":"Interior Decorating Services","product_tax_code":"73890600A0000"},{"description":"Ammunition
290
+ for firearms with a barrel greater than an internal diameter of .50 caliber
291
+ or a shotgun larger than 10 gauge., including bullets, shotgun shells, and
292
+ gunpowder.","name":"Ammunition - designed for firearms other than small arms.","product_tax_code":"46101600A0002"},{"description":"Firearms,
293
+ limited to pistols, revolvers, rifles with a barrel greater than an internal
294
+ diameter of .50 caliber or a shotgun larger than 10 gauge.","name":"Firearms
295
+ - other than small arms","product_tax_code":"46101500A0002"},{"description":"A
296
+ charge for an objective visual examination of a house’s systems and physical
297
+ structure. The charge includes a report of the inspector''s findings including
298
+ pictures, analysis, and recommendations.","name":"Home Inspection Services","product_tax_code":"80131802A0001"},{"description":"A
299
+ charge for custodial services to residential structures, including the cleaning
300
+ of floors, carpets, walls, windows, appliances, furniture, fixtures, exterior
301
+ cleaning, etc. No Tangible Personal Property is transferred.","name":"Cleaning/Janitorial
302
+ Services - Residential","product_tax_code":"76111501A0001"},{"description":"A
303
+ subscription service for membership to an online dating platform.","name":"Online
304
+ Dating Services","product_tax_code":"91000000A1111"},{"description":"A charge
305
+ for the service to maintain the proper operation of home or building gutters
306
+ through cleaning out debris that could otherwise affect the proper water flow
307
+ through the gutter system.","name":"Gutter Cleaning Services","product_tax_code":"72152602A0001"},{"description":"Clothing
308
+ - Swim Fins","name":"Clothing - Swim Fins","product_tax_code":"4914606A0001"},{"description":"A
309
+ series of related images which, when shown in succession, impart an impression
310
+ of motion, together with accompanying sounds, if any. These goods can be
311
+ streamed and/or downloaded to a device with permanent access granted. These
312
+ goods include motion pictures, music videos, animations, news and entertainment
313
+ programs, and live events, but do not include video greeting cards or video
314
+ or electronic games.","name":"Digital Audio Visual Works - bundle - downloaded
315
+ with permanent rights and streamed - non subscription","product_tax_code":"55111516A0110"},{"description":"A
316
+ series of related images which, when shown in succession, impart an impression
317
+ of motion, together with accompanying sounds, if any. These goods can be
318
+ streamed and/or downloaded to a device with access that expires after a stated
319
+ period of time. These goods include motion pictures, music videos, animations,
320
+ news and entertainment programs, and live events, but do not include video
321
+ greeting cards or video or electronic games.","name":"Digital Audio Visual
322
+ Works - bundle - downloaded with limited rights and streamed - non subscription","product_tax_code":"55111516A0210"},{"description":"A
323
+ series of related images which, when shown in succession, impart an impression
324
+ of motion, together with accompanying sounds, if any. These goods are downloaded
325
+ to a device with access that expires after a stated period of time. These
326
+ goods include motion pictures, music videos, animations, news and entertainment
327
+ programs, and live events, but do not include video greeting cards or video
328
+ or electronic games.","name":"Digital Audio Visual Works - downloaded - non
329
+ subscription - with limited rights","product_tax_code":"55111516A0020"},{"description":"A
330
+ series of related images which, when shown in succession, impart an impression
331
+ of motion, together with accompanying sounds, if any. These goods are downloaded
332
+ to a device with permanent access granted. These goods include motion pictures,
333
+ music videos, animations, news and entertainment programs, and live events,
334
+ but do not include video greeting cards or video or electronic games.","name":"Digital
335
+ Audio Visual Works - downloaded - non subscription - with permanent rights","product_tax_code":"55111516A0010"},{"description":"A
336
+ series of related images which, when shown in succession, impart an impression
337
+ of motion, together with accompanying sounds, if any. These goods are streamed
338
+ to a device with access that expires after a stated period of time. These
339
+ goods include motion pictures, music videos, animations, news and entertainment
340
+ programs, and live events, but do not include video greeting cards or video
341
+ or electronic games.","name":"Digital Audio Visual Works - streamed - non
342
+ subscription - with limited rights","product_tax_code":"55111516A0030"},{"description":"A
343
+ series of related images which, when shown in succession, impart an impression
344
+ of motion, together with accompanying sounds, if any. These goods are streamed
345
+ to a device with access that is conditioned upon continued subscription payment. These
346
+ goods include motion pictures, music videos, animations, news and entertainment
347
+ programs, and live events, but do not include video greeting cards or video
348
+ or electronic games.","name":"Digital Audio Visual Works - streamed - subscription
349
+ - with conditional rights","product_tax_code":"55111516A0040"},{"description":"A
350
+ series of related images which, when shown in succession, impart an impression
351
+ of motion, together with accompanying sounds, if any. These goods are streamed
352
+ and/or downloaded to a device with access that is conditioned upon continued
353
+ subscription payment. These goods include motion pictures, music videos,
354
+ animations, news and entertainment programs, and live events, but do not include
355
+ video greeting cards or video or electronic games.","name":"Digital Audio
356
+ Visual Works - bundle - downloaded and streamed - subscription - with conditional
357
+ rights","product_tax_code":"55111516A0310"},{"description":"Works that result
358
+ from the fixation of a series of musical, spoken, or other sounds that are
359
+ transferred electronically. These goods are streamed to a device with access
360
+ that is conditioned upon continued subscription payment. These goods include
361
+ prerecorded or live music, prerecorded or live readings of books or other
362
+ written materials, prerecorded or live speeches, ringtones, or other sound
363
+ recordings, but not including audio greeting cards.","name":"Digital Audio
364
+ Works - streamed - subscription - with conditional rights","product_tax_code":"55111512A0040"},{"description":"Works
365
+ that result from the fixation of a series of musical, spoken, or other sounds
366
+ that are transferred electronically. These goods are streamed to a device
367
+ with access that expires after a stated period of time. These goods include
368
+ prerecorded or live music, prerecorded or live readings of books or other
369
+ written materials, prerecorded or live speeches, ringtones, or other sound
370
+ recordings, but not including audio greeting cards.","name":"Digital Audio
371
+ Works - streamed - non subscription - with limited rights","product_tax_code":"55111512A0030"},{"description":"Works
372
+ that result from the fixation of a series of musical, spoken, or other sounds
373
+ that are transferred electronically. These goods are downloaded to a device
374
+ with permanent access granted. These goods include prerecorded or live music,
375
+ prerecorded or live readings of books or other written materials, prerecorded
376
+ or live speeches, ringtones, or other sound recordings, but not including
377
+ audio greeting cards.","name":"Digital Audio Works - downloaded - non subscription
378
+ - with permanent rights","product_tax_code":"55111512A0010"},{"description":"Works
379
+ that result from the fixation of a series of musical, spoken, or other sounds
380
+ that are transferred electronically. These goods are downloaded to a device
381
+ with access that expires after a stated period of time. These goods include
382
+ prerecorded or live music, prerecorded or live readings of books or other
383
+ written materials, prerecorded or live speeches, ringtones, or other sound
384
+ recordings, but not including audio greeting cards.","name":"Digital Audio
385
+ Works - downloaded - non subscription - with limited rights","product_tax_code":"55111512A0020"},{"description":"A
386
+ digital version of a traditional newspaper published at regular intervals
387
+ with the entire publication or individual articles viewable (but not downloadable)
388
+ on a device with access that is conditioned upon continued subscription payment.","name":"Digital
389
+ Newspapers - viewable only - subscription - with conditional rights","product_tax_code":"55111507A0060"},{"description":"A
390
+ digital version of a traditional newspaper published at regular intervals
391
+ with the entire publication or individual articles viewable (but not downloadable)
392
+ on a device with permanent access granted. The publication is accessed without
393
+ a subscription.","name":"Digital Newspapers - viewable only - non subscription
394
+ - with permanent rights","product_tax_code":"55111507A0040"},{"description":"A
395
+ digital version of a traditional newspaper published at regular intervals
396
+ with the entire publication or individual articles viewable (but not downloadable)
397
+ on a device with access that expires after a stated period of time. The publication
398
+ is accessed without a subscription.","name":"Digital Newspapers - viewable
399
+ only - non subscription - with limited rights","product_tax_code":"55111507A0030"},{"description":"A
400
+ digital version of a traditional newspaper published at regular intervals. The
401
+ publication is accessed via a subscription which also entitles the purchaser
402
+ to physical copies of the media.","name":"Digital Newspapers - subscription
403
+ tangible and digital","product_tax_code":"55111507A0070"},{"description":"A
404
+ digital version of a traditional newspaper published at regular intervals
405
+ with the entire publication or individual articles downloaded to a device
406
+ with access that is conditioned upon continued subscription payment.","name":"Digital
407
+ Newspapers - downloadable - subscription - with conditional rights","product_tax_code":"55111507A0050"},{"description":"A
408
+ digital version of a traditional newspaper published at regular intervals
409
+ with the entire publication or individual articles downloaded to a device
410
+ with permanent access granted. The publication is accessed without a subscription.","name":"Digital
411
+ Newspapers - downloadable - non subscription - with permanent rights","product_tax_code":"55111507A0010"},{"description":"A
412
+ digital version of a traditional newspaper published at regular intervals
413
+ with the entire publication or individual articles downloaded to a device
414
+ with access that expires after a stated period of time. The publication is
415
+ accessed without a subscription.","name":"Digital Newspapers - downloadable
416
+ - non subscription - with limited rights","product_tax_code":"55111507A0020"},{"description":"A
417
+ digital version of a traditional periodical published at regular intervals
418
+ with the entire publication or individual articles viewable (but not downloadable)
419
+ on a device with access that is conditioned upon continued subscription payment.","name":"Digital
420
+ Magazines/Periodicals - viewable only - subscription - with conditional rights","product_tax_code":"55111506A0060"},{"description":"A
421
+ digital version of a traditional periodical published at regular intervals
422
+ with the entire publication or individual articles viewable (but not downloadable)
423
+ on a device with permanent access granted. The publication is accessed without
424
+ a subscription.","name":"Digital Magazines/Periodicals - viewable only - non
425
+ subscription - with permanent rights","product_tax_code":"55111506A0040"},{"description":"A
426
+ digital version of a traditional periodical published at regular intervals
427
+ with the entire publication or individual articles viewable (but not downloadable)
428
+ on a device with access that expires after a stated period of time. The publication
429
+ is accessed without a subscription.","name":"Digital Magazines/Periodicals
430
+ - viewable only - non subscription - with limited rights","product_tax_code":"55111506A0030"},{"description":"A
431
+ digital version of a traditional magazine published at regular intervals. The
432
+ publication is accessed via a subscription which also entitles the purchaser
433
+ to physical copies of the media.","name":"Digital Magazines/Periodicals -
434
+ subscription tangible and digital","product_tax_code":"55111506A0070"},{"description":"A
435
+ digital version of a traditional periodical published at regular intervals
436
+ with the entire publication or individual articles downloaded to a device
437
+ with access that is conditioned upon continued subscription payment.","name":"Digital
438
+ Magazines/Periodicals - downloadable - subscription - with conditional rights","product_tax_code":"55111506A0050"},{"description":"A
439
+ digital version of a traditional periodical published at regular intervals
440
+ with the entire publication or individual articles downloaded to a device
441
+ with permanent access granted. The publication is accessed without a subscription.","name":"Digital
442
+ Magazines/Periodicals - downloadable - non subscription - with permanent rights","product_tax_code":"55111506A0010"},{"description":"A
443
+ digital version of a traditional periodical published at regular intervals
444
+ with the entire publication or individual articles downloaded to a device
445
+ with access that expires after a stated period of time. The publication is
446
+ accessed without a subscription.","name":"Digital Magazines/Periodicals -
447
+ downloadable - non subscription - with limited rights","product_tax_code":"55111506A0020"},{"description":"Works
448
+ that are generally recognized in the ordinary and usual sense as books and
449
+ are transferred electronically. These goods are viewable (but not downloadable)
450
+ on a device with access that is conditioned upon continued subscription payment. These
451
+ goods include novels, autobiographies, encyclopedias, dictionaries, repair
452
+ manuals, phone directories, business directories, zip code directories, cookbooks,
453
+ etc.","name":"Digital Books - viewable only - subscription - with conditional
454
+ rights","product_tax_code":"55111505A0060"},{"description":"Works that are
455
+ generally recognized in the ordinary and usual sense as books and are transferred
456
+ electronically. These goods are downloaded to a device with access that is
457
+ conditioned upon continued subscription payment. These goods include novels,
458
+ autobiographies, encyclopedias, dictionaries, repair manuals, phone directories,
459
+ business directories, zip code directories, cookbooks, etc.","name":"Digital
460
+ Books - downloaded - subscription - with conditional rights","product_tax_code":"55111505A0050"},{"description":"Works
461
+ that are generally recognized in the ordinary and usual sense as books and
462
+ are transferred electronically. These goods are downloaded to a device with
463
+ permanent access granted. These goods include novels, autobiographies, encyclopedias,
464
+ dictionaries, repair manuals, phone directories, business directories, zip
465
+ code directories, cookbooks, etc.","name":"Digital Books - downloaded - non
466
+ subscription - with permanent rights","product_tax_code":"55111505A0010"},{"description":"Works
467
+ that are generally recognized in the ordinary and usual sense as books and
468
+ are transferred electronically. These goods are downloaded to a device with
469
+ access that expires after a stated period of time. These goods include novels,
470
+ autobiographies, encyclopedias, dictionaries, repair manuals, phone directories,
471
+ business directories, zip code directories, cookbooks, etc.","name":"Digital
472
+ Books - downloaded - non subscription - with limited rights","product_tax_code":"55111505A0020"},{"description":"The
473
+ final art used for actual reproduction by photomechanical or other processes
474
+ or for display purposes, but does not include website or home page design,
475
+ and that is transferred electronically. These goods are downloaded to a device
476
+ with access that is conditioned upon continued subscription payment. These
477
+ goods include drawings, paintings, designs, photographs, lettering, paste-ups,
478
+ mechanicals, assemblies, charts, graphs, illustrative materials, etc.","name":"Digital
479
+ Finished Artwork - downloaded - subscription - with conditional rights","product_tax_code":"82141502A0050"},{"description":"The
480
+ final art used for actual reproduction by photomechanical or other processes
481
+ or for display purposes, but does not include website or home page design,
482
+ and that is transferred electronically. These goods are downloaded to a device
483
+ with permanent access granted. These goods include drawings, paintings, designs,
484
+ photographs, lettering, paste-ups, mechanicals, assemblies, charts, graphs,
485
+ illustrative materials, etc.","name":"Digital Finished Artwork - downloaded
486
+ - non subscription - with permanent rights","product_tax_code":"82141502A0010"},{"description":"The
487
+ final art used for actual reproduction by photomechanical or other processes
488
+ or for display purposes, but does not include website or home page design,
489
+ and that is transferred electronically. These goods are downloaded to a device
490
+ with access that expires after a stated period of time. These goods include
491
+ drawings, paintings, designs, photographs, lettering, paste-ups, mechanicals,
492
+ assemblies, charts, graphs, illustrative materials, etc.","name":"Digital
493
+ Finished Artwork - downloaded - non subscription - with limited rights","product_tax_code":"82141502A0020"},{"description":"Individual
494
+ digital news articles, newsletters, and other stand-alone documents. These
495
+ goods are viewable (but not downloadable) on a device with access that is
496
+ conditioned upon continued subscription payment.","name":"Digital other news
497
+ or documents - viewable only - subscription - with conditional rights","product_tax_code":"82111900A0002"},{"description":"Individual
498
+ digital news articles, newsletters, and other stand-alone documents. These
499
+ goods are viewable (but not downloadable) on a device with permanent access
500
+ granted.","name":"Digital other news or documents - viewable only - non subscription
501
+ - with permanent rights","product_tax_code":"82111900A0005"},{"description":"Individual
502
+ digital news articles, newsletters, and other stand-alone documents. These
503
+ goods are viewable (but not downloadable) on a device with access that expires
504
+ after a stated period of time.","name":"Digital other news or documents -
505
+ viewable only - non subscription - with limited rights","product_tax_code":"82111900A0006"},{"description":"Individual
506
+ digital news articles, newsletters, and other stand-alone documents. These
507
+ goods are downloaded to a device with access that is conditioned upon continued
508
+ subscription payment.","name":"Digital other news or documents - downloadable
509
+ - subscription - with conditional rights","product_tax_code":"82111900A0001"},{"description":"Individual
510
+ digital news articles, newsletters, and other stand-alone documents. These
511
+ goods are downloaded to a device with permanent access granted. These publications
512
+ are accessed without a subscription.","name":"Digital other news or documents
513
+ - downloadable - non subscription - with permanent rights","product_tax_code":"82111900A0003"},{"description":"Individual
514
+ digital news articles, newsletters, and other stand-alone documents. These
515
+ goods are downloaded to a device with access that expires after a stated period
516
+ of time.","name":"Digital other news or documents - downloadable - non subscription
517
+ - with limited rights","product_tax_code":"82111900A0004"},{"description":"Works
518
+ that are required as part of a formal academic education program and are transferred
519
+ electronically. These goods are downloaded to a device with permanent access
520
+ granted.","name":"Digital School Textbooks - downloaded - non subscription
521
+ - with permanent rights","product_tax_code":"55111513A0010"},{"description":"Works
522
+ that are required as part of a formal academic education program and are transferred
523
+ electronically. These goods are downloaded to a device with access that expires
524
+ after a stated period of time.","name":"Digital School Textbooks - downloaded
525
+ - non subscription - with limited rights","product_tax_code":"55111513A0020"},{"description":"An
526
+ electronic greeting \"card\" typically sent via email that contains only static
527
+ images or text, rather than an audio visual or audio only experience.","name":"Digital
528
+ Greeting Cards - Static text and/or images only","product_tax_code":"14111605A0003"},{"description":"An
529
+ electronic greeting \"card\" typically sent via email that contains a series
530
+ of related images which, when shown in succession, impart an impression of
531
+ motion, together with accompanying sounds, if any.","name":"Digital Greeting
532
+ Cards - Audio Visual","product_tax_code":"14111605A0001"},{"description":"An
533
+ electronic greeting \"card\" typically sent via email that contains an audio
534
+ only message.","name":"Digital Greeting Cards - Audio Only","product_tax_code":"14111605A0002"},{"description":"Digital
535
+ images that are downloaded to a device with permanent access granted.","name":"Digital
536
+ Photographs/Images - downloaded - non subscription - with permanent rights","product_tax_code":"60121011A0001"},{"description":"Video
537
+ or electronic games in the common sense are transferred electronically. These
538
+ goods are streamed to a device with access that is conditioned upon continued
539
+ subscription payment.","name":"Video Games - streamed - subscription - with
540
+ conditional rights","product_tax_code":"60141104A0040"},{"description":"Video
541
+ or electronic games in the common sense are transferred electronically. These
542
+ goods are streamed to a device with access that expires after a stated period
543
+ of time.","name":"Video Games - streamed - non subscription - with limited
544
+ rights","product_tax_code":"60141104A0030"},{"description":"Video or electronic
545
+ games in the common sense are transferred electronically. These goods are
546
+ downloaded to a device with access that is conditioned upon continued subscription
547
+ payment.","name":"Video Games - downloaded - subscription - with conditional
548
+ rights","product_tax_code":"60141104A0050"},{"description":"Video or electronic
549
+ games in the common sense that are transferred electronically. These goods
550
+ are downloaded to a device with permanent access granted.","name":"Video Games
551
+ - downloaded - non subscription - with permanent rights","product_tax_code":"60141104A0010"},{"description":"Video
552
+ or electronic games in the common sense are transferred electronically. These
553
+ goods are downloaded to a device with access that expires after a stated period
554
+ of time.","name":"Video Games - downloaded - non subscription - with limited
555
+ rights","product_tax_code":"60141104A0020"},{"description":"The conceptualize,
556
+ design, program or maintain a website. The code is unique to a particular
557
+ client''s website.","name":"Web Site Design","product_tax_code":"81112103A0000"},{"description":"The
558
+ process of renting or buying space to house a website on the World Wide Web.
559
+ Website content such as HTML, CSS, and images has to be housed on a server
560
+ to be viewable online.","name":"Web Hosting Services","product_tax_code":"81112105A0000"},{"description":"A
561
+ charge separately stated from the sale of the product itself that entitles
562
+ the purchaser to future repair and labor services to return the defective
563
+ item of tangible personal property to its original state. The warranty contract
564
+ is optional to the purchaser. Motor vehicle warranties are excluded.","name":"Warranty
565
+ - Optional","product_tax_code":"81111818A0000"},{"description":"A charge separately
566
+ stated from the sale of the product itself that entitles the purchaser to
567
+ future repair and labor services to return the defective item of tangible
568
+ personal property to its original state. The warranty contract is mandatory
569
+ and is required to be purchased on conjunction with the purchased tangible
570
+ personal property. Motor vehicle warranties are excluded.","name":"Warranty
571
+ - Mandatory","product_tax_code":"81111818A0001"},{"description":"Personal
572
+ or small group teaching, designed to help people who need extra help with
573
+ their studies","name":"Tutoring","product_tax_code":"86132001A0000"},{"description":"Self
574
+ Study web based training, not instructor led. This does not include downloads
575
+ of video replays.","name":"Training Services - Self Study Web Based","product_tax_code":"86132000A0002"},{"description":"Live
576
+ training web based. This does not include video replays of the instruction
577
+ or course.","name":"Training Services - Live Virtual","product_tax_code":"86132201A0000"},{"description":"Charges
578
+ for installing, configuring, debugging, modifying, testing, or troubleshooting
579
+ computer hardware, networks, programs or software. Labor only charge.","name":"Technical
580
+ Support Services","product_tax_code":"81111811A0001"},{"description":"A charge
581
+ to preserve an animal''s body via mounting or stuffing, for the purpose of
582
+ display or study. The customer provide the animal. This a labor charge,
583
+ with any non-separately stated property transferred in performing the service
584
+ considered inconsequential.","name":"Taxidermy Services","product_tax_code":"82151508A0000"},{"description":"A
585
+ charge to have files or documents shredded either onsite or offsite.","name":"Shredding
586
+ Service","product_tax_code":"44101603A9007"},{"description":"A charge to repair
587
+ or restore footwear was broken, worn, damaged, defective, or malfunctioning.
588
+ This a labor charge, with any non-separately stated property transferred in
589
+ performing the service considered inconsequential. Note: This product tax
590
+ code will partially apply tax in CA, MI, IL.","name":"Shoe Repair","product_tax_code":"53111600A9007"},{"description":"A
591
+ charge for the printing, imprinting, lithographing, mimeographing, photocopying,
592
+ and similar reproductions of various articles including mailers, catalogs,
593
+ letterhead, envelopes, business cards, presentation folders, forms, signage,
594
+ etc. The end result is the transfer of tangible personal property to the
595
+ customer.","name":"Printing","product_tax_code":"82121500A0000"},{"description":"Service
596
+ processing payroll checks and tracking payroll data; including printing employees’
597
+ payroll checks, pay statements, management reports, tracking payroll taxes,
598
+ preparing tax returns and producing W-2’s for distribution.","name":"Payroll
599
+ Services","product_tax_code":"87210202A0000"},{"description":"A charge to
600
+ repair or restore to operating condition a motor vehicle that was broken,
601
+ worn, damaged, defective, or malfunctioning. This a labor charge, with any
602
+ non-separately stated property transferred in performing the service considered
603
+ inconsequential.","name":"Motor Vehicle Repair","product_tax_code":"25100000A9007"},{"description":"A
604
+ charge to make customer provided meat suitable for human consumption, typically
605
+ referred to a butcher or slaughter services.","name":"Meat Processing","product_tax_code":"42447000A0000"},{"description":"A
606
+ charge to repair or restore to operating condition a machine that was broken,
607
+ worn, damaged, defective, or malfunctioning. This a labor charge, with any
608
+ non-separately stated property transferred in performing the service considered
609
+ inconsequential.","name":"Machine Repair","product_tax_code":"23019007A0000"},{"description":"A
610
+ charge to provide laundry services to linens and the like. This charge is
611
+ not for clothing items. The business customer is the owner of the items being
612
+ cleaned.","name":"Linen Services - Laundry only - items other than clothing","product_tax_code":"91111502A1601"},{"description":"A
613
+ charge to provide laundry services to clothing. The business customer is the
614
+ owner of the items being cleaned.","name":"Linen Services - Laundry only","product_tax_code":"91111502A1600"},{"description":"A
615
+ charge to repair or restore jewelry that was broken, worn, damaged, defective,
616
+ or malfunctioning. This a labor charge, with any non-separately stated property
617
+ transferred in performing the service considered inconsequential.","name":"Jewelry
618
+ Repair","product_tax_code":"54119007A0000"},{"description":"A charge for the
619
+ wrapping of articles in a box or bag with paper and other decorative additions. The
620
+ wrapping not linked the purchased of the article(s) and is performed by a
621
+ party other vendor of the article(s).","name":"Gift Wrapping - separate from
622
+ purchase of article","product_tax_code":"14111601A9007"},{"description":"A
623
+ charge for the wrapping of articles in a box or bag with paper and other decorative
624
+ additions. The charge is separately stated from the article.","name":"Gift
625
+ Wrapping - in conjunction with purchase of article","product_tax_code":"14111601A0001"},{"description":"A
626
+ charge to perform an alteration on a item of clothing by a service provider
627
+ other than vendor of the article. The alteration is not linked to the clothing
628
+ purchase. Alterations could include hemming of a dress, shortening of pants,
629
+ adjusting the waistline of a garment, etc.","name":"Garment Alterations- separate
630
+ from purchase of garment","product_tax_code":"81149000A0000"},{"description":"A
631
+ charge to perform an alteration on a item of clothing by the vendor of the
632
+ article. The alteration is separately stated from the clothing, but contracted
633
+ for at the time of the clothing purchase. Alterations could include hemming
634
+ of a dress, shortening of pants, adjusting the waistline of a garment, etc.","name":"Garment
635
+ Alterations- in conjunction with purchase of garment","product_tax_code":"81149000A0001"},{"description":"A
636
+ separately stated labor charge to cover a piece of furniture previously owned
637
+ by the customer with new fabric coverings. Any materials transferred as part
638
+ of the service are separately stated.","name":"Furniture Reupholstering","product_tax_code":"72153614A0000"},{"description":"A
639
+ charge to create a finished good from materials supplied by the customer. This
640
+ is a labor only charge to transform a customer''s existing property.","name":"Fabrication","product_tax_code":"23839000A0000"},{"description":"E-file
641
+ services for tax returns","name":"Electronic Filing Service","product_tax_code":"72910000A0000"},{"description":"Private
642
+ schools, not college or university","name":"Educational Services","product_tax_code":"86132209A0000"},{"description":"A
643
+ charge to a non-commercial customer for the cleaning or renovating items other
644
+ than clothing by immersion and agitation, spraying, vaporization, or immersion
645
+ only, in a volatile, commercially moisture-free solvent or by the use of a
646
+ volatile or inflammable product. This does not include the use of a self-service
647
+ coin (or credit card) operated cleaning machine.","name":"Dry Cleaning - items
648
+ other than clothing","product_tax_code":"91111503A1601"},{"description":"A
649
+ charge to repair or restore to operating condition computer hardware that
650
+ was broken, worn, damaged, defective, or malfunctioning. This a labor charge,
651
+ with any non-separately stated property transferred in performing the service
652
+ considered inconsequential.","name":"Computer Repair","product_tax_code":"81112300A0000"},{"description":"A
653
+ charge to clean, wash or wax a motor vehicle, other than a self-service coin
654
+ (or credit card) operated washing station. This a labor charge, with any
655
+ non-separately stated property transferred in performing the service considered
656
+ inconsequential.","name":"Car Washing","product_tax_code":"81119200A0000"},{"description":"A
657
+ charge to assemble goods for a purchaser who will later sell the assembled
658
+ goods to end consumers.","name":"Assembly - prior to final purchase of article","product_tax_code":"93121706A0001"},{"description":"A
659
+ charge separately stated from the sale of the product itself to bring the
660
+ article to its finished state and in the condition specified by the buyer.","name":"Assembly
661
+ - in conjunction with final purchase of article","product_tax_code":"93121706A0000"},{"description":"A
662
+ charge to repair or restore to operating condition an appliance (dishwasher,
663
+ washing machine, refrigerator, etc.) that was broken, worn, damaged, defective,
664
+ or malfunctioning. This a labor charge, with any non-separately stated property
665
+ transferred in performing the service considered inconsequential.","name":"Appliance
666
+ Repair","product_tax_code":"52143609A0000"},{"description":"A charge to repair
667
+ or restore to operating condition an aircraft that was broken, worn, damaged,
668
+ defective, or malfunctioning. This a labor charge, with any non-separately
669
+ stated property transferred in performing the service considered inconsequential.
670
+ Commercial aircraft is excluded.","name":"Aircraft Repair","product_tax_code":"78181800A0000"},{"description":"A
671
+ charge for the printing, imprinting, or lithographing on any article supplied
672
+ by the customer. The customer owns the article throughout the process. This
673
+ a labor charge, with any non-separately stated property transferred in performing
674
+ the service considered inconsequential.","name":"Printing - customer supplied
675
+ articles","product_tax_code":"19009"},{"description":"A charge to a non-commercial
676
+ customer for the cleaning or renovating clothing by immersion and agitation,
677
+ spraying, vaporization, or immersion only, in a volatile, commercially moisture-free
678
+ solvent or by the use of a volatile or inflammable product. This does not
679
+ include the use of a self-service coin (or credit card) operated cleaning
680
+ machine.","name":"Dry Cleaning Services","product_tax_code":"19006"},{"description":"A
681
+ charge to repair or restore tangible personal property that was broken, worn,
682
+ damaged, defective, or malfunctioning. This a labor charge, with any non-separately
683
+ stated property transferred in performing the service considered inconsequential.","name":"Repair
684
+ Services","product_tax_code":"19007"},{"description":"Food for household pets
685
+ that is consumed for nutritional value. This code is not intended for food
686
+ related to working farm animals or animals raised for meat or milk production.
687
+ This code is intended for retail sales made directly to end consumers.","name":"OTC
688
+ Pet Food","product_tax_code":"10122100A0000"},{"description":"Food bundle
689
+ or basket containing food staples combined with candy, with the candy comprising
690
+ between 25% and 49% of the overall value of the bundle (food comprises 51
691
+ to 75%). Note that any candy containing flour should be considered as food
692
+ (and not candy) when determining bundle percentages.","name":"Food/Candy Bundle
693
+ - with Candy 25% to 49%","product_tax_code":"50193400A0008"},{"description":"Food
694
+ bundle or basket containing food staples combined with candy, with the candy
695
+ comprising between 11% and 24% of the overall value of the bundle (food comprises
696
+ 76% to 89%). Note that any candy containing flour should be considered as
697
+ food (and not candy) when determining bundle percentages.","name":"Food/Candy
698
+ Bundle - with Candy 11% to 24%","product_tax_code":"50193400A0009"},{"description":"Food
699
+ bundle or basket containing food staples combined with candy, with the candy
700
+ comprising 10% or less of the overall value of the bundle (food comprises
701
+ 90% or more). Note that any candy containing flour should be considered as
702
+ food (and not candy) when determining bundle percentages.","name":"Food/Candy
703
+ Bundle - with Candy 10% or less","product_tax_code":"50193400A0010"},{"description":"Food
704
+ bundle or basket containing food staples combined with candy, with the candy
705
+ comprising 50% or more of the overall value of the bundle (food comprises
706
+ 50% or less). Note that any candy containing flour should be considered as
707
+ food (and not candy) when determining bundle percentages.","name":"Food/Candy
708
+ Bundle - with Candy 50% or more","product_tax_code":"50193400A0007"},{"description":"Male
709
+ or female condoms and vaginal sponges used to prevent pregnancy and/or exposure
710
+ to STDs, containing a spermicidal lubricant as indicated by a \"drug facts\"
711
+ panel or a statement of active ingredients, sold under prescription order
712
+ of a licensed professional.","name":"Condoms with Spermicide with Prescription","product_tax_code":"53131622A0004"},{"description":"Over-the-Counter
713
+ emergency contraceptive pills act to prevent pregnancy after intercourse.
714
+ The contraceptive contains a hormone that prevents ovulation, fertilization,
715
+ or implantation of an embryo.","name":"Birth Control - Over-the-Counter Oral
716
+ Contraceptives","product_tax_code":"51350000A0001"},{"description":"An oral
717
+ medication containing hormones effective in altering the menstrual cycle to
718
+ eliminate ovulation and prevent pregnancy, available only under prescription
719
+ order of a licensed professional. Other than preventing pregnancy, hormonal
720
+ birth control can also be used to treat various conditions, such as Polycystic
721
+ Ovary Syndrome, Endometriosis, Primary Ovarian Insufficiency, etc.","name":"Birth
722
+ Control - Prescription Oral Contraceptives","product_tax_code":"51350000A0000"},{"description":"Over-the-Counter
723
+ emergency contraceptive pills act to prevent pregnancy after intercourse,
724
+ sold under prescription order of a licensed professional. The contraceptive
725
+ contains a hormone that prevents ovulation, fertilization, or implantation
726
+ of an embryo.","name":"Birth Control - Over-the-Counter Oral Contraceptives
727
+ with Prescription","product_tax_code":"51350000A0002"},{"description":"Barrier
728
+ based prescription only birth control methods, including the diaphragm and
729
+ cervical cap that prevent the joining of the sperm and egg, available only
730
+ under prescription order of a licensed professional.","name":"Birth Control
731
+ - Prescription non-Oral Contraceptives - Barriers","product_tax_code":"42143103A0000"},{"description":"Hormonal
732
+ based birth control methods other than the oral pill, including intrauterine
733
+ devices, injections, skin implants, transdermal patches, and vaginal rings
734
+ that release a continuous dose of hormones to eliminate ovulation and prevent
735
+ pregnancy, available only under prescription order of a licensed professional.","name":"Birth
736
+ Control - Prescription non-Oral Contraceptives - Hormonal","product_tax_code":"51350000A0003"},{"description":"Male
737
+ or female condoms and vaginal sponges used to prevent pregnancy and/or exposure
738
+ to STDs, sold under prescription order of a licensed professional.","name":"Condoms
739
+ with Prescription","product_tax_code":"53131622A0003"},{"description":"Feminine
740
+ hygiene product designed to absorb the menstrual flow. This code is intended
741
+ for sales directly to end consumers that are NOT healthcare providers.","name":"Tampons,
742
+ menstrual cups, pads, liners","product_tax_code":"53131615A0000"},{"description":"Infant
743
+ washable/reusable cloth diapers.","name":"Clothing - Cloth Diapers","product_tax_code":"53102305A0001"},{"description":"Clothing
744
+ - Diaper liners","name":"Clothing - Diaper liners","product_tax_code":"53102308A0000"},{"description":"Clothing
745
+ - Adult diapers","name":"Clothing - Adult diapers","product_tax_code":"53102306A0000"},{"description":"Clothing
746
+ - Infant diapers","name":"Clothing - Infant diapers","product_tax_code":"53102305A0000"},{"description":"Food
747
+ and Beverage - Candy containing flour as an ingredient","name":"Food and Beverage
748
+ - Candy containing flour as an ingredient","product_tax_code":"50161800A0001"},{"description":"Food
749
+ and Beverage - Food and Food Ingredients for Home Consumption","name":"Food
750
+ and Beverage - Food and Food Ingredients for Home Consumption","product_tax_code":"50000000A0000"},{"description":"Clothing
751
+ - Zippers","name":"Clothing - Zippers","product_tax_code":"53141503A0000"},{"description":"Clothing
752
+ - Gorgets","name":"Clothing - Gorgets","product_tax_code":"53102519A0000"},{"description":"Clothing
753
+ - Shoulder boards or epaulettes","name":"Clothing - Shoulder boards or epaulettes","product_tax_code":"53102520A0000"},{"description":"Yarn
754
+ - For use other than fabricating/repairing clothing","name":"Yarn - For use
755
+ other than fabricating/repairing clothing","product_tax_code":"11151700A0001"},{"description":"Clothing
756
+ - Snaps","name":"Clothing - Snaps","product_tax_code":"53141506A0000"},{"description":"Clothing
757
+ - Clasps","name":"Clothing - Clasps","product_tax_code":"53141507A0000"},{"description":"Clothing
758
+ - Buttons","name":"Clothing - Buttons","product_tax_code":"53141505A0000"},{"description":"Clothing
759
+ - Clothing - Fabric dye","name":"Clothing - Fabric dye","product_tax_code":"60105810A0000"},{"description":"Clothing
760
+ - Fabric for use in clothing","name":"Clothing - Fabric for use in clothing","product_tax_code":"11160000A0000"},{"description":"Clothing
761
+ - Clothing - Yarn","name":"Clothing - Yarn","product_tax_code":"11151700A0000"},{"description":"A
762
+ lump sum charge where both the downloaded digital products and the service
763
+ components each are greater than 10% of the bundle.","name":"Digital Products
764
+ (> 10%) / General Services (> 10%) Bundle","product_tax_code":"55111500A5000"},{"description":"Services
765
+ provided by a licensed or registered professional in the medical field. Examples:
766
+ Doctor, dentist, nurse, optometrist, etc.","name":"Medical Professional Services
767
+ - Physician, Dentist, and similar","product_tax_code":"62139900A0000"},{"description":"The
768
+ puncturing or penetration of the skin of a person and the insertion of jewelry
769
+ or other adornment into the opening.","name":"Body Piercing","product_tax_code":"72990190A0000"},{"description":"Cosmetic
770
+ beauty treatment for the fingernails and toenails. Consists of filing, cutting
771
+ and shaping and the application of polish.","name":"Manicure Services","product_tax_code":"72310104A0000"},{"description":"Performing
772
+ tests and research for a particular client in connection with the development
773
+ of particular products, property, goods or services that the client sells
774
+ to consumers in the regular course of business.","name":"Marketing Services","product_tax_code":"87420300A0000"},{"description":"Performing
775
+ surveying and mapping services of the surface of the earth, including the
776
+ sea floor. These services may include surveying and mapping of areas above
777
+ or below the surface of the earth, such as the creation of view easements
778
+ or segregating rights in parcels of land by creating underground utility easements.","name":"Property
779
+ Surveying Services","product_tax_code":"87130000A0000"},{"description":"Providing
780
+ a systematic inquiry, examination, or analysis of people, events or documents,
781
+ to determine the facts of a given situation. The evaluation is submitted in
782
+ the form of a report or provided as a testimony in legal proceedings. Techniques
783
+ such as surveillance, background checks, computer searches, fingerprinting,
784
+ lie detector services, and interviews may be used to gather the information.","name":"Private
785
+ Investigator Services","product_tax_code":"73810204A0000"},{"description":"The
786
+ provision of expertise or strategic advice that is presented for consideration
787
+ and decision-making.","name":"Consulting Services","product_tax_code":"87480000A0000"},{"description":"Services
788
+ relating to advocating for the passage or defeat of legislation to members
789
+ or staff of the government.","name":"Lobbying Services","product_tax_code":"87439901A0000"},{"description":"Preparation
790
+ of materials, written or otherwise, that are designed to influence the general
791
+ public or other groups by promoting the interests of a service recipient.","name":"Public
792
+ Relations","product_tax_code":"87430000A0000"},{"description":"Services related
793
+ to the art and science of designing and building structures for human habitation
794
+ or use and includes planning, providing preliminary studies, designs, specifications,
795
+ working drawings and providing for general administration of construction
796
+ contracts.","name":"Architectural Services","product_tax_code":"87120000A0000"},{"description":"Services
797
+ provided by a profession trained to apply physical laws and principles of
798
+ engineering in the design, development, and utilization of machines, materials,
799
+ instruments, structures, processes, and systems. The services involve any
800
+ of the following activities: provision of advice, preparation of feasibility
801
+ studies, preparation of preliminary and final plans and designs, provision
802
+ of technical services during the construction or installation phase, inspection
803
+ and evaluation of engineering projects, and related services.","name":"Engineering
804
+ Services","product_tax_code":"87110000A0000"},{"description":"Services that
805
+ provide non-medical care and supervision for infant to school-age children
806
+ or senior citizens.","name":"Childcare Services / Adultcare","product_tax_code":"83510000A0000"},{"description":"Services
807
+ provided by a facility for overnight care of an animal not related to veterinary
808
+ care.","name":"Pet Services - Boarding","product_tax_code":"81291000A0001"},{"description":"Services
809
+ relating to or concerned with the law. Such services include, but are not
810
+ limited to, representation by an attorney (or other person, when permitted)
811
+ in an administrative or legal proceeding, legal drafting, paralegal services,
812
+ legal research services, arbitration, mediation, and court reporting services.","name":"Legal
813
+ Services","product_tax_code":"81110000A0000"},{"description":"Medical procedure
814
+ performed on an individual that is directed at improving the individual''s
815
+ appearance and that does not meaningfully promote the proper function of the
816
+ body or prevent or treat illness or disease.","name":"Cosmetic Medical Procedure","product_tax_code":"80110517A0000"},{"description":"Alarm
817
+ monitoring involves people using computers, software, and telecommunications
818
+ to monitor homes and businesses for break-ins, fires, and other unexpected
819
+ events.","name":"Security - Alarm Services","product_tax_code":"73829901A0000"},{"description":"Services
820
+ related to protecting persons or their property, preventing the theft of goods,
821
+ merchandise, or money. Responding to alarm signal device, burglar alarm,
822
+ television camera, still camera, or a mechanical or electronic device installed
823
+ or used to prevent or detect burglary, theft, shoplifting, pilferage, losses,
824
+ or other security measures. Providing management and control of crowds for
825
+ safety and protection.","name":"Security - Guard Services","product_tax_code":"73810105A0000"},{"description":"Transporting
826
+ under armed private security guard from one place to another any currency,
827
+ jewels, stocks, bonds, paintings, or other valuables of any kind in a specially
828
+ equipped motor vehicle that offers a high degree of security.","name":"Armored
829
+ Car Services","product_tax_code":"73810101A0000"},{"description":"Services
830
+ related to providing personnel, on a temporary basis, to perform work or labor
831
+ under the supervision or control of another.","name":"Temporary Help Services","product_tax_code":"73630103A0000"},{"description":"Services
832
+ employment agencies provide are finding a job for a job-seeker and finding
833
+ an employee for an employer.","name":"Employment Services","product_tax_code":"73610000A0000"},{"description":"Services
834
+ to industrial, commercial or income-producing real property, such as as management,
835
+ electrical, plumbing, painting and carpentry, provided to income-producing
836
+ property.","name":"Building Management Services","product_tax_code":"73490000A0000"},{"description":"Services
837
+ which include, but are not limited to, editing, letter writing, proofreading,
838
+ resume writing, typing or word processing.  Not including court reporting
839
+ and stenographic services.","name":"Secretarial Services","product_tax_code":"73389903A0000"},{"description":"Services
840
+ that include typing, taking shorthand, and taking and transcribing dictation
841
+ for others for a consideration.","name":"Stenographic Services","product_tax_code":"73380200A0000"},{"description":"A
842
+ process that uses needles and colored ink to permanently put a mark or design
843
+ on a person’s skin. Also applying permanent make-up, such as eyelining and
844
+ other permanent colors to enhance the skin of the face, lips, eyelids, and
845
+ eyebrows.","name":"Tattooing Services","product_tax_code":"72990106A0000"},{"description":"A
846
+ variety of personal services typically with the purpose of improving health,
847
+ beauty and relaxation through treatments such as hair, massages and facials.","name":"Spa
848
+ Services","product_tax_code":"72990201A0000"},{"description":"Services where
849
+ the use of structured touch, include holding, applying pressure, positioning,
850
+ and mobilizing soft tissue of the body by manual technique. Note: This does
851
+ not include medical massage prescribed by a physician.","name":"Massage Services","product_tax_code":"72990200A0000"},{"description":"The
852
+ measurement, processing and communication of financial information about economic
853
+ entities including, but is not limited to, financial accounting, management
854
+ accounting, auditing, cost containment and auditing services, taxation and
855
+ accounting information systems; excluding general bookkeeping service.","name":"Accounting
856
+ Services","product_tax_code":"87210200A0000"},{"description":"The training
857
+ of an animal to obey certain commands.","name":"Pet Services - Obedience Training","product_tax_code":"81291000A0002"},{"description":"Credit
858
+ monitoring services are companies consumers pay to keep an eye on your credit
859
+ files. The services notifies one when they see activity in credit files, so
860
+ one can determine if that activity is a result of action one took or possibly
861
+ fraudulent","name":"Credit Monitoring Services","product_tax_code":"56145000A0000"},{"description":"Grooming
862
+ services for an animal such as haircuts, bathing, nail trimming, and flea
863
+ dips.","name":"Pet Services - Grooming","product_tax_code":"81291000A0000"},{"description":"Debt
864
+ collection is when a collection agency or company tries to collect past-due
865
+ debts from borrowers.","name":"Debt Collection Services","product_tax_code":"73229902A0000"},{"description":"A
866
+ service that arranges introductions, for a fee, for strangers seeking romantic
867
+ partners or friends. This excludes online dating services.","name":"Dating
868
+ Services","product_tax_code":"72990301A0000"},{"description":"A service that
869
+ allows merchants to accept credit cards as well as send credit card payment
870
+ details to the credit card network. It then forwards the payment authorization
871
+ back to the acquiring bank.","name":"Credit Card Processing Services","product_tax_code":"52232000A0000"},{"description":"Services
872
+ for artificial tanning and skin beautification.","name":"Tanning Services","product_tax_code":"72990105A0000"},{"description":"Credit
873
+ reporting agencies receive various types of information which can be included
874
+ in their offerings for customers.","name":"Credit Reporting Services","product_tax_code":"73230000A0000"},{"description":"Miscellaneous
875
+ personal services are generally services that affect the appearance or comfort
876
+ of people. This does not include haircutting/styling services","name":"Personal
877
+ Services","product_tax_code":"72990000A0000"},{"description":"The removal
878
+ of hair from the face or body using chemicals or heat energy.","name":"Electrolysis","product_tax_code":"72310102A0000"},{"description":"Services
879
+ provided to insurance companies providing insurance to consumers. Examples
880
+ are loss or damage appraisals, inspections, actuarial services, claims adjustment
881
+ or processing. Investigations as excluded from this definition.","name":"Insurance
882
+ Services","product_tax_code":"64110000A0000"},{"description":"An at-home infectious
883
+ disease test kit that can be sold without a prescription.","name":"Infectious
884
+ Disease Test - Over-the-Counter","product_tax_code":"41116205A0005"},{"description":"An
885
+ at-home infectious disease test kit that can only be sold with a prescription.","name":"Infectious
886
+ Disease Test - Prescription only","product_tax_code":"41116205A0004"},{"description":"Online
887
+ database information retrieval service (personal or individual)","name":"Online
888
+ database information retrieval service (personal or individual)","product_tax_code":"81111902A0001"},{"description":"Database
889
+ information retrieval","name":"Database information retrieval (personal or
890
+ individual)","product_tax_code":"81111901A0001"},{"description":"Services
891
+ provided by beauty shops and barber shops, including but not limited to haircutting,
892
+ hair coloring, shampooing, blow drying, permanents, hair extensions, hair
893
+ straightening, and hair restorations.","name":"Hairdressing Services","product_tax_code":"19008"},{"description":"Online
894
+ database information retrieval service","name":"Online database information
895
+ retrieval service","product_tax_code":"81111902A0000"},{"description":"Database
896
+ information retrieval","name":"Database information retrieval","product_tax_code":"81111901A0000"},{"description":"Cash
897
+ donation","name":"Cash donation","product_tax_code":"14111803A0002"},{"description":"When
898
+ sold under prescription order of a licensed professional and billed directly
899
+ to Medicaid, medical grade oyxgen.","name":"Medical Oxygen with Prescription
900
+ billed to Medicaid","product_tax_code":"42271700A0008"},{"description":"When
901
+ sold without prescription order of a licensed professional, a machine used
902
+ that filters a patient''s blood to remove excess water and waste products
903
+ when the kidneys are damaged,","name":"Kidney Dialysis Equipment for home
904
+ use without Prescription","product_tax_code":"42161800A0006"},{"description":"When
905
+ sold under prescription order of a licensed professional and reimbursed by
906
+ Medicaid, equipment that: can withstand repeated use; is primarily and customarily
907
+ used to serve a medical purpose; generally is not useful to a person in the
908
+ absence of illness or injury; and is not worn in or on the body. Home use
909
+ means the equipment is sold to an individual for use at home, regardless of
910
+ where the individual resides. Examples include hospital beds, commode chairs,
911
+ bed pans, shower and bath aids, IV poles, etc.","name":"Durable Medical Equipment
912
+ for home use with Prescription reimbursed by Medicaid","product_tax_code":"42140000A0005"},{"description":"When
913
+ sold under prescription order of a licensed professional and billed directly
914
+ to Medicare, a machine used that filters a patient''s blood to remove excess
915
+ water and waste products when the kidneys are damaged, dysfunctional, or
916
+ missing. The kidney dialysis machine is an artificial part which augments
917
+ the natural functioning of the kidneys.","name":"Kidney Dialysis Equipment
918
+ for home use with Prescription billed to Medicare","product_tax_code":"42161800A0002"},{"description":"When
919
+ sold under prescription order of a licensed professional and reimbursed by
920
+ Medicare, equipment that: can withstand repeated use; is primarily and customarily
921
+ used to serve a medical purpose; generally is not useful to a person in the
922
+ absence of illness or injury; and is not worn in or on the body. Home use
923
+ means the equipment is sold to an individual for use at home, regardless of
924
+ where the individual resides. Examples include hospital beds, commode chairs,
925
+ bed pans, shower and bath aids, IV poles, etc.","name":"Durable Medical Equipment
926
+ for home use with Prescription reimbursed by Medicare","product_tax_code":"42140000A0004"},{"description":"When
927
+ sold under prescription order of a licensed professional and reimbursed by
928
+ Medicare, equipment used to administer oxygen directly into the lungs of the
929
+ patient for the relief of conditions in which the human body experiences an
930
+ abnormal deficiency or inadequate supply of oxygen. Oxygen equipment means
931
+ oxygen cylinders, cylinder transport devices, including sheaths and carts,
932
+ cylinder studs and support devices, regulators, flowmeters, tank wrenches,
933
+ oxygen concentrators, liquid oxygen base dispensers, liquid oxygen portable
934
+ dispensers, oxygen tubing, nasal cannulas, face masks, oxygen humidifiers,
935
+ and oxygen fittings and accessories.","name":"Oxygen Delivery Equipment for
936
+ home use with Prescription reimbursed by Medicare","product_tax_code":"42271700A0004"},{"description":"When
937
+ sold under prescription order of a licensed professional, equipment that:
938
+ can withstand repeated use; is primarily and customarily used to serve a medical
939
+ purpose; generally is not useful to a person in the absence of illness or
940
+ injury; and is not worn in or on the body. Home use means the equipment is
941
+ sold to an individual for use at home, regardless of where the individual
942
+ resides. Examples include hospital beds, commode chairs, bed pans, shower
943
+ and bath aids, IV poles, etc.","name":"Durable Medical Equipment for home
944
+ use with Prescription","product_tax_code":"42140000A0001"},{"description":"When
945
+ sold under prescription order of a licensed professional and billed directly
946
+ to Medicare, equipment used to administer oxygen directly into the lungs of
947
+ the patient for the relief of conditions in which the human body experiences
948
+ an abnormal deficiency or inadequate supply of oxygen. Oxygen equipment means
949
+ oxygen cylinders, cylinder transport devices, including sheaths and carts,
950
+ cylinder studs and support devices, regulators, flowmeters, tank wrenches,
951
+ oxygen concentrators, liquid oxygen base dispensers, liquid oxygen portable
952
+ dispensers, oxygen tubing, nasal cannulas, face masks, oxygen humidifiers,
953
+ and oxygen fittings and accessories.","name":"Oxygen Delivery Equipment for
954
+ home use with Prescription billed to Medicare","product_tax_code":"42271700A0002"},{"description":"When
955
+ sold under prescription order of a licensed professional and reimbursed by
956
+ Medicaid, medical grade oyxgen.","name":"Medical Oxygen with Prescription
957
+ reimbursed by Medicaid","product_tax_code":"42271700A0010"},{"description":"When
958
+ sold under prescription order of a licensed professional, medical grade oyxgen.","name":"Medical
959
+ Oxygen with Prescription","product_tax_code":"42271700A0012"},{"description":"When
960
+ sold without prescription order of a licensed professional, medical grade
961
+ oyxgen.","name":"Medical Oxygen without Prescription","product_tax_code":"42271700A0011"},{"description":"Equipment
962
+ which is primarily and customarily used to provide or increase the ability
963
+ to move from one place to another, sold without a prescription, and which
964
+ is appropriate for use either in a home or a motor vehicle; Is not generally
965
+ used by persons with normal mobility; and does not include any motor vehicle
966
+ or equipment on a motor vehicle normally provided by a motor vehicle manufacturer. Examples
967
+ include wheelchairs, crutches, canes, walkers, chair lifts, etc.","name":"Mobility
968
+ Enhancing Equipment without Prescription","product_tax_code":"42211500A0006"},{"description":"When
969
+ sold under prescription order of a licensed professional and billed directly
970
+ to Medicaid, equipment used to administer oxygen directly into the lungs of
971
+ the patient for the relief of conditions in which the human body experiences
972
+ an abnormal deficiency or inadequate supply of oxygen. Oxygen equipment means
973
+ oxygen cylinders, cylinder transport devices, including sheaths and carts,
974
+ cylinder studs and support devices, regulators, flowmeters, tank wrenches,
975
+ oxygen concentrators, liquid oxygen base dispensers, liquid oxygen portable
976
+ dispensers, oxygen tubing, nasal cannulas, face masks, oxygen humidifiers,
977
+ and oxygen fittings and accessories.","name":"Oxygen Delivery Equipment for
978
+ home use with Prescription billed to Medicaid","product_tax_code":"42271700A0003"},{"description":"Synthetic
979
+ or animal-based insulin used as an injectible drug for diabetes patients,
980
+ sold under prescription order of a licensed professional.","name":"Insulin
981
+ with Prescription","product_tax_code":"51183603A0000"},{"description":"Devices
982
+ used by diabetic individuals to monitor sugar levels in the blood, sold under
983
+ prescription order of a licensed professional.","name":"Blood Glucose Monitoring
984
+ Devices with Prescription","product_tax_code":"41116201A0000"},{"description":"Devices
985
+ used by diabetic individuals to monitor sugar levels in the blood, sold without
986
+ prescription order of a licensed professional.","name":"Blood Glucose Monitoring
987
+ Devices without Prescription","product_tax_code":"41116201A0001"},{"description":"At
988
+ home urine-based tests used to detect the presense of various drug substances
989
+ in an individual.","name":"Drug Testing Kits","product_tax_code":"41116136A0001"},{"description":"Single
990
+ use hollow needle commonly used with a syringe to inject insulin into the
991
+ body by diabetic individuals, sold under prescription order of a licensed
992
+ professional.","name":"Hypodermic Needles/Syringes with prescription - Insulin","product_tax_code":"42142523A0002"},{"description":"When
993
+ sold under prescription order of a licensed professional and reimbursed by
994
+ Medicare, medical grade oyxgen.","name":"Medical Oxygen with Prescription
995
+ reimbursed by Medicare","product_tax_code":"42271700A0009"},{"description":"When
996
+ sold under prescription order of a licensed professional and billed directly
997
+ to Medicare, medical grade oyxgen.","name":"Medical Oxygen with Prescription
998
+ billed to Medicare","product_tax_code":"42271700A0007"},{"description":"When
999
+ sold without prescription order of a licensed professional, a replacement,
1000
+ corrective, or supportive device, worn on or in the body to: Artificially
1001
+ replace a missing portion of the body; Prevent or correct physical deformity
1002
+ or malfunction; or Support a weak or deformed portion of the body. Worn in
1003
+ or on the body means that the item is implanted or attached so that it becomes
1004
+ part of the body, or is carried by the body and does not hinder the mobility
1005
+ of the individual. Examples include artificial limbs, pacemakers, orthopedics,
1006
+ ostomy/colostomy devices, etc.","name":"Prosthetic Devices without Prescription","product_tax_code":"42242000A0006"},{"description":"When
1007
+ sold under prescription order of a licensed professional and billed directly
1008
+ to Medicaid, a replacement, corrective, or supportive device, worn on or in
1009
+ the body to: Artificially replace a missing portion of the body; Prevent or
1010
+ correct physical deformity or malfunction; or Support a weak or deformed portion
1011
+ of the body. Worn in or on the body means that the item is implanted or attached
1012
+ so that it becomes part of the body, or is carried by the body and does not
1013
+ hinder the mobility of the individual. Examples include artificial limbs,
1014
+ pacemakers, orthotics, orthopedics, ostomy/colostomy devices, catheters, etc.","name":"Prosthetic
1015
+ Devices with Prescription Billed to Medicaid","product_tax_code":"42242000A0003"},{"description":"When
1016
+ sold under prescription order of a licensed professional and billed directly
1017
+ to Medicare, a replacement, corrective, or supportive device, worn on or in
1018
+ the body to: Artificially replace a missing portion of the body; Prevent or
1019
+ correct physical deformity or malfunction; or Support a weak or deformed portion
1020
+ of the body. Worn in or on the body means that the item is implanted or attached
1021
+ so that it becomes part of the body, or is carried by the body and does not
1022
+ hinder the mobility of the individual. Examples include artificial limbs,
1023
+ pacemakers, orthotics, orthopedics, ostomy/colostomy devices, catheters, etc.","name":"Prosthetic
1024
+ Devices with Prescription Billed to Medicare","product_tax_code":"42242000A0002"},{"description":"At
1025
+ home saliva, cheeek swab or blood drop based tests used to detect various
1026
+ genetic markers in an individual.","name":"DNA Testing Kits","product_tax_code":"41116205A0003"},{"description":"When
1027
+ sold under prescription order of a licensed professional and reimbursed by
1028
+ Medicaid, nutritional tube feeding equipment including button-style feeding
1029
+ tubes, standard G-tubes, NG-tubes, extension sets, adapters, feeding pumps,
1030
+ feeding pump delivery sets.","name":"Enteral Feeding Equipment for home use
1031
+ with Prescription reimbursed by Medicaid","product_tax_code":"42231500A0005"},{"description":"When
1032
+ sold under prescription order of a licensed professional and reimbursed by
1033
+ Medicaid, equipment used to administer oxygen directly into the lungs of the
1034
+ patient for the relief of conditions in which the human body experiences an
1035
+ abnormal deficiency or inadequate supply of oxygen. Oxygen equipment means
1036
+ oxygen cylinders, cylinder transport devices, including sheaths and carts,
1037
+ cylinder studs and support devices, regulators, flowmeters, tank wrenches,
1038
+ oxygen concentrators, liquid oxygen base dispensers, liquid oxygen portable
1039
+ dispensers, oxygen tubing, nasal cannulas, face masks, oxygen humidifiers,
1040
+ and oxygen fittings and accessories.","name":"Oxygen Delivery Equipment for
1041
+ home use with Prescription reimbursed by Medicaid","product_tax_code":"42271700A0005"},{"description":"When
1042
+ sold under prescription order of a licensed professional, equipment used to
1043
+ administer oxygen directly into the lungs of the patient for the relief of
1044
+ conditions in which the human body experiences an abnormal deficiency or inadequate
1045
+ supply of oxygen. Oxygen equipment means oxygen cylinders, cylinder transport
1046
+ devices, including sheaths and carts, cylinder studs and support devices,
1047
+ regulators, flowmeters, tank wrenches, oxygen concentrators, liquid oxygen
1048
+ base dispensers, liquid oxygen portable dispensers, oxygen tubing, nasal cannulas,
1049
+ face masks, oxygen humidifiers, and oxygen fittings and accessories.","name":"Oxygen
1050
+ Delivery Equipment for home use with Prescription","product_tax_code":"42271700A0001"},{"description":"Synthetic
1051
+ or animal-based insulin used as an injectible drug for diabetes patients,
1052
+ sold without prescription order of a licensed professional.","name":"Insulin
1053
+ without Prescription","product_tax_code":"51183603A0001"},{"description":"Single
1054
+ use hollow needle commonly used with a syringe to inject insulin into the
1055
+ body by diabetic individuals, sold without prescription order of a licensed
1056
+ professional.","name":"Hypodermic Needles/Syringes without prescription -
1057
+ Insulin","product_tax_code":"42142523A0001"},{"description":"When sold without
1058
+ prescription order of a licensed professional, equipment used to administer
1059
+ oxygen directly into the lungs of the patient for the relief of conditions
1060
+ in which the human body experiences an abnormal deficiency or inadequate supply
1061
+ of oxygen. Oxygen equipment means oxygen cylinders, cylinder transport devices,
1062
+ including sheaths and carts, cylinder studs and support devices, regulators,
1063
+ flowmeters, tank wrenches, oxygen concentrators, liquid oxygen base dispensers,
1064
+ liquid oxygen portable dispensers, oxygen tubing, nasal cannulas, face masks,
1065
+ oxygen humidifiers, and oxygen fittings and accessories.","name":"Oxygen Delivery
1066
+ Equipment for home use without Prescription","product_tax_code":"42271700A0006"},{"description":"At
1067
+ home blood-prick based tests used to monitor cholesterol levels in an individual.","name":"Cholesterol
1068
+ Testing Kits","product_tax_code":"41116202A0001"},{"description":"Single use
1069
+ supplies utilized by diabetics in the regular blood sugar monitoring regimen.
1070
+ Includes skin puncture lancets, test strips for blood glucose monitors, visual
1071
+ read test strips, and urine test strips, sold under prescription order of
1072
+ a licensed professional.","name":"Diabetic Testing Supplies - single use -
1073
+ with Prescription","product_tax_code":"41116120A0002"},{"description":"A breast
1074
+ pump is a mechanical device that lactating women use to extract milk from
1075
+ their breasts. They may be manual devices powered by hand or foot movements
1076
+ or automatic devices powered by electricity.","name":"Breast Pumps","product_tax_code":"42231901A0000"},{"description":"At
1077
+ home urine-based tests used to detect pregancy hormone levels.","name":"Pregenacy
1078
+ Testing Kits","product_tax_code":"41116205A0001"},{"description":"When sold
1079
+ under prescription order of a licensed professional, and reimbursed by Medicaid,
1080
+ equipment which is primarily and customarily used to provide or increase the
1081
+ ability to move from one place to another and which is appropriate for use
1082
+ either in a home or a motor vehicle; Is not generally used by persons with
1083
+ normal mobility; and Does not include any motor vehicle or equipment on a
1084
+ motor vehicle normally provided by a motor vehicle manufacturer. Examples
1085
+ include wheelchairs, crutches, canes, walkers, chair lifts, etc.","name":"Mobility
1086
+ Enhancing Equipment with Prescription Reimbursed by Medicaid","product_tax_code":"42211500A0005"},{"description":"When
1087
+ sold without prescription order of a licensed professional, a replacement,
1088
+ corrective, or supportive device, worn in the mouth, including dentures, orthodontics,
1089
+ crowns, bridges, etc.","name":"Dental Prosthetics without Prescription","product_tax_code":"42151500A0002"},{"description":"When
1090
+ sold under prescription order of a licensed professional, a replacement, corrective,
1091
+ or supportive device, worn in the mouth, including dentures, orthodontics,
1092
+ crowns, bridges, etc.","name":"Dental Prosthetics with Prescription","product_tax_code":"42151500A0001"},{"description":"At
1093
+ home urine-based tests used to detect impending ovulation to assist in pregnancy
1094
+ planning.","name":"Ovulation Testing Kits","product_tax_code":"41116205A0002"},{"description":"When
1095
+ sold without prescription order of a licensed professional, nutritional tube
1096
+ feeding equipment including button-style feeding tubes, standard G-tubes,
1097
+ NG-tubes, extension sets, adapters, feeding pumps, feeding pump delivery sets.","name":"Enteral
1098
+ Feeding Equipment for home use without Prescription","product_tax_code":"42231500A0006"},{"description":"When
1099
+ sold under prescription order of a licensed professional and reimbursed by
1100
+ Medicare, nutritional tube feeding equipment including button-style feeding
1101
+ tubes, standard G-tubes, NG-tubes, extension sets, adapters, feeding pumps,
1102
+ feeding pump delivery sets.","name":"Enteral Feeding Equipment for home use
1103
+ with Prescription reimbursed by Medicare","product_tax_code":"42231500A0004"},{"description":"When
1104
+ sold without prescription order of a licensed professional, equipment that:
1105
+ can withstand repeated use; is primarily and customarily used to serve a medical
1106
+ purpose; generally is not useful to a person in the absence of illness or
1107
+ injury; and is not worn in or on the body. Home use means the equipment is
1108
+ sold to an individual for use at home, regardless of where the individual
1109
+ resides. Examples include hospital beds, commode chairs, bed pans, IV poles,
1110
+ etc.","name":"Durable Medical Equipment for home use without Prescription","product_tax_code":"42140000A0006"},{"description":"Male
1111
+ or female condoms used to prevent pregnancy or exposure to STDs, containing
1112
+ a spermicidal lubricant as indicated by a \"drug facts\" panel or a statement
1113
+ of active ingredients.","name":"Condoms with Spermicide","product_tax_code":"53131622A0001"},{"description":"Single
1114
+ use supplies utilized by diabetics in the regular blood sugar monitoring regimen.
1115
+ Includes skin puncture lancets, test strips for blood glucose monitors, visual
1116
+ read test strips, and urine test strips.","name":"Diabetic Testing Supplies
1117
+ - single use - without Prescription","product_tax_code":"41116120A0001"},{"description":"An
1118
+ electronic device that clips onto a patient''s finger to measure heart rate
1119
+ and oxygen saturation in his or her red blood cells.","name":"Pulse Oximeter","product_tax_code":"42181801A0000"},{"description":"When
1120
+ sold under prescription order of a licensed professional, equipment which
1121
+ is primarily and customarily used to provide or increase the ability to move
1122
+ from one place to another and which is appropriate for use either in a home
1123
+ or a motor vehicle; Is not generally used by persons with normal mobility;
1124
+ and Does not include any motor vehicle or equipment on a motor vehicle normally
1125
+ provided by a motor vehicle manufacturer. Examples include wheelchairs, crutches,
1126
+ canes, walkers, chair lifts, etc.","name":"Mobility Enhancing Equipment with
1127
+ Prescription","product_tax_code":"42211500A0001"},{"description":"When sold
1128
+ under prescription order of a licensed professional, a replacement, corrective,
1129
+ or supportive device, worn on or in the body to: Artificially replace a missing
1130
+ portion of the body; Prevent or correct physical deformity or malfunction;
1131
+ or Support a weak or deformed portion of the body. Worn in or on the body
1132
+ means that the item is implanted or attached so that it becomes part of the
1133
+ body, or is carried by the body and does not hinder the mobility of the individual.
1134
+ Examples include artificial limbs, pacemakers, orthotics, orthopedics, ostomy/colostomy
1135
+ devices, catheters, etc.","name":"Prosthetic Devices with Prescription","product_tax_code":"42242000A0001"},{"description":"When
1136
+ sold under prescription order of a licensed professional and billed directly
1137
+ to Medicare, nutritional tube feeding equipment including button-style feeding
1138
+ tubes, standard G-tubes, NG-tubes, extension sets, adapters, feeding pumps,
1139
+ feeding pump delivery sets.","name":"Enteral Feeding Equipment for home use
1140
+ with Prescription billed to Medicare","product_tax_code":"42231500A0002"},{"description":"When
1141
+ sold under prescription order of a licensed professional and billed directly
1142
+ to Medicaid, equipment that: can withstand repeated use; is primarily and
1143
+ customarily used to serve a medical purpose; generally is not useful to a
1144
+ person in the absence of illness or injury; and is not worn in or on the body.
1145
+ Home use means the equipment is sold to an individual for use at home, regardless
1146
+ of where the individual resides. Examples include hospital beds, commode chairs,
1147
+ bed pans, shower and bath aids, IV poles, etc.","name":"Durable Medical Equipment
1148
+ for home use with Prescription billed to Medicaid","product_tax_code":"42140000A0003"},{"description":"When
1149
+ sold under prescription order of a licensed professional and reimbursed by
1150
+ Medicare, a replacement, corrective, or supportive device, worn on or in the
1151
+ body to: Artificially replace a missing portion of the body; Prevent or correct
1152
+ physical deformity or malfunction; or Support a weak or deformed portion of
1153
+ the body. Worn in or on the body means that the item is implanted or attached
1154
+ so that it becomes part of the body, or is carried by the body and does not
1155
+ hinder the mobility of the individual. Examples include artificial limbs,
1156
+ pacemakers, orthotics, orthopedics, ostomy/colostomy devices, catheters, etc.","name":"Prosthetic
1157
+ Devices with Prescription Reimbursed by Medicare","product_tax_code":"42242000A0004"},{"description":"When
1158
+ sold under prescription order of a licensed professional, and billed to Medicare,
1159
+ equipment which is primarily and customarily used to provide or increase the
1160
+ ability to move from one place to another and which is appropriate for use
1161
+ either in a home or a motor vehicle; Is not generally used by persons with
1162
+ normal mobility; and Does not include any motor vehicle or equipment on a
1163
+ motor vehicle normally provided by a motor vehicle manufacturer. Examples
1164
+ include wheelchairs, crutches, canes, walkers, chair lifts, etc.","name":"Mobility
1165
+ Enhancing Equipment with Prescription Billed to Medicare","product_tax_code":"42211500A0002"},{"description":"When
1166
+ sold under prescription order of a licensed professional, and billed to Medicaid,
1167
+ equipment which is primarily and customarily used to provide or increase the
1168
+ ability to move from one place to another and which is appropriate for use
1169
+ either in a home or a motor vehicle; Is not generally used by persons with
1170
+ normal mobility; and Does not include any motor vehicle or equipment on a
1171
+ motor vehicle normally provided by a motor vehicle manufacturer. Examples
1172
+ include wheelchairs, crutches, canes, walkers, chair lifts, etc.","name":"Mobility
1173
+ Enhancing Equipment with Prescription Billed to Medicaid","product_tax_code":"42211500A0003"},{"description":"When
1174
+ sold under prescription order of a licensed professional and reimbursed by
1175
+ Medicare, a machine used that filters a patient''s blood to remove excess
1176
+ water and waste products when the kidneys are damaged, dysfunctional, or missing.
1177
+ The kidney dialysis machine is an artificial part which augments the natural
1178
+ functioning of the kidneys.","name":"Kidney Dialysis Equipment for home use
1179
+ with Prescription reimbursed by Medicare","product_tax_code":"42161800A0004"},{"description":"At
1180
+ home digital or manual (aneroid) sphygmomanometers, also known as a blood
1181
+ pressure meter, blood pressure monitor, or blood pressure gauge, are devices
1182
+ used to measure blood pressure, composed of an inflatable cuff to collapse
1183
+ and then release the artery under the cuff in a controlled manner.","name":"Blood
1184
+ Pressure Testing Devices","product_tax_code":"42181600A0001"},{"description":"A
1185
+ topical preparation containing a spermicidal lubricant to prevent pregnancy
1186
+ as indicated by a \"drug facts\" panel or a statement of active ingredients.","name":"Contraceptive
1187
+ Ointments","product_tax_code":"53131622A0002"},{"description":"Male or female
1188
+ condoms used to prevent pregnacy or exposure to STDs.","name":"Condoms","product_tax_code":"53131622A0000"},{"description":"When
1189
+ sold under prescription order of a licensed professional and billed directly
1190
+ to Medicare, equipment that: can withstand repeated use; is primarily and
1191
+ customarily used to serve a medical purpose; generally is not useful to a
1192
+ person in the absence of illness or injury; and is not worn in or on the body.
1193
+ Home use means the equipment is sold to an individual for use at home, regardless
1194
+ of where the individual resides. Examples include hospital beds, commode chairs,
1195
+ bed pans, shower and bath aids, IV poles, etc.","name":"Durable Medical Equipment
1196
+ for home use with Prescription billed to Medicare","product_tax_code":"42140000A0002"},{"description":"When
1197
+ sold under prescription order of a licensed professional and reimbursed by
1198
+ Medicaid, a replacement, corrective, or supportive device, worn on or in the
1199
+ body to: Artificially replace a missing portion of the body; Prevent or correct
1200
+ physical deformity or malfunction; or Support a weak or deformed portion of
1201
+ the body. Worn in or on the body means that the item is implanted or attached
1202
+ so that it becomes part of the body, or is carried by the body and does not
1203
+ hinder the mobility of the individual. Examples include artificial limbs,
1204
+ pacemakers, orthotics, orthopedics, ostomy/colostomy devices, catheters, etc.","name":"Prosthetic
1205
+ Devices with Prescription Reimbursed by Medicaid","product_tax_code":"42242000A0005"},{"description":"When
1206
+ sold under prescription order of a licensed professional, and reimbursed by
1207
+ Medicare, equipment which is primarily and customarily used to provide or
1208
+ increase the ability to move from one place to another and which is appropriate
1209
+ for use either in a home or a motor vehicle; Is not generally used by persons
1210
+ with normal mobility; and Does not include any motor vehicle or equipment
1211
+ on a motor vehicle normally provided by a motor vehicle manufacturer. Examples
1212
+ include wheelchairs, crutches, canes, walkers, chair lifts, etc.","name":"Mobility
1213
+ Enhancing Equipment with Prescription Reimbursed by Medicare","product_tax_code":"42211500A0004"},{"description":"When
1214
+ sold under prescription order of a licensed professional and billed directly
1215
+ to Medicaid, nutritional tube feeding equipment including button-style feeding
1216
+ tubes, standard G-tubes, NG-tubes, extension sets, adapters, feeding pumps,
1217
+ feeding pump delivery sets.","name":"Enteral Feeding Equipment for home use
1218
+ with prescription billed to Medicaid","product_tax_code":"42231500A0003"},{"description":"When
1219
+ sold under prescription order of a licensed professional, nutritional tube
1220
+ feeding equipment including button-style feeding tubes, standard G-tubes,
1221
+ NG-tubes, extension sets, adapters, feeding pumps, feeding pump delivery sets.","name":"Enteral
1222
+ Feeding Equipment for home use with Prescription","product_tax_code":"42231500A0001"},{"description":"When
1223
+ sold under prescription order of a licensed professional and billed directly
1224
+ to Medicaid, a machine used that filters a patient''s blood to remove excess
1225
+ water and waste products when the kidneys are damaged, dysfunctional, or
1226
+ missing. The kidney dialysis machine is an artificial part which augments
1227
+ the natural functioning of the kidneys.","name":"Kidney Dialysis Equipment
1228
+ for home use with Prescription billed to Medicaid","product_tax_code":"42161800A0003"},{"description":"When
1229
+ sold under prescription order of a licensed professional and reimbursed by
1230
+ Medicaid, a machine used that filters a patient''s blood to remove excess
1231
+ water and waste products when the kidneys are damaged, dysfunctional, or missing.
1232
+ The kidney dialysis machine is an artificial part which augments the natural
1233
+ functioning of the kidneys.","name":"Kidney Dialysis Equipment for home use
1234
+ with Prescription and reimbursed by Medicaid","product_tax_code":"42161800A0005"},{"description":"When
1235
+ sold under prescription order of a licensed professional, a machine used that
1236
+ filters a patient''s blood to remove excess water and waste products when
1237
+ the kidneys are damaged, dysfunctional, or missing. The kidney dialysis machine
1238
+ is an artificial part which augments the natural functioning of the kidneys.","name":"Kidney
1239
+ Dialysis Equipment for home use with Prescription","product_tax_code":"42161800A0001"},{"description":"Handbags,
1240
+ Purses","name":"Handbags, Purses","product_tax_code":"53121600A0000"},{"description":"Video
1241
+ Gaming Console - Fixed","name":"Video Gaming Console - Fixed","product_tax_code":"52161557A0000"},{"description":"Video
1242
+ Cameras","name":"Video Cameras","product_tax_code":"45121515A0000"},{"description":"Portable
1243
+ audio equipment that records digital music for playback","name":"Digital Music
1244
+ Players","product_tax_code":"52161543A0000"},{"description":"A type of consumer
1245
+ electronic device used to play vinyl recordings.","name":"Audio Turntables","product_tax_code":"52161548A0000"},{"description":"Video
1246
+ Gaming Console - Portable","name":"Video Gaming Console - Portable","product_tax_code":"52161558A0000"},{"description":"A
1247
+ framed display designed to display preloaded digital images (jpeg or any digital
1248
+ image format). Has slots for flash memory cards and/or an interface for digital
1249
+ photo camera connection.","name":"Digital Picture Frames","product_tax_code":"52161549A0000"},{"description":"Digital
1250
+ Cameras","name":"Digital Cameras","product_tax_code":"45121504A0000"},{"description":"Mobile
1251
+ Phones","name":"Mobile Phones","product_tax_code":"43191501A0000"},{"description":"A
1252
+ digital wristwatch that provides many other features besides timekeeping. Like
1253
+ a smartphone, a smartwatch has a touchscreen display, which allows you to
1254
+ perform actions by tapping or swiping on the screen. Smartwatches include
1255
+ allow access to apps, similar to apps for smartphones and tablets.","name":"Watches
1256
+ - Smart","product_tax_code":"54111500A0001"},{"description":"A bicycle helmet
1257
+ that is NOT marketed and labeled as being intended for youth.","name":"Bicycle
1258
+ Helmets - Adult","product_tax_code":"46181704A0003"},{"description":"A bicycle
1259
+ helmet marketed and labeled as being intended for youth.","name":"Bicycle
1260
+ Helmets - Youth","product_tax_code":"46181704A0002"},{"description":"Luggage","name":"Luggage","product_tax_code":"53121500A0000"},{"description":"Clothing
1261
+ - Sleep or eye mask","name":"Clothing - Sleep or eye mask","product_tax_code":"53102607A0000"},{"description":"Clothing
1262
+ - Pocket protectors","name":"Clothing - Pocket protectors","product_tax_code":"53102514A0000"},{"description":"Clothing
1263
+ - Button covers","name":"Clothing - Button covers","product_tax_code":"53102515A0000"},{"description":"Shoe
1264
+ Inserts/Insoles","name":"Clothing - Shoe Inserts/Insoles","product_tax_code":"46182208A0000"},{"description":"Aprons
1265
+ - Household/Kitchen","name":"Clothing - Aprons - Household/Kitchen","product_tax_code":"46181501A0002"},{"description":"Hunting
1266
+ Vests","name":"Clothing - Hunting Vests","product_tax_code":"53103100A0003"},{"description":"Clothing
1267
+ apparel/uniforms that are specific to the training and competition of various
1268
+ martial arts.","name":"Clothing - Martial Arts Attire","product_tax_code":"53102717A0001"},{"description":"Clothing
1269
+ - Umbrellas","name":"Clothing - Umbrellas","product_tax_code":"53102505A0000"},{"description":"Briefcases","name":"Briefcases","product_tax_code":"53121701A0000"},{"description":"Wallets","name":"Wallets","product_tax_code":"53121600A0001"},{"description":"Wristwatch
1270
+ timepieces","name":"Watches","product_tax_code":"54111500A0000"},{"description":"Jewelry","name":"Jewelry","product_tax_code":"54100000A0000"},{"description":"Non-prescription
1271
+ sunglasses","name":"Sunglasses - Non-Rx","product_tax_code":"42142905A0001"},{"description":"Wigs,
1272
+ Hairpieces, Hair extensions","name":"Clothing - Wigs, Hairpieces, Hair extensions","product_tax_code":"53102500A0002"},{"description":"Hair
1273
+ notions, hair clips, barrettes, hair bows, hair nets, etc.","name":"Clothing
1274
+ - Hair Accessories","product_tax_code":"53102500A0001"},{"description":"Clothing
1275
+ - Headbands","name":"Clothing - Headbands","product_tax_code":"53102513A0000"},{"description":"These
1276
+ supplies contain medication such as an antibiotic ointment. They are a labeled
1277
+ with a \"drug facts\" panel or a statement of active ingredients. A wound
1278
+ care supply is defined as an item that is applied directly to or inside a
1279
+ wound to absorb wound drainage, protect healing tissue, maintain a moist or
1280
+ dry wound environment (as appropriate), or prevent bacterial contamination. Examples
1281
+ include bandages, dressings, gauze, medical tape. This code is intended for
1282
+ sales directly to end consumers that are NOT healthcare providers.","name":"Wound
1283
+ Care Supplies - Bandages, Dressings, Gauze - Medicated","product_tax_code":"42311514A0000"},{"description":"A
1284
+ wound care supply is defined as an item that is applied directly to or inside
1285
+ a wound to absorb wound drainage, protect healing tissue, maintain a moist
1286
+ or dry wound environment (as appropriate), or prevent bacterial contamination. Examples
1287
+ include bandages, dressings, gauze, medical tape. This code is intended for
1288
+ sales directly to end consumers that are NOT healthcare providers.","name":"Wound
1289
+ Care Supplies - Bandages, Dressings, Gauze","product_tax_code":"42311500A0001"},{"description":"Toothpaste
1290
+ containing \"drug facts\" panel or a statement of active ingredients. These
1291
+ products do contain a \"drug facts\" panel or a statement of active ingredients. This
1292
+ code is intended for sales directly to end consumers that are NOT healthcare
1293
+ providers.","name":"Toothpaste","product_tax_code":"53131502A0000"},{"description":"Disposable
1294
+ moistened cleansing wipes - non medicated. These products do not contain
1295
+ a \"drug facts\" panel or a statement of active ingredients. This code is
1296
+ intended for sales directly to end consumers that are NOT healthcare providers.","name":"Baby
1297
+ Wipes/Cleansing Wipes","product_tax_code":"53131624A0000"},{"description":"Toilet
1298
+ Paper. This code is intended for sales directly to end consumers that are
1299
+ NOT healthcare providers.","name":"Toilet Paper","product_tax_code":"14111704A0000"},{"description":"A
1300
+ lotion, spray, gel, foam, stick or other topical product that absorbs or reflects
1301
+ some of the sun''s ultraviolet (UV) radiation and thus helps protect against
1302
+ sunburn. Sunscreen contains a \"drug facts\" label or statement of active
1303
+ ingredients. This code is intended for sales directly to end consumers that
1304
+ are NOT healthcare providers.","name":"Sunscreen","product_tax_code":"53131609A0000"},{"description":"Soaps,
1305
+ body washes, shower gels for personal hygiene containing antibacterial. These
1306
+ products contain a \"drug facts\" panel or a statement of active ingredients. This
1307
+ code is intended for sales directly to end consumers that are NOT healthcare
1308
+ providers.","name":"Soaps - Antibacterial","product_tax_code":"53131608A0001"},{"description":"Over-the-counter
1309
+ nicotine replacement products, including patches, gum, lozenges, sprays and
1310
+ inhalers. These products contain a \"drug facts\" panel or a statement of
1311
+ active ingredients. This code is intended for sales directly to end consumers
1312
+ that are NOT healthcare providers.","name":"Smoking Cessation Products","product_tax_code":"51143218A0000"},{"description":"Lotions,
1313
+ moisturizers, creams, powders, sprays, etc that promote optimal skin health. These
1314
+ products contain a \"drug facts\" panel or a statement of active ingredients. This
1315
+ code is intended for sales directly to end consumers that are NOT healthcare
1316
+ providers.","name":"Skin Care Products- Medicated","product_tax_code":"51241200A0001"},{"description":"A
1317
+ hair care product for cleansing the hair/scalp, with anti-dandruff active
1318
+ ingredients. These products contain a \"drug facts\" panel or a statement
1319
+ of active ingredients. This code is intended for sales directly to end consumers
1320
+ that are NOT healthcare providers.","name":"Shampoo - medicated (anti-dandruff)","product_tax_code":"53131628A0001"},{"description":"A
1321
+ multi-purpose skin protectorant and topical ointment. These products contain
1322
+ a \"drug facts\" panel or a statement of active ingredients. This code is
1323
+ intended for sales directly to end consumers that are NOT healthcare providers.","name":"Petroleum
1324
+ Jelly","product_tax_code":"53131641A0000"},{"description":"An over-the-counter
1325
+ drug via RX is a substance that contains a label identifying it as a drug
1326
+ and including a \"drug facts\" panel or a statement of active ingredients,
1327
+ that can be obtained without a prescription, but is sold under prescription
1328
+ order of a licensed professional. A drug can be intended for internal (ingestible,
1329
+ implant, injectable) or external (topical) application to the human body. This
1330
+ code is intended for sales directly to end consumers that are NOT healthcare
1331
+ providers.","name":"Over-the-Counter Drugs via Prescription","product_tax_code":"51030"},{"description":"Flexible
1332
+ adhesive strips that attach over the bridge of the nose to lift the sides
1333
+ of the nose, opening the nasal passages to provide relief for congestion and
1334
+ snoring. The products are drug free and contain no active drug ingredients. This
1335
+ code is intended for sales directly to end consumers that are NOT healthcare
1336
+ providers.","name":"Nasal Breathing Strips","product_tax_code":"42312402A0001"},{"description":"Therapeutic
1337
+ mouthwash, having active ingredients (such as antiseptic, or flouride) intended
1338
+ to help control or reduce conditions like bad breath, gingivitis, plaque,
1339
+ and tooth decay. These products contain a \"drug facts\" panel or a statement
1340
+ of active ingredients. This code is intended for sales directly to end consumers
1341
+ that are NOT healthcare providers.","name":"Mouthwash - Therapeutic","product_tax_code":"53131501A0000"},{"description":"Multiple
1342
+ use medical thermometers for oral, temporal/forehead, or rectal body temperature
1343
+ diagnostics. This code is intended for sales directly to end consumers that
1344
+ are NOT healthcare providers.","name":"Medical Thermometers - Reusable","product_tax_code":"42182200A0002"},{"description":"One-time
1345
+ use medical thermometers for oral, temporal/forehead, or rectal body temperature
1346
+ diagnostics. This code is intended for sales directly to end consumers that
1347
+ are NOT healthcare providers.","name":"Medical Thermometers - Disposable","product_tax_code":"42182200A0001"},{"description":"Masks
1348
+ designed for one-time use to protect the wearer from contamination of breathable
1349
+ particles. This code is intended for sales directly to end consumers that
1350
+ are NOT healthcare providers.","name":"Medical Masks","product_tax_code":"42131713A0001"},{"description":"A
1351
+ medicated skin protectorant for the lips. These products contain a \"drug
1352
+ facts\" panel or a statement of active ingredients. This code is intended
1353
+ for sales directly to end consumers that are NOT healthcare providers.","name":"Lip
1354
+ Balm - Medicated","product_tax_code":"53131630A0001"},{"description":"A skin
1355
+ protectorant for the lips. These products do not contain a \"drug facts\"
1356
+ panel or a statement of active ingredients. This code is intended for sales
1357
+ directly to end consumers that are NOT healthcare providers.","name":"Lip
1358
+ Balm","product_tax_code":"53131630A0000"},{"description":"Artificial devices
1359
+ to correct or alleviate hearing deficiencies, sold under prescription order
1360
+ of a licensed professional. This code is intended for sales directly to end
1361
+ consumers that are NOT healthcare providers.","name":"Hearing Aids with Prescription","product_tax_code":"42211705A0000"},{"description":"Artificial
1362
+ deives to correct or alleviate hearing deficiencies, sold without a prescription
1363
+ order of a licensed professional. This code is intended for sales directly
1364
+ to end consumers that are NOT healthcare providers.","name":"Hearing Aids
1365
+ without Prescription","product_tax_code":"42211705A0001"},{"description":"Batteries
1366
+ specifically labeled and designed to operate hearing aid devices, sold under
1367
+ prescription order of a licensed professional. This code is intended for sales
1368
+ directly to end consumers that are NOT healthcare providers.","name":"Hearing
1369
+ Aid Batteries with Prescription","product_tax_code":"26111710A0001"},{"description":"Batteries
1370
+ specifically labeled and designed to operate hearing aid devices, sold without
1371
+ a prescription order of a licensed professional. This code is intended for
1372
+ sales directly to end consumers that are NOT healthcare providers.","name":"Hearing
1373
+ Aid Batteries without Prescription","product_tax_code":"26111710A0002"},{"description":"A
1374
+ liquid, gel, foam, or wipe generally used to decrease infectious agents on
1375
+ the hands. Alcohol-based versions typically contain some combination of isopropyl
1376
+ alcohol, ethanol (ethyl alcohol), or n-propanol. Alcohol-free products are
1377
+ generally based on disinfectants, or on antimicrobial agents. These products
1378
+ contain a \"drug facts\" panel or a statement of active ingredients. This
1379
+ code is intended for sales directly to end consumers that are NOT healthcare
1380
+ providers.","name":"Hand Sanitizers","product_tax_code":"53131626A0000"},{"description":"Topical
1381
+ foams, creams, gels, etc that prevent hair loss and promote hair regrowth. These
1382
+ products contain a \"drug facts\" panel or a statement of active ingredients. This
1383
+ code is intended for sales directly to end consumers that are NOT healthcare
1384
+ providers.","name":"Hair Loss Products","product_tax_code":"51182001A0001"},{"description":"A
1385
+ collection of mixed supplies and equipment that is used to give medical treatment,
1386
+ often housed in durable plastic boxes, fabric pouches or in wall mounted cabinets. Exempt
1387
+ or low rated qualifying medicinal items (eg. OTC drugs) make up 51% or more
1388
+ of the value of the kit. This code is intended for sales directly to end
1389
+ consumers that are NOT healthcare providers.","name":"First Aid Kits - 51%
1390
+ or more medicinal items","product_tax_code":"42172001A0002"},{"description":"A
1391
+ collection of mixed supplies and equipment that is used to give medical treatment,
1392
+ often housed in durable plastic boxes, fabric pouches or in wall mounted cabinets. Exempt
1393
+ or low rated qualifying medicinal items (eg. OTC drugs) make up 50% or less
1394
+ of the value of the kit. This code is intended for sales directly to end
1395
+ consumers that are NOT healthcare providers.","name":"First Aid Kits - 50%
1396
+ or less medicinal items","product_tax_code":"42172001A0001"},{"description":"Over-the-counter
1397
+ antifungal creams, ointments or suppositories to treat yeast infections, containing
1398
+ a \"drug facts\" panel or a statement of active ingredients. This code is
1399
+ intended for sales directly to end consumers that are NOT healthcare providers.","name":"Feminine
1400
+ Yeast Treatments","product_tax_code":"51302300A0001"},{"description":"Vaginal
1401
+ cleaning products include douches and wipes with medication such as an antiseptic,
1402
+ containing a \"drug facts\" panel or a statement of active ingredients. This
1403
+ code is intended for sales directly to end consumers that are NOT healthcare
1404
+ providers.","name":"Feminine Cleansing Solutions - Medicated","product_tax_code":"53131615A0002"},{"description":"Vaginal
1405
+ cleaning products include douches and wipes. This code is intended for sales
1406
+ directly to end consumers that are NOT healthcare providers.","name":"Feminine
1407
+ Cleansing Solutions","product_tax_code":"53131615A0001"},{"description":"Single
1408
+ use disposable gloves (latex, nitrile, vinyl, etc) that while appropriate
1409
+ for multiple uses, have an application in a first aid or medical setting. This
1410
+ code is intended for sales directly to end consumers that are NOT healthcare
1411
+ providers.","name":"Disposable Gloves","product_tax_code":"42132203A0000"},{"description":"Personal
1412
+ under-arm deodorants/antiperspirants. These products do contain a \"drug
1413
+ facts\" panel or a statement of active ingredients, typically aluminum. This
1414
+ code is intended for sales directly to end consumers that are NOT healthcare
1415
+ providers.","name":"Deodorant/Antiperspirant","product_tax_code":"53131606A0000"},{"description":"Denture
1416
+ adhesives are pastes, powders or adhesive pads that may be placed in/on dentures
1417
+ to help them stay in place. These products do not contain a \"drug facts\"
1418
+ panel or a statement of active ingredients. This code is intended for sales
1419
+ directly to end consumers that are NOT healthcare providers.","name":"Denture
1420
+ creams/adhesives","product_tax_code":"53131510A0000"},{"description":"Toothbrushes. This
1421
+ code is intended for sales directly to end consumers that are NOT healthcare
1422
+ providers.","name":"Toothbrushes","product_tax_code":"53131503A0000"},{"description":"Dental
1423
+ Floss/picks. This code is intended for sales directly to end consumers that
1424
+ are NOT healthcare providers.","name":"Dental Floss/picks","product_tax_code":"53131504A0000"},{"description":"Single
1425
+ use cotton balls or swabs for multi-purpose use other than applying medicines
1426
+ and cleaning wounds, due to not being sterile. This code is intended for
1427
+ sales directly to end consumers that are NOT healthcare providers.","name":"Cotton
1428
+ Balls/Swabs - Unsterile","product_tax_code":"42141500A0002"},{"description":"Single
1429
+ use cotton balls or swabs for application of antiseptics and medications and
1430
+ to cleanse scratches, cuts or minor wounds. This code is intended for sales
1431
+ directly to end consumers that are NOT healthcare providers.","name":"Cotton
1432
+ Balls/Swabs - Sterile","product_tax_code":"42141500A0001"},{"description":"Corrective
1433
+ lenses, eyeglasses, sold under prescription order of a licensed professional. This
1434
+ code is intended for sales directly to end consumers that are NOT healthcare
1435
+ providers.","name":"Corrective Lenses, Eyeglasses with Prescription","product_tax_code":"42142900A0001"},{"description":"Corrective
1436
+ lenses, including eyeglasses and contact lenses, sold without a prescription
1437
+ order of a licensed professional. This code is intended for sales directly
1438
+ to end consumers that are NOT healthcare providers.","name":"Corrective Lenses
1439
+ without Prescription","product_tax_code":"42142900A0002"},{"description":"Liquid
1440
+ solution for lubricating/rewetting, but not disinfecting, contact lenses. This
1441
+ solution is applied directly to the lens, rather then inserted into the eye.
1442
+ This code is intended for sales directly to end consumers that are NOT healthcare
1443
+ providers.","name":"Contact Lens Lubricating Solutions - For lens","product_tax_code":"42142914A0001"},{"description":"Liquid
1444
+ solution for lubricating/rewetting, but not disinfecting, contact lenses. This
1445
+ solution is applied directly to the eye. This code is intended for sales directly
1446
+ to end consumers that are NOT healthcare providers.","name":"Contact Lens
1447
+ Lubricating Solutions - For eyes","product_tax_code":"42142914A0002"},{"description":"Contact
1448
+ lenses, sold under prescription order of a licensed professional. This code
1449
+ is intended for sales directly to end consumers that are NOT healthcare providers.","name":"Contact
1450
+ Lenses with Prescription","product_tax_code":"42142913A0000"},{"description":"Liquid
1451
+ solution for cleaning and disinfecting contact lenses. This code is intended
1452
+ for sales directly to end consumers that are NOT healthcare providers.","name":"Contact
1453
+ Lens Disinfecting Solutions","product_tax_code":"42142914A0000"},{"description":"A
1454
+ reusable pain management supply that includes artificial ice packs, gel packs,
1455
+ heat wraps, etc used for pain relief. This code is intended for sales directly
1456
+ to end consumers that are NOT healthcare providers.","name":"Cold or Hot Therapy
1457
+ Packs - Reusable","product_tax_code":"42142100A0002"},{"description":"A heating
1458
+ pad is a pad used for warming of parts of the body in order to manage pain. Types
1459
+ of heating pads include electrical, chemical and hot water bottles. This
1460
+ code is intended for sales directly to end consumers that are NOT healthcare
1461
+ providers.","name":"Heating Pads","product_tax_code":"42142100A0001"},{"description":"A
1462
+ single use pain management supply that includes artificial ice packs, gel
1463
+ packs, heat wraps, etc used for pain relief. These products contain a \"drug
1464
+ facts\" panel or a statement of active ingredients. This code is intended
1465
+ for sales directly to end consumers that are NOT healthcare providers.","name":"Cold
1466
+ or Hot Therapy Packs - Disposable - Medicated","product_tax_code":"42142100A0004"},{"description":"A
1467
+ single use pain management supply that includes artificial ice packs, gel
1468
+ packs, heat wraps, etc used for pain relief. This code is intended for sales
1469
+ directly to end consumers that are NOT healthcare providers.","name":"Cold
1470
+ or Hot Therapy Packs - Disposable","product_tax_code":"42142100A0003"},{"description":"Baby
1471
+ powder is an astringent powder used for preventing diaper rash, as a spray,
1472
+ and for other cosmetic uses. It may be composed of talcum (in which case it
1473
+ is also called talcum powder) or corn starch. These products do not contain
1474
+ a \"drug facts\" panel or a statement of active ingredients. This code is
1475
+ intended for sales directly to end consumers that are NOT healthcare providers.","name":"Baby
1476
+ Powder","product_tax_code":"53131649A0001"},{"description":"Baby oil is an
1477
+ inert (typically mineral) oil for the purpose of keeping skin soft and supple. These
1478
+ products do not contain a \"drug facts\" panel or a statement of active ingredients. This
1479
+ code is intended for sales directly to end consumers that are NOT healthcare
1480
+ providers.","name":"Baby Oil","product_tax_code":"51241900A0001"},{"description":"A
1481
+ cosmetic foam or gel used for shaving preparation. The purpose of shaving
1482
+ cream is to soften the hair by providing lubrication. These products do not
1483
+ contain a \"drug facts\" panel or a statement of active ingredients. This
1484
+ code is intended for sales directly to end consumers that are NOT healthcare
1485
+ providers.","name":"Shaving Creams","product_tax_code":"53131611A0000"},{"description":"Personal
1486
+ under-arm deodorants/antiperspirants containing natural ingredients and/or
1487
+ ingredients that are not considered drugs. These products do not contain
1488
+ a \"drug facts\" panel or a statement of active ingredients. This code is
1489
+ intended for sales directly to end consumers that are NOT healthcare providers.","name":"Deodorant
1490
+ - Natural or no active ingredients","product_tax_code":"53131606A0001"},{"description":"A
1491
+ hair care product for cleansing the hair/scalp. These products do not contain
1492
+ a \"drug facts\" panel or a statement of active ingredients. This code is
1493
+ intended for sales directly to end consumers that are NOT healthcare providers.","name":"Shampoo","product_tax_code":"53131628A0000"},{"description":"Various
1494
+ surfactant preparations to improve cleaning, enhance the enjoyment of bathing,
1495
+ and serve as a vehicle for cosmetic agents. These products do not contain
1496
+ a \"drug facts\" panel or a statement of active ingredients. This code
1497
+ is intended for sales directly to end consumers that are NOT healthcare providers.","name":"Bubble
1498
+ Bath, Bath Salts/Oils/Crystals","product_tax_code":"53131612A0001"},{"description":"Cosmetic
1499
+ mouthwash may temporarily control bad breath and leave behind a pleasant taste,
1500
+ but has no chemical or biological application beyond their temporary benefit. These
1501
+ products do not contain a \"drug facts\" panel or a statement of active ingredients. This
1502
+ code is intended for sales directly to end consumers that are NOT healthcare
1503
+ providers.","name":"Mouthwash - Cosmetic","product_tax_code":"53131501A0001"},{"description":"Teeth
1504
+ whitening gels, rinse, strips, trays, etc containing bleaching agents. These
1505
+ products do not contain a \"drug facts\" panel or a statement of active ingredients. This
1506
+ code is intended for sales directly to end consumers that are NOT healthcare
1507
+ providers.","name":"Teeth Whitening Kits","product_tax_code":"42151506A0000"},{"description":"A
1508
+ hair care product typically applied and rinsed after shampooing that is used
1509
+ to improve the feel, appearance and manageability of hair. These products
1510
+ do not contain a \"drug facts\" panel or a statement of active ingredients. This
1511
+ code is intended for sales directly to end consumers that are NOT healthcare
1512
+ providers.","name":"Conditioner - Hair","product_tax_code":"53131628A0002"},{"description":"Depilatories
1513
+ are cosmetic preparations used to remove hair from the skin. Chemical depilatories
1514
+ are available in gel, cream, lotion, aerosol, roll-on, and powder forms. These
1515
+ products do not contain a \"drug facts\" panel or a statement of active ingredients. This
1516
+ code is intended for sales directly to end consumers that are NOT healthcare
1517
+ providers.","name":"Hair Removal Products","product_tax_code":"53131623A0000"},{"description":"Breath
1518
+ spray is a product sprayed into the mouth and breath strips dissolve in the
1519
+ mouth for the purpose of eliminating halitosis. These products do not contain
1520
+ a \"drug facts\" panel or a statement of active ingredients. This code
1521
+ is intended for sales directly to end consumers that are NOT healthcare providers.","name":"Breath
1522
+ Spray/dissolvable strips","product_tax_code":"53131509A0000"},{"description":"Lotions,
1523
+ moisturizers, creams, powders, sprays, etc that promote optimal skin health. These
1524
+ products do not contain a \"drug facts\" panel or a statement of active ingredients. This
1525
+ code is intended for sales directly to end consumers that are NOT healthcare
1526
+ providers.","name":"Skin Care Products","product_tax_code":"51241200A0002"},{"description":"Liquid
1527
+ drops to be placed inside the ear canal to reduce the symptoms of an ear ache,
1528
+ or to act as an ear drying aid, or to loosen, cleanse, and aid in the removal
1529
+ of ear wax. These products contain a \"drug facts\" panel or a statement
1530
+ of active ingredients. Examples include Ear Ache, Swimmers'' Ears, and Ear
1531
+ Wax removal drops. This code is intended for sales directly to end consumers
1532
+ that are NOT healthcare providers.","name":"Ear Drops - Medicated","product_tax_code":"51241000A0001"},{"description":"Topical
1533
+ medicated solutions for treating skin acne. These products contain a \"drug
1534
+ facts\" panel or a statement of active ingredients. This code is intended
1535
+ for sales directly to end consumers that are NOT healthcare providers.","name":"Acne
1536
+ Treatments","product_tax_code":"51241400A0001"},{"description":"A skin cream
1537
+ forming a protective barrier to help heal and soothe diaper rash discomfort. These
1538
+ products contain a \"drug facts\" panel or a statement of active ingredients. This
1539
+ code is intended for sales directly to end consumers that are NOT healthcare
1540
+ providers.","name":"Diaper Cream","product_tax_code":"51241859A0001"},{"description":"A
1541
+ liquid solution typically used as a topical antiseptic. The products contain
1542
+ a \"drug facts\" panel or a statement of active ingredients. This code is
1543
+ intended for sales directly to end consumers that are NOT healthcare providers.","name":"Isopropyl
1544
+ (Rubbing) Alcohol","product_tax_code":"51471901A0000"},{"description":"Hydrogen
1545
+ peroxide is a mild antiseptic used on the skin to prevent infection of minor
1546
+ cuts, scrapes, and burns. It may also be used as a mouth rinse to help remove
1547
+ mucus or to relieve minor mouth irritation (e.g., due to canker/cold sores,
1548
+ gingivitis). These products contain a \"drug facts\" panel or a statement
1549
+ of active ingredients. This code is intended for sales directly to end consumers
1550
+ that are NOT healthcare providers.","name":"Hydrogen Peroxide","product_tax_code":"51473503A0000"},{"description":"Articles
1551
+ intended to be rubbed, poured, sprinkled, or sprayed on, introduced into,
1552
+ or otherwise applied to the human body or any part thereof for beautifying,
1553
+ promoting attractiveness, or altering the appearance. This category supports
1554
+ only the following items: Acrylic fingernail glue, Acrylic fingernails, Artificial
1555
+ eyelashes, Blush, Bronzer, Body glitter, Concealer, Eyelash glue, Finger/toenail
1556
+ decorations, Finger/toenail polish, Nail polish remover, Hair coloring, Hair
1557
+ mousse/gel, Hair oil, Hair spray, Hair relaxer, Hair wave treatment, Hair
1558
+ wax, Lip gloss, Lip liner, Lipstick, Liquid foundation, Makeup, Mascara, Nail
1559
+ polish remover, Powder foundation, Cologne, Perfume. This code is intended
1560
+ for sales directly to end consumers that are NOT healthcare providers.","name":"Cosmetics
1561
+ - Beautifying","product_tax_code":"53131619A0001"},{"description":"Power cords","name":"Power
1562
+ cords","product_tax_code":"26121636A0000"},{"description":"Archery accessories
1563
+ including quivers, releases, arrow shafts, armguards, hunting belts, bow parts,
1564
+ cleaning products, mounted safety equipment, scopes, sights, hunting slings,
1565
+ string wax, targets, target throwers, etc.","name":"Archery Accessories","product_tax_code":"49181602A0002"},{"description":"Landscape
1566
+ soil, mulch, compost - residential","name":"Landscape Soil, Mulch, Compost
1567
+ - Residential","product_tax_code":"11121700A0001"},{"description":"Firearms,
1568
+ limited to pistols, revolvers, rifles with a barrel no greater than an internal
1569
+ diameter of .50 caliber or a shotguns of 10 gauge or smaller.","name":"Firearms","product_tax_code":"46101500A0001"},{"description":"Firearm
1570
+ accessories including repair parts, cleaning products, holsters, mounted safety
1571
+ equipment, choke tubes, scopes, shooting tripod/bipod/monopod, shooting bags/pouches,
1572
+ sights, etc.","name":"Firearm Accessories","product_tax_code":"46101506A0001"},{"description":"Portable
1573
+ fuel container","name":"Portable Fuel Container","product_tax_code":"24111808A0001"},{"description":"Hard
1574
+ and soft cases designed specifically for firearms equipment","name":"Gun Cases","product_tax_code":"46101801A0000"},{"description":"Primary
1575
+ archery equipment including bows, crossbow, and bow strings.","name":"Archery
1576
+ Equipment","product_tax_code":"49181602A0001"},{"description":"Hard and soft
1577
+ cases designed specifically for archery equipment.","name":"Archery Cases","product_tax_code":"46101801A0001"},{"description":"Protective
1578
+ earmuffs to muffle the sound of gunfire.","name":"Hearing Protection Earmuffs","product_tax_code":"46181902A0001"},{"description":"Ammunition
1579
+ for firearms with a barrel no greater than an internal diameter of .50 caliber
1580
+ or a shotgun of 10 gauge or smaller., including bullets, shotgun shells, and
1581
+ gunpowder.","name":"Ammunition","product_tax_code":"46101600A0001"},{"description":"Bedclothes
1582
+ items including sheets, pillow cases, bedspreads, comforters, blankets, throws,
1583
+ duvet covers, pillow shams, bed skirts, mattress pad, mattress toppers, and
1584
+ pillows.","name":"Bedding","product_tax_code":"52121500A0000"},{"description":"Towels
1585
+ used for individual drying of persons, including bath towels, beach towels,
1586
+ wash cloths, hand towels, fact towels, sport towels, etc.","name":"Bath towels","product_tax_code":"52121700A0000"},{"description":"WaterSense
1587
+ labeled urinals.","name":"Urinals - WaterSense","product_tax_code":"30181506A0000"},{"description":"WaterSense
1588
+ labeled toilets.","name":"Toilets - WaterSense","product_tax_code":"30181505A0000"},{"description":"WaterSense
1589
+ labeled irrigation controllers, which act like a thermostat for your sprinkler
1590
+ system telling it when to turn on and off, use local weather and landscape
1591
+ conditions to tailor watering schedules to actual conditions on the site.","name":"Irrigation
1592
+ Controls - WaterSense","product_tax_code":"21102503A0001"},{"description":"Ceiling
1593
+ Fans carrying an Energy Star rating.","name":"Ceiling fans - Energy Star","product_tax_code":"40101609A0000"},{"description":"Standard
1594
+ incandescent light bulbs carrying an Energy Star rating.","name":"Incandescent
1595
+ Light Bulbs - Energy Star","product_tax_code":"39101612A0001"},{"description":"Compact
1596
+ Fluorescent light (CFL) bulbs carrying an Energy Star rating.","name":"Compact
1597
+ Fluorescent Light Bulbs - Energy Star","product_tax_code":"39101619A0001"},{"description":"Domestic
1598
+ appliance carrying an Energy Star Rating which reduces and maintains the level
1599
+ of humidity in the air.","name":"Dehumidifier - Energy Star","product_tax_code":"40101902A0000"},{"description":"Domestic
1600
+ air conditioning (central or room) systems carrying Energy Star rating.","name":"Air
1601
+ conditioners - Energy Star","product_tax_code":"40101701A0000"},{"description":"Artificial
1602
+ ice, blue ice, ice packs, reusable ice","name":"Artificial Ice","product_tax_code":"24121512A0000"},{"description":"A
1603
+ port replicator is an attachment for a notebook computer that allows a number
1604
+ of devices such as a printer, large monitor, and keyboard to be simultaneously
1605
+ connected.","name":"Port Replicators","product_tax_code":"43211603A0000"},{"description":"Computer
1606
+ Mouse/Pointing Devices","name":"Computer Mouse/Pointing Devices","product_tax_code":"43211708A0000"},{"description":"Storage
1607
+ drives, hard drives, Zip drives, etc.","name":"Computer Drives","product_tax_code":"43201800A0001"},{"description":"An
1608
+ in home programmable thermostat, such as a WiFi enabled smart thermostat,
1609
+ carrying an Energy Star rating.","name":"Programmable Wall Thermostat - Energy
1610
+ Star","product_tax_code":"41112209A0001"},{"description":"Domestic gas or
1611
+ oil boilers for space or water heating carrying an Energy Star rating.","name":"Boilers
1612
+ - Energy Star","product_tax_code":"40102004A0001"},{"description":"Domestic
1613
+ water heater carrying Energy Star rating.","name":"Water heater - Energy Star","product_tax_code":"40101825A0000"},{"description":"Domestic
1614
+ freezers carrying Energy Star rating.","name":"Freezers- Energy Star","product_tax_code":"52141506A0000"},{"description":"Domestic
1615
+ air source heat pumps carrying Energy Star rating.","name":"Heat Pumps - Energy
1616
+ Star","product_tax_code":"40101806A0000"},{"description":"Domestic gas or
1617
+ oil furnaces carrying an Energy Star rating.","name":"Furnaces - Energy Star","product_tax_code":"40101805A0000"},{"description":"Plywood,
1618
+ window film, storm shutters, hurricane shutters or other materials specifically
1619
+ designed to protect windows.","name":"Storm shutters/window protection devices","product_tax_code":"30151801A0001"},{"description":"Smoke
1620
+ Detectors","name":"Smoke Detectors","product_tax_code":"46191501A0000"},{"description":"Mobile
1621
+ phone charging device/cord","name":"Mobile Phone Charging Device/cord","product_tax_code":"43191501A0002"},{"description":"A
1622
+ webcam is a video camera that feeds or streams an image or video in real time
1623
+ to or through a computer to a computer network, such as the Internet. Webcams
1624
+ are typically small cameras that sit on a desk, attach to a user''s monitor,
1625
+ or are built into the hardware","name":"Web Camera","product_tax_code":"45121520A0000"},{"description":"A
1626
+ sound card is an expansion component used in computers to receive and send
1627
+ audio.","name":"Sound Cards","product_tax_code":"43201502A0000"},{"description":"Computer
1628
+ Speakers","name":"Computer Speakers","product_tax_code":"43211607A0000"},{"description":"Computer
1629
+ Microphones","name":"Computer Microphones","product_tax_code":"43211719A0000"},{"description":"A
1630
+ docking station is a hardware frame and set of electrical connection interfaces
1631
+ that enable a notebook computer to effectively serve as a desktop computer.","name":"Docking
1632
+ Stations","product_tax_code":"43211602A0000"},{"description":"Computer Batteries","name":"Computer
1633
+ Batteries","product_tax_code":"26111711A0001"},{"description":"Computer Monitor/Displays","name":"Computer
1634
+ Monitor/Displays","product_tax_code":"43211900A0000"},{"description":"Computer
1635
+ Keyboards","name":"Computer Keyboards","product_tax_code":"43211706A0000"},{"description":"Printer
1636
+ Ink","name":"Printer Ink","product_tax_code":"44103105A0000"},{"description":"Printer
1637
+ Paper","name":"Printer Paper","product_tax_code":"14111507A0000"},{"description":"Non-electric
1638
+ can opener","name":"Can opener - manual","product_tax_code":"52151605A0001"},{"description":"Sheet
1639
+ music - Student","name":"Sheet music - Student","product_tax_code":"55101514A0000"},{"description":"Musical
1640
+ instruments - Student","name":"Musical instruments - Student","product_tax_code":"60130000A0001"},{"description":"Reference
1641
+ printed material commonly used by a student in a course of study as a reference
1642
+ and to learn the subject being taught.","name":"Dictionaries/Thesauruses","product_tax_code":"55101526A0001"},{"description":"An
1643
+ item commonly used by a student in a course of study for artwork. This category
1644
+ is limited to the following items...clay and glazes, paints, paintbrushes
1645
+ for artwork, sketch and drawing pads, watercolors.","name":"School Art Supplies","product_tax_code":"60121200A0001"},{"description":"A
1646
+ calendar based notebook to aid in outlining one''s daily appointments, classes,
1647
+ activities, etc.","name":"Daily Planners","product_tax_code":"44112004A0001"},{"description":"Portable
1648
+ self-powered or battery powered radio, two-way radio, weatherband radio.","name":"Portable
1649
+ Radios","product_tax_code":"43191510A0000"},{"description":"Single or multi-pack
1650
+ AA, AAA, c, D, 6-volt or 9-volt batteries, excluding automobile or boat batteries.","name":"Alkaline
1651
+ Batteries","product_tax_code":"26111702A0000"},{"description":"Routers","name":"Routers","product_tax_code":"43222609A0000"},{"description":"Removable
1652
+ storage media such as compact disks, flash drives, thumb drives, flash memory
1653
+ cards.","name":"Computer Storage Media","product_tax_code":"43202000A0000"},{"description":"Computer
1654
+ Printer","name":"Computer Printer","product_tax_code":"43212100A0001"},{"description":"Portable
1655
+ self-powered or battery powered light sources, including flashlights, lanterns,
1656
+ emergency glow sticks or light sticks.","name":"Portable Light Sources","product_tax_code":"39111610A0000"},{"description":"Canned
1657
+ software on tangible media that is used for non-recreational purposes, such
1658
+ as Antivirus, Database, Educational, Financial, Word processing, etc.","name":"Software
1659
+ - Prewritten, tangible media - Non-recreational","product_tax_code":"43230000A1101"},{"description":"Personal
1660
+ computers, including laptops, tablets, desktops.","name":"Personal Computers","product_tax_code":"43211500A0001"},{"description":"A
1661
+ device that joins pages of paper or similar material by fastening a thin metal
1662
+ staple through the sheets and folding the ends underneath.","name":"Staplers/Staples","product_tax_code":"44121615A0000"},{"description":"Pins/tacks
1663
+ to secure papers, pictures, calendars, etc. to bulletin boards, walls, etc.","name":"Push
1664
+ pins/tacks","product_tax_code":"44122106A0000"},{"description":"Bags/packs
1665
+ designed to carry students'' books during the school day. This category does
1666
+ not include backpags for traveling, hiking, camping, etc.","name":"Bookbags/Backpacks
1667
+ - Student","product_tax_code":"53121603A0001"},{"description":"Ground anchor
1668
+ systems and tie down kits for securing property against severe weather.","name":"Ground
1669
+ Anchor Systems and Tie-down Kits","product_tax_code":"31162108A0000"},{"description":"An
1670
+ expansion card that allows the computer to send graphical information to a
1671
+ video display device such as a monitor, TV, or projector. Video cards are
1672
+ often used by gamers in place of integrated graphics due to their extra processing
1673
+ power and video ram.","name":"Video/Graphics Card","product_tax_code":"43201401A0000"},{"description":"Scanners","name":"Scanners","product_tax_code":"43211711A0000"},{"description":"Modems","name":"Modems","product_tax_code":"43222628A0000"},{"description":"A
1674
+ map that could be used by a student in a course of study as a reference and
1675
+ to learn the subject being taught.","name":"Maps - Student","product_tax_code":"60103410A0001"},{"description":"Tarps,
1676
+ plastic sheeting, plastic drop cloths, waterproof sheeting.","name":"Tarpaulins
1677
+ and Weatherproof Sheeting","product_tax_code":"24141506A0000"},{"description":"Portable
1678
+ generator used to provide light or communications or power appliances during
1679
+ a power outage.","name":"Portable Generator","product_tax_code":"26111604A0001"},{"description":"Headphones/Earbuds","name":"Headphones/Earbuds","product_tax_code":"52161514A0000"},{"description":"A
1680
+ portable electronic device for reading digital books and periodicals.","name":"E-Book
1681
+ Readers","product_tax_code":"43211519A0000"},{"description":"Mobile phone
1682
+ batteries","name":"Mobile Phone Batteries","product_tax_code":"43191501A0001"},{"description":"A
1683
+ globe that could be used by a student in a course of study as a reference
1684
+ and to learn the subject being taught.","name":"Globes - Student","product_tax_code":"60104414A0001"},{"description":"Domestic
1685
+ standard size refrigerators carrying Energy Star rating.","name":"Refrigerators
1686
+ - Energy Star","product_tax_code":"52141501A0000"},{"description":"Non-electric
1687
+ food or beverage cooler.","name":"Food Storage Cooler","product_tax_code":"52152002A0001"},{"description":"A
1688
+ motherboard is the physical component in a computer that contains the computer''s
1689
+ basic circuitry and other components","name":"Motherboards","product_tax_code":"43201513A0000"},{"description":"Calculators","name":"Calculators","product_tax_code":"44101807A0000"},{"description":"Axes/Hatchets","name":"Axes/Hatchets","product_tax_code":"27112005A0000"},{"description":"Water
1690
+ conserving products are for conserving or retaining groundwater; recharging
1691
+ water tables; or decreasing ambient air temperature, and so limiting water
1692
+ evaporation. Examples include soil sufactants, a soaker or drip-irrigation
1693
+ hose, a moisture control for a sprinkler or irrigation system, a rain barrel
1694
+ or an alternative rain and moisture collection system, a permeable ground
1695
+ cover surface that allows water to reach underground basins, aquifers or water
1696
+ collection points.","name":"Water Conserving Products","product_tax_code":"21102500A0001"},{"description":"Domestic
1697
+ clothes drying appliances carrying Energy Star rating.","name":"Clothes drying
1698
+ machine - Energy Star","product_tax_code":"52141602A0000"},{"description":"Software
1699
+ - Prewritten, electronic delivery - Business Use","name":"Software - Prewritten,
1700
+ electronic delivery - Business Use","product_tax_code":"43230000A9200"},{"description":"Software
1701
+ - Custom, electronic delivery - Business Use","name":"Software - Custom, electronic
1702
+ delivery - Business Use","product_tax_code":"43230000A9201"},{"description":"Food
1703
+ and Beverage - Sugar and Sugar Substitutes","name":"Food and Beverage - Sugar
1704
+ and Sugar Substitutes","product_tax_code":"50161900A0000"},{"description":"Food
1705
+ and Beverage - Eggs and egg products","name":"Food and Beverage - Eggs and
1706
+ egg products","product_tax_code":"50131600A0000"},{"description":"Food and
1707
+ Beverage - Coffee, coffee substitutes and tea","name":"Food and Beverage -
1708
+ Coffee, coffee substitutes and tea","product_tax_code":"50201700A0000"},{"description":"Food
1709
+ and Beverage - Candy","name":"Food and Beverage - Candy","product_tax_code":"50161800A0000"},{"description":"Food
1710
+ and Beverage - Butter, Margarine, Shortening and Cooking Oils","name":"Food
1711
+ and Beverage - Butter, Margarine, Shortening and Cooking Oils","product_tax_code":"50151500A0000"},{"description":"Clothing
1712
+ - Facial shields","name":"Clothing - Facial shields","product_tax_code":"46181702A0001"},{"description":"Clothing
1713
+ - Hard hats","name":"Clothing - Hard hats","product_tax_code":"46181701A0001"},{"description":"Clothing
1714
+ - Cleanroom footwear","name":"Clothing - Cleanroom footwear","product_tax_code":"46181603A0001"},{"description":"Clothing
1715
+ - Fire retardant footwear","name":"Clothing - Fire retardant footwear","product_tax_code":"46181601A0001"},{"description":"Clothing
1716
+ - Protective pants","name":"Clothing - Protective pants","product_tax_code":"46181527A0001"},{"description":"Clothing
1717
+ - Garters","name":"Clothing - Garters","product_tax_code":"53102509A0000"},{"description":"Software
1718
+ maintenance and support - Optional maintenance and support charges for custom
1719
+ software including items delivered electronically (includes support services
1720
+ only - no updates/upgrades)","name":"Software maintenance and support - Optional,
1721
+ custom, electronic delivery (support services only)","product_tax_code":"81112200A2222"},{"description":"Software
1722
+ maintenance and support - Mandatory maintenance and support charges for prewritten
1723
+ software including items delivered by load and leave","name":"Software maintenance
1724
+ and support - Mandatory, prewritten, load and leave delivery","product_tax_code":"81112200A1310"},{"description":"Software
1725
+ maintenance and support - Mandatory maintenance and support charges for prewritten
1726
+ software including items delivered electronically","name":"Software maintenance
1727
+ and support - Mandatory, prewritten, electronic delivery","product_tax_code":"81112200A1210"},{"description":"Electronic
1728
+ software documentation or user manuals - For prewritten software & delivered
1729
+ electronically","name":"Electronic software documentation or user manuals
1730
+ - Prewritten, electronic delivery","product_tax_code":"55111601A1200"},{"description":"Clothing
1731
+ - Fur Ear muffs or scarves","name":"Clothing - Fur Ear muffs or scarves","product_tax_code":"53102502A0001"},{"description":"Clothing
1732
+ - Safety glasses","name":"Clothing - Safety glasses","product_tax_code":"46181802A0001"},{"description":"Software
1733
+ - Prewritten & delivered on tangible media","name":"Software - Prewritten,
1734
+ tangible media","product_tax_code":"43230000A1100"},{"description":"Mainframe
1735
+ administration services\r\n","name":"Mainframe administration services\r\n","product_tax_code":"81111802A0000"},{"description":"Co-location
1736
+ service","name":"Co-location service","product_tax_code":"81111814A0000"},{"description":"Information
1737
+ management system for mine action IMSMA\r\n","name":"Information management
1738
+ system for mine action IMSMA\r\n","product_tax_code":"81111710A0000"},{"description":"Local
1739
+ area network LAN maintenance or support","name":"Local area network LAN maintenance
1740
+ or support","product_tax_code":"81111803A0000"},{"description":"Data center
1741
+ services","name":"Data center services","product_tax_code":"81112003A0000"},{"description":"Wide
1742
+ area network WAN maintenance or support","name":"Wide area network WAN maintenance
1743
+ or support","product_tax_code":"81111804A0000"},{"description":"Electronic
1744
+ data interchange EDI design\r\n","name":"Electronic data interchange EDI design\r\n","product_tax_code":"81111703A0000"},{"description":"Software
1745
+ maintenance and support - Optional maintenance and support charges for prewritten
1746
+ software including items delivered on tangible media (includes support services
1747
+ only - no updates/upgrades)","name":"Software maintenance and support - Optional,
1748
+ prewritten, tangible media (support services only)","product_tax_code":"81112200A1122"},{"description":"Software
1749
+ maintenance and support - Optional maintenance and support charges for prewritten
1750
+ software including items delivered on tangible media (includes software updates/upgrades)","name":"Software
1751
+ maintenance and support - Optional, prewritten, tangible media (incl. updates/upgrades)","product_tax_code":"81112200A1121"},{"description":"Clothing
1752
+ - Safety sleeves","name":"Clothing - Safety sleeves","product_tax_code":"46181516A0001"},{"description":"Clothing
1753
+ - Fire retardant apparel","name":"Clothing - Fire retardant apparel","product_tax_code":"46181508A0001"},{"description":"Software
1754
+ maintenance and support - Optional maintenance and support charges for prewritten
1755
+ software including items delivered by load and leave (includes support services
1756
+ only - no updates/upgrades)","name":"Software maintenance and support - Optional,
1757
+ prewritten, load and leave delivery (support services only)","product_tax_code":"81112200A1322"},{"description":"Software
1758
+ maintenance and support - Optional maintenance and support charges for prewritten
1759
+ software including items delivered by load and leave (includes software updates/upgrades)","name":"Software
1760
+ maintenance and support - Optional, prewritten, load and leave delivery (incl.
1761
+ updates/upgrades)","product_tax_code":"81112200A1321"},{"description":"Software
1762
+ maintenance and support - Optional maintenance and support charges for prewritten
1763
+ software including items delivered electronically (includes support services
1764
+ only - no updates/upgrades)","name":"Software maintenance and support - Optional,
1765
+ prewritten, electronic delivery (support services only)","product_tax_code":"81112200A1222"},{"description":"Software
1766
+ maintenance and support - Optional maintenance and support charges for custom
1767
+ software including items delivered on tangible media (includes support services
1768
+ only - no updates/upgrades)","name":"Software maintenance and support - Optional
1769
+ maintenance and support charges for custom software including items delivered
1770
+ on tangible media (includes support services only - no updates/upgrades)\r\n","product_tax_code":"81112200A2122"},{"description":"Clothing
1771
+ - Protective ponchos","name":"Clothing - Protective ponchos","product_tax_code":"46181506A0001"},{"description":"Clothing
1772
+ - Protective gloves","name":"Clothing - Protective gloves","product_tax_code":"46181504A0001"},{"description":"Clothing
1773
+ - Synthetic Fur Vest","name":"Clothing - Synthetic Fur Vest","product_tax_code":"53103100A0002"},{"description":"Software
1774
+ maintenance and support - Optional maintenance and support charges for custom
1775
+ software including items delivered on tangible media (includes software updates/upgrades)","name":"Software
1776
+ maintenance and support - Optional, custom, tangible media (incl. updates/upgrades)","product_tax_code":"81112200A2121"},{"description":"Computer
1777
+ graphics service\r\n","name":"Computer graphics service\r\n","product_tax_code":"81111512A0000"},{"description":"Proprietary
1778
+ or licensed systems maintenance or support","name":"Proprietary or licensed
1779
+ systems maintenance or support","product_tax_code":"81111805A0000"},{"description":"Software
1780
+ - Prewritten & delivered electronically","name":"Software - Prewritten, electronic
1781
+ delivery","product_tax_code":"43230000A1200"},{"description":"Software maintenance
1782
+ and support - Optional maintenance and support charges for prewritten software
1783
+ including items delivered electronically (includes software updates/upgrades)","name":"Software
1784
+ maintenance and support - Optional, prewritten, electronic delivery (incl.
1785
+ updates/upgrades)","product_tax_code":"81112200A1221"},{"description":"Software
1786
+ maintenance and support - Optional maintenance and support charges for custom
1787
+ software including items delivered by load and leave (includes support services
1788
+ only - no updates/upgrades)","name":"Software maintenance and support - Optional,
1789
+ custom, load and leave delivery (support services only)","product_tax_code":"81112200A2322"},{"description":"Software
1790
+ maintenance and support - Optional maintenance and support charges for custom
1791
+ software including items delivered by load and leave (includes software updates/upgrades)","name":"Software
1792
+ maintenance and support - Optional, custom, load and leave delivery (incl.
1793
+ updates/upgrades)","product_tax_code":"81112200A2321"},{"description":"Software
1794
+ maintenance and support - Optional maintenance and support charges for custom
1795
+ software including items delivered electronically (includes software updates/upgrades)","name":"Software
1796
+ maintenance and support - Optional, custom, electronic delivery (incl. updates/upgrades)","product_tax_code":"81112200A2221"},{"description":"Software
1797
+ maintenance and support - Mandatory maintenance and support charges for custom
1798
+ software including items delivered on tangible media","name":"Software maintenance
1799
+ and support - Mandatory, custom, tangible media","product_tax_code":"81112200A2110"},{"description":"Software
1800
+ maintenance and support - Mandatory maintenance and support charges for custom
1801
+ software including items delivered electronically","name":"Software maintenance
1802
+ and support - Mandatory, custom, electronic delivery","product_tax_code":"81112200A2210"},{"description":"Food
1803
+ and Beverage - Fish and seafood","name":"Food and Beverage - Fish and seafood","product_tax_code":"50121500A0000"},{"description":"Food
1804
+ and Beverage - Ice cubes","name":"Food and Beverage - Ice cubes","product_tax_code":"50202302A0000"},{"description":"Food
1805
+ and Beverage - Cooking Ingredients","name":"Food and Beverage - Cooking Ingredients","product_tax_code":"50181700A0000"},{"description":"Food
1806
+ and Beverage - Cocoa and Cocoa products","name":"Food and Beverage - Cocoa
1807
+ and Cocoa products","product_tax_code":"50161511A0000"},{"description":"Food
1808
+ and Beverage - Baby foods and formulas","name":"Food and Beverage - Baby foods
1809
+ and formulas","product_tax_code":"42231800A0000"},{"description":"Clothing
1810
+ - Hazardous material protective footwear","name":"Clothing - Hazardous material
1811
+ protective footwear","product_tax_code":"46181602A0001"},{"description":"Clothing
1812
+ - Welder gloves","name":"Clothing - Welder gloves","product_tax_code":"46181540A0001"},{"description":"Clothing
1813
+ - Protective shirts","name":"Clothing - Protective shirts","product_tax_code":"46181526A0001"},{"description":"Gift
1814
+ Cards","name":"Gift Cards","product_tax_code":"14111803A0001"},{"description":"Clothing
1815
+ - Leg protectors","name":"Clothing - Leg protectors","product_tax_code":"46181520A0001"},{"description":"Clothing
1816
+ - Protective coveralls","name":"Clothing - Protective coveralls","product_tax_code":"46181503A0001"},{"description":"Internet
1817
+ or intranet client application development services\r\n","name":"Internet
1818
+ or intranet client application development services\r\n","product_tax_code":"81111509A0000"},{"description":"Database
1819
+ design\r\n","name":"Database design\r\n","product_tax_code":"81111704A0000"},{"description":"Computer
1820
+ programmers\r\n","name":"Computer programmers\r\n","product_tax_code":"81111600A0000"},{"description":"Clothing
1821
+ - Synthetic Fur Hat","name":"Clothing - Synthetic Fur Hat","product_tax_code":"53102504A0002"},{"description":"System
1822
+ or application programming management service\r\n","name":"System or application
1823
+ programming management service\r\n","product_tax_code":"81111511A0000"},{"description":"Food
1824
+ and Beverage - Fruit","name":"Food and Beverage - Fruit","product_tax_code":"50300000A0000"},{"description":"Food
1825
+ and Beverage - Vegetables","name":"Food and Beverage - Vegetables","product_tax_code":"50400000A0000"},{"description":"Food
1826
+ and Beverage - Dried fruit, unsweetened","name":"Food and Beverage - Dried
1827
+ fruit, unsweetened","product_tax_code":"50320000A0000"},{"description":"Food
1828
+ and Beverage - Snack Foods","name":"Food and Beverage - Snack Foods","product_tax_code":"50192100A0000"},{"description":"Food
1829
+ and Beverage - Processed Nuts and Seeds","name":"Food and Beverage - Nuts
1830
+ and seeds that have been processed or treated by salting, spicing, smoking,
1831
+ roasting, or other means","product_tax_code":"50101716A0001"},{"description":"Food
1832
+ and Beverage - Non-Alcoholic Beer, Wine","name":"Food and Beverage - Non-Alcoholic
1833
+ Beer, Wine","product_tax_code":"50202300A0001"},{"description":"Food and Beverage
1834
+ - Ice Cream, sold in container less than one pint","name":"Food and Beverage
1835
+ - Ice Cream, sold in container less than one pint","product_tax_code":"50192304A0000"},{"description":"Food
1836
+ and Beverage - Alcoholic beverages - Spirits","name":"Food and Beverage -
1837
+ Alcoholic beverages - Spirits","product_tax_code":"50202206A0000"},{"description":"Food
1838
+ and Beverage - Wine","name":"Food and Beverage - Alcoholic beverages - Wine","product_tax_code":"50202203A0000"},{"description":"Electronic
1839
+ content bundle - Delivered electronically with less than permanent rights
1840
+ of usage and streamed","name":"Electronic content bundle - Delivered electronically
1841
+ with less than permanent rights of usage and streamed","product_tax_code":"55111500A9220"},{"description":"Clothing
1842
+ - Welding masks","name":"Clothing - Welding masks","product_tax_code":"46181703A0001"},{"description":"Clothing
1843
+ - Protective wear dispenser","name":"Clothing - Protective wear dispenser","product_tax_code":"46181553A0001"},{"description":"Clothing
1844
+ - Anti cut gloves","name":"Clothing - Anti cut gloves","product_tax_code":"46181536A0001"},{"description":"Clothing
1845
+ - Reflective apparel or accessories","name":"Clothing - Reflective apparel
1846
+ or accessories","product_tax_code":"46181531A0001"},{"description":"Clothing
1847
+ - Heat resistant clothing","name":"Clothing - Heat resistant clothing","product_tax_code":"46181518A0001"},{"description":"Clothing
1848
+ - Cleanroom apparel","name":"Clothing - Cleanroom apparel","product_tax_code":"46181512A0001"},{"description":"Clothing
1849
+ - Hazardous material protective apparel","name":"Clothing - Hazardous material
1850
+ protective apparel","product_tax_code":"46181509A0001"},{"description":"Clothing
1851
+ - Safety vests","name":"Clothing - Safety vests","product_tax_code":"46181507A0001"},{"description":"Clothing
1852
+ - Protective knee pads","name":"Clothing - Protective knee pads","product_tax_code":"46181505A0001"},{"description":"Clothing
1853
+ - Bullet proof vests","name":"Clothing - Bullet proof vests","product_tax_code":"46181502A0001"},{"description":"Clothing
1854
+ - Vest or waistcoats","name":"Clothing - Vest or waistcoats","product_tax_code":"53103100A0000"},{"description":"Clothing
1855
+ - Prisoner uniform","name":"Clothing - Prisoner uniform","product_tax_code":"53102716A0000"},{"description":"Clothing
1856
+ - Paramedic uniforms","name":"Clothing - Paramedic uniforms","product_tax_code":"53102712A0000"},{"description":"Clothing
1857
+ - Ambulance officers uniforms","name":"Clothing - Ambulance officers uniforms","product_tax_code":"53102709A0000"},{"description":"Clothing
1858
+ - Doctors coat","name":"Clothing - Doctors coat","product_tax_code":"53102707A0000"},{"description":"Clothing
1859
+ - Sweat bands","name":"Clothing - Sweat bands","product_tax_code":"53102506A0000"},{"description":"Clothing
1860
+ - Helmet parts or accessories","name":"Clothing - Helmet parts or accessories","product_tax_code":"46181706A0001"},{"description":"Clothing
1861
+ - Fur Vest","name":"Clothing - Fur Vest","product_tax_code":"53103100A0001"},{"description":"Clothing
1862
+ - Fur Gloves","name":"Clothing - Fur Gloves","product_tax_code":"53102503A0001"},{"description":"Clothing
1863
+ - Motorcycle helmets","name":"Clothing - Motorcycle helmets","product_tax_code":"46181705A0001"},{"description":"Operating
1864
+ system programming services\r\n","name":"Operating system programming services\r\n","product_tax_code":"81111505A0000"},{"description":"Local
1865
+ area network communications design\r\n","name":"Local area network communications
1866
+ design\r\n","product_tax_code":"81111702A0000"},{"description":"Clothing -
1867
+ Eye shields","name":"Clothing - Eye shields","product_tax_code":"46181803A0001"},{"description":"Clothing
1868
+ - Welders helmet","name":"Clothing - Welders helmet","product_tax_code":"46181711A0001"},{"description":"Clothing
1869
+ - Footwear covers","name":"Clothing - Footwear covers","product_tax_code":"46181606A0001"},{"description":"Clothing
1870
+ - Cooling vest","name":"Clothing - Cooling vest","product_tax_code":"46181554A0001"},{"description":"Clothing
1871
+ - Protective mesh jacket","name":"Clothing - Protective mesh jacket","product_tax_code":"46181551A0001"},{"description":"Clothing
1872
+ - Protective scarf","name":"Clothing - Protective scarf","product_tax_code":"46181550A0001"},{"description":"Clothing
1873
+ - Neck gaitor","name":"Clothing - Neck gaitor","product_tax_code":"46181549A0001"},{"description":"Clothing
1874
+ - Welder bib","name":"Clothing - Welder bib","product_tax_code":"46181548A0001"},{"description":"Clothing
1875
+ - Waterproof cap cover","name":"Clothing - Waterproof cap cover","product_tax_code":"46181547A0001"},{"description":"Clothing
1876
+ - Waterproof suit","name":"Clothing - Waterproof suit","product_tax_code":"46181545A0001"},{"description":"Clothing
1877
+ - Waterproof trousers or pants","name":"Clothing - Waterproof trousers or
1878
+ pants","product_tax_code":"46181544A0001"},{"description":"Clothing - Protective
1879
+ mittens","name":"Clothing - Protective mittens","product_tax_code":"46181542A0001"},{"description":"Clothing
1880
+ - Chemical resistant gloves","name":"Clothing - Chemical resistant gloves","product_tax_code":"46181541A0001"},{"description":"Clothing
1881
+ - Anti vibratory gloves","name":"Clothing - Anti vibratory gloves","product_tax_code":"46181539A0001"},{"description":"Clothing
1882
+ - Thermal gloves","name":"Clothing - Thermal gloves","product_tax_code":"46181538A0001"},{"description":"Clothing
1883
+ - Insulated gloves","name":"Clothing - Insulated gloves","product_tax_code":"46181537A0001"},{"description":"Clothing
1884
+ - Protective socks or hosiery","name":"Clothing - Protective socks or hosiery","product_tax_code":"46181535A0001"},{"description":"Clothing
1885
+ - Protective wristbands","name":"Clothing - Protective wristbands","product_tax_code":"46181534A0001"},{"description":"Clothing
1886
+ - Protective coats","name":"Clothing - Protective coats","product_tax_code":"46181533A0001"},{"description":"Clothing
1887
+ - Insulated clothing for cold environments","name":"Clothing - Insulated clothing
1888
+ for cold environments","product_tax_code":"46181529A0001"},{"description":"Clothing
1889
+ - Protective frock","name":"Clothing - Protective frock","product_tax_code":"46181528A0001"},{"description":"Clothing
1890
+ - Safety hoods","name":"Clothing - Safety hoods","product_tax_code":"46181522A0001"},{"description":"Clothing
1891
+ - Insulated or flotation suits","name":"Clothing - Insulated or flotation
1892
+ suits","product_tax_code":"46181517A0001"},{"description":"Clothing - Elbow
1893
+ protectors","name":"Clothing - Elbow protectors","product_tax_code":"46181514A0001"},{"description":"Clothing
1894
+ - Protective aprons","name":"Clothing - Protective aprons","product_tax_code":"46181501A0001"},{"description":"Clothing
1895
+ - Shoes","name":"Clothing - Shoes","product_tax_code":"53111600A0000"},{"description":"Clothing
1896
+ - Athletic wear","name":"Clothing - Athletic wear","product_tax_code":"53102900A0000"},{"description":"Clothing
1897
+ - Folkloric clothing","name":"Clothing - Folkloric clothing","product_tax_code":"53102200A0000"},{"description":"Clothing
1898
+ - Overalls or coveralls","name":"Clothing - Overalls or coveralls","product_tax_code":"53102100A0000"},{"description":"Clothing
1899
+ - Dresses or skirts or saris or kimonos","name":"Clothing - Dresses or skirts
1900
+ or saris or kimonos","product_tax_code":"53102000A0000"},{"description":"Clothing
1901
+ - Suits","name":"Clothing - Suits","product_tax_code":"53101900A0000"},{"description":"Clothing
1902
+ - Sport uniform","name":"Clothing - Sport uniform","product_tax_code":"53102717A0000"},{"description":"Clothing
1903
+ - Judicial robe","name":"Clothing - Judicial robe","product_tax_code":"53102714A0000"},{"description":"Clothing
1904
+ - Ushers uniforms","name":"Clothing - Ushers uniforms","product_tax_code":"53102713A0000"},{"description":"Clothing
1905
+ - Nurses uniforms","name":"Clothing - Nurses uniforms","product_tax_code":"53102708A0000"},{"description":"Clothing
1906
+ - School uniforms","name":"Clothing - School uniforms","product_tax_code":"53102705A0000"},{"description":"Clothing
1907
+ - Institutional food preparation or service attire","name":"Clothing - Institutional
1908
+ food preparation or service attire","product_tax_code":"53102704A0000"},{"description":"Clothing
1909
+ - Police uniforms","name":"Clothing - Police uniforms","product_tax_code":"53102703A0000"},{"description":"Clothing
1910
+ - Customs uniforms","name":"Clothing - Customs uniforms","product_tax_code":"53102702A0000"},{"description":"Clothing
1911
+ - Bandannas","name":"Clothing - Bandannas","product_tax_code":"53102511A0000"},{"description":"Clothing
1912
+ - Armbands","name":"Clothing - Armbands","product_tax_code":"53102508A0000"},{"description":"Clothing
1913
+ - Caps","name":"Clothing - Caps","product_tax_code":"53102516A0000"},{"description":"Clothing
1914
+ - Protective finger cots","name":"Clothing - Protective finger cots","product_tax_code":"46181530A0001"},{"description":"Application
1915
+ programming services\r\n","name":"Application programming services\r\n","product_tax_code":"81111504A0000"},{"description":"Application
1916
+ implementation services\r\n","name":"Application implementation services\r\n","product_tax_code":"81111508A0000"},{"description":"Clothing
1917
+ - Synthetic Fur Ear muffs or scarves","name":"Clothing - Synthetic Fur Ear
1918
+ muffs or scarves","product_tax_code":"53102502A0002"},{"description":"Clothing
1919
+ - Fur Poncho or Cape","name":"Clothing - Fur Poncho or Cape","product_tax_code":"53101806A0001"},{"description":"Food
1920
+ and Beverage - Vitamins and Supplements - labeled with nutritional facts","name":"Food
1921
+ and Beverage - Vitamins and Supplements - labeled with nutritional facts","product_tax_code":"50501500A0001"},{"description":"Food
1922
+ and Beverage - Nuts and seeds","name":"Food and Beverage - Nuts and seeds","product_tax_code":"50101716A0000"},{"description":"Food
1923
+ and Beverage - Milk Substitutes","name":"Food and Beverage - Milk Substitutes","product_tax_code":"50151515A9000"},{"description":"Food
1924
+ and Beverage - Milk and milk products","name":"Food and Beverage - Milk and
1925
+ milk products","product_tax_code":"50131700A0000"},{"description":"Food and
1926
+ Beverage - Cheese","name":"Food and Beverage - Cheese","product_tax_code":"50131800A0000"},{"description":"Clothing
1927
+ - Sandals","name":"Clothing - Sandals","product_tax_code":"53111800A0000"},{"description":"Clothing
1928
+ - Pajamas or nightshirts or robes","name":"Clothing - Pajamas or nightshirts
1929
+ or robes","product_tax_code":"53102600A0000"},{"description":"Clothing - Sweaters","name":"Clothing
1930
+ - Sweaters","product_tax_code":"53101700A0000"},{"description":"Clothing -
1931
+ Slacks or trousers or shorts","name":"Clothing - Slacks or trousers or shorts","product_tax_code":"53101500A0000"},{"description":"Clothing
1932
+ - Firefighter uniform","name":"Clothing - Firefighter uniform","product_tax_code":"53102718A0000"},{"description":"Clothing
1933
+ - Salon smocks","name":"Clothing - Salon smocks","product_tax_code":"53102711A0000"},{"description":"Clothing
1934
+ - Military uniforms","name":"Clothing - Military uniforms","product_tax_code":"53102701A0000"},{"description":"Clothing
1935
+ - Heel pads","name":"Clothing - Heel pads","product_tax_code":"53112003A0000"},{"description":"Clothing
1936
+ - Shoelaces","name":"Clothing - Shoelaces","product_tax_code":"53112002A0000"},{"description":"Clothing
1937
+ - Infant swaddles or buntings or receiving blankets","name":"Clothing - Infant
1938
+ swaddles or buntings or receiving blankets","product_tax_code":"53102608A0000"},{"description":"Clothing
1939
+ - Hats","name":"Clothing - Hats","product_tax_code":"53102503A0000"},{"description":"Clothing
1940
+ - Ties or scarves or mufflers","name":"Clothing - Ties or scarves or mufflers","product_tax_code":"53102502A0000"},{"description":"Clothing
1941
+ - Belts or suspenders","name":"Clothing - Belts or suspenders","product_tax_code":"53102501A0000"},{"description":"Clothing
1942
+ - Tights","name":"Clothing - Tights","product_tax_code":"53102404A0000"},{"description":"Clothing
1943
+ - Disposable youth training pants","name":"Clothing - Disposable youth training
1944
+ pants","product_tax_code":"53102311A0000"},{"description":"Clothing - Undershirts","name":"Clothing
1945
+ - Undershirts","product_tax_code":"53102301A0000"},{"description":"Clothing
1946
+ - Insulated cold weather shoe","name":"Clothing - Insulated cold weather shoe","product_tax_code":"46181610A0000"},{"description":"Food
1947
+ and Beverage - Grains, Rice, Cereal","name":"Food and Beverage - Grains, Rice,
1948
+ Cereal","product_tax_code":"50221200A0000"},{"description":"Clothing - Shirts","name":"Clothing
1949
+ - Shirts","product_tax_code":"53101600A0000"},{"description":"Clothing - Safety
1950
+ boots","name":"Clothing - Safety boots","product_tax_code":"46181604A0000"},{"description":"Clothing
1951
+ - Shin guards","name":"Clothing - Shin guards","product_tax_code":"49161525A0001"},{"description":"Clothing
1952
+ - Athletic supporter","name":"Clothing - Athletic supporter","product_tax_code":"49161517A0001"},{"description":"Clothing
1953
+ - Cleated or spiked shoes","name":"Clothing - Cleated or spiked shoes","product_tax_code":"53111900A0002"},{"description":"Wide
1954
+ area network communications design\r\n","name":"Wide area network communications
1955
+ design\r\n\r\n","product_tax_code":"81111701A0000"},{"description":"Systems
1956
+ integration design\r\n","name":"Systems integration design\r\n","product_tax_code":"81111503A0000"},{"description":"Clothing
1957
+ - Bridal Gown","name":"Clothing - Bridal Gown","product_tax_code":"53101801A0004"},{"description":"Clothing
1958
+ - Waterproof cap","name":"Clothing - Waterproof cap","product_tax_code":"46181546A0000"},{"description":"Food
1959
+ and Beverage - Yogurt","name":"Food and Beverage - Yogurt","product_tax_code":"50131800A0001"},{"description":"Food
1960
+ and Beverage - Nut Butters","name":"Food and Beverage - Nut Butters","product_tax_code":"50480000A9000"},{"description":"Food
1961
+ and Beverage - Jams and Jellies","name":"Food and Beverage - Jams and Jellies","product_tax_code":"50192401A0000"},{"description":"Food
1962
+ and Beverage - Honey, Maple Syrup","name":"Food and Beverage - Honey, Maple
1963
+ Syrup","product_tax_code":"50161509A0000"},{"description":"Food and Beverage
1964
+ - Foods for Immediate Consumption","name":"Food and Beverage - Foods for Immediate
1965
+ Consumption","product_tax_code":"90100000A0001"},{"description":"Food and
1966
+ Beverage - Bread and Flour Products","name":"Food and Beverage - Bread and
1967
+ Flour Products","product_tax_code":"50180000A0000"},{"description":"Clothing
1968
+ - Overshoes","name":"Clothing - Overshoes","product_tax_code":"53112000A0000"},{"description":"Clothing
1969
+ - Athletic footwear","name":"Clothing - Athletic footwear","product_tax_code":"53111900A0000"},{"description":"Clothing
1970
+ - Slippers","name":"Clothing - Slippers","product_tax_code":"53111700A0000"},{"description":"Clothing
1971
+ - Boots","name":"Clothing - Boots","product_tax_code":"53111500A0000"},{"description":"Clothing
1972
+ - T-Shirts","name":"Clothing - T-Shirts","product_tax_code":"53103000A0000"},{"description":"Clothing
1973
+ - Swimwear","name":"Clothing - Swimwear","product_tax_code":"53102800A0000"},{"description":"Clothing
1974
+ - Coats or jackets","name":"Clothing - Coats or jackets","product_tax_code":"53101800A0000"},{"description":"Clothing
1975
+ - Prison officer uniform","name":"Clothing - Prison officer uniform","product_tax_code":"53102715A0000"},{"description":"Clothing
1976
+ - Corporate uniforms","name":"Clothing - Corporate uniforms","product_tax_code":"53102710A0000"},{"description":"Clothing
1977
+ - Security uniforms","name":"Clothing - Security uniforms","product_tax_code":"53102706A0000"},{"description":"Clothing
1978
+ - Chevrons","name":"Clothing - Chevrons","product_tax_code":"53102518A0000"},{"description":"Clothing
1979
+ - Disposable work coat","name":"Clothing - Disposable work coat","product_tax_code":"53103201A0000"},{"description":"Clothing
1980
+ - Bath robes","name":"Clothing - Bath robes","product_tax_code":"53102606A0000"},{"description":"Clothing
1981
+ - Bib","name":"Clothing - Bib","product_tax_code":"53102521A0000"},{"description":"Clothing
1982
+ - Gloves or mittens","name":"Clothing - Gloves or mittens","product_tax_code":"53102504A0000"},{"description":"Clothing
1983
+ - Mouth guards","name":"Clothing - Mouth guards","product_tax_code":"42152402A0001"},{"description":"Clothing
1984
+ - Boxing gloves","name":"Clothing - Boxing gloves","product_tax_code":"49171600A0000"},{"description":"Clothing
1985
+ - Golf shoes","name":"Clothing - Golf shoes","product_tax_code":"53111900A0004"},{"description":"Clothing
1986
+ - Bowling shoes","name":"Clothing - Bowling shoes","product_tax_code":"53111900A0003"},{"description":"Internet
1987
+ or intranet server application development services\r\n","name":"Internet
1988
+ or intranet server application development services\r\n","product_tax_code":"81111510A0000"},{"description":"Data
1989
+ conversion service\r\n","name":"Data conversion service\r\n","product_tax_code":"81112010A0000"},{"description":"Client
1990
+ or server programming services\r\n","name":"Client or server programming services\r\n","product_tax_code":"81111506A0000"},{"description":"Clothing
1991
+ - Ballet or tap shoes","name":"Clothing - Ballet or tap shoes","product_tax_code":"53111900A0001"},{"description":"Clothing
1992
+ - Golf gloves","name":"Clothing - Golf gloves","product_tax_code":"49211606A0000"},{"description":"Hardware
1993
+ as a service (HaaS)","name":"Hardware as a service (HaaS)","product_tax_code":"81161900A0000"},{"description":"Cloud-based
1994
+ platform as a service (PaaS) - Personal Use","name":"Cloud-based platform
1995
+ as a service (PaaS) - Personal Use","product_tax_code":"81162100A0000"},{"description":"Clothing
1996
+ - Panty hose","name":"Clothing - Panty hose","product_tax_code":"53102403A0000"},{"description":"Clothing
1997
+ - Brassieres","name":"Clothing - Brassieres","product_tax_code":"53102304A0000"},{"description":"Clothing
1998
+ - Protective sandals","name":"Clothing - Protective sandals","product_tax_code":"46181608A0000"},{"description":"Clothing
1999
+ - Tuxedo or Formalwear","name":"Clothing - Tuxedo or Formalwear","product_tax_code":"53101801A0001"},{"description":"Clothing
2000
+ - Lab coats","name":"Clothing - Lab coats","product_tax_code":"46181532A0000"},{"description":"Systems
2001
+ planning services\r\n","name":"Systems planning services\r\n","product_tax_code":"81111707A0000"},{"description":"Food
2002
+ and Beverage - Vitamins and Supplements","name":"Food and Beverage - Vitamins
2003
+ and Supplements - labeled with supplement facts","product_tax_code":"50501500A0000"},{"description":"Food
2004
+ and Beverage - Jello and pudding mixes","name":"Food and Beverage - Jello
2005
+ and pudding mixes","product_tax_code":"50192404A0000"},{"description":"Food
2006
+ and Beverage - Cooking spices","name":"Food and Beverage - Cooking spices","product_tax_code":"50171500A0000"},{"description":"Food
2007
+ and Beverage - Alcoholic beverages - Beer/Malt Beverages","name":"Food and
2008
+ Beverage - Alcoholic beverages - Beer/Malt Beverages","product_tax_code":"50202201A0000"},{"description":"Food
2009
+ and Beverage - Ice Cream, packaged","name":"Food and Beverage - Ice Cream,
2010
+ packaged","product_tax_code":"50192303A0000"},{"description":"Electronic content
2011
+ bundle - Delivered electronically with permanent rights of usage and streamed","name":"Electronic
2012
+ content bundle - Delivered electronically with permanent rights of usage and
2013
+ streamed","product_tax_code":"55111500A9210"},{"description":"Clothing - Roller
2014
+ skates or roller blades","name":"Clothing - Roller skates or roller blades","product_tax_code":"49221509A0000"},{"description":"Clothing
2015
+ - Ice Skates","name":"Clothing - Ice Skates","product_tax_code":"49151602A0000"},{"description":"Clothing
2016
+ - Life vests or preservers ","name":"Clothing - Life vests or preservers ","product_tax_code":"46161604A0000"},{"description":"Clothing
2017
+ - Swim goggles","name":"Clothing - Swim goggles","product_tax_code":"49141606A0000"},{"description":"Clothing
2018
+ - Bowling gloves","name":"Clothing - Bowling gloves","product_tax_code":"49211606A0002"},{"description":"Fire
2019
+ Extinguishers","name":"Fire Extinguishers","product_tax_code":"46191601A0000"},{"description":"Carbon
2020
+ Monoxide Detectors","name":"Carbon Monoxide Detectors","product_tax_code":"46191509A0001"},{"description":"Ladder
2021
+ used for home emergency evacuation.","name":"Emergency/rescue ladder","product_tax_code":"30191501A0001"},{"description":"Candles
2022
+ to be used a light source.","name":"Candles","product_tax_code":"39112604A0001"},{"description":"Non-electric
2023
+ water container to store water for emergency usage.","name":"Water storage
2024
+ container","product_tax_code":"24111810A0001"},{"description":"Duct Tape","name":"Duct
2025
+ Tape","product_tax_code":"31201501A0000"},{"description":"Gas-powered chainsaw.","name":"Garden
2026
+ chainsaw","product_tax_code":"27112038A0000"},{"description":"Chainsaw accessories
2027
+ include chains, lubricants, motor oil, chain sharpeners, bars, wrenches, carrying
2028
+ cases, repair parts, safety apparel.","name":"Chainsaw accessories","product_tax_code":"27112038A0001"},{"description":"Shower
2029
+ curtain/liner used to keep water from escaping a showering area.","name":"Shower
2030
+ Curtain or Liner","product_tax_code":"30181607A0000"},{"description":"Dish
2031
+ towels used for kitchenware drying.","name":"Dish towels","product_tax_code":"52121601A0000"},{"description":"A
2032
+ bumper/liner that borders the interior walls/slats of the crib to help protect
2033
+ the baby.","name":"Crib bumpers/liners","product_tax_code":"56101804A0001"},{"description":"A
2034
+ small mat/rug used to cover portion of bathroom floor.","name":"Bath Mats/rugs","product_tax_code":"52101507A0000"},{"description":"A
2035
+ handheld computer that is capable of plotting graphs, solving simultaneous
2036
+ equations, and performing other tasks with variables.","name":"Graphing Calculators","product_tax_code":"44101808A0001"},{"description":"Portable
2037
+ locks used by students in a school setting to prevent use, theft, vandalism
2038
+ or harm.","name":"Padlocks - Student","product_tax_code":"46171501A0001"},{"description":"Domestic
2039
+ clothes washing appliances carrying Energy Star rating.","name":"Clothes Washing
2040
+ Machine - Energy Star","product_tax_code":"52141601A0000"},{"description":"WaterSense
2041
+ labeled showerheads.","name":"Showerheads - WaterSense","product_tax_code":"30181801A0000"},{"description":"Domestic
2042
+ dish washing appliances carrying Energy Star rating.","name":"Dishwashers
2043
+ - Energy Star","product_tax_code":"52141505A0000"},{"description":"WaterSense
2044
+ labeled sprinkler body is the exterior shell that connects to the irrigation
2045
+ system piping and houses the spray nozzle that applies water on the landscape.","name":"Spray
2046
+ Water Sprinkler Bodies - WaterSense","product_tax_code":"21101803A0001"},{"description":"Ropes
2047
+ and Cords","name":"Ropes and Cords","product_tax_code":"31151500A0000"},{"description":"Light
2048
+ emitting diode (LED) bulbs carrying an Energy Star rating.","name":"LED Bulbs
2049
+ - Energy Star","product_tax_code":"39101628A0001"},{"description":"WaterSense
2050
+ labeled bathroom sink faucets and accessories.","name":"Bathroom Faucets -
2051
+ WaterSense","product_tax_code":"30181702A0001"},{"description":"Cables with
2052
+ industry standard connection and termination configurations used to connect
2053
+ various peripherals and equipment to computers.","name":"Computer Cables","product_tax_code":"43202222A0001"},{"description":"Canned
2054
+ software delivered electronically that is used for non-recreational purposes,
2055
+ such as Antivirus, Database, Educational, Financial, Word processing, etc.","name":"Software
2056
+ - Prewritten, Electronic delivery - Non-recreational","product_tax_code":"43230000A1102"},{"description":"Clothing
2057
+ - Baseball batting gloves","name":"Clothing - Baseball batting gloves","product_tax_code":"49211606A0001"},{"description":"Cloud-based
2058
+ platform as a service (PaaS) - Business Use","name":"Cloud-based platform
2059
+ as a service (PaaS) - Business Use","product_tax_code":"81162100A9000"},{"description":"Cloud-based
2060
+ Infrastructure as a service (IaaS) - Personal Use","name":"Cloud-based infrastructure
2061
+ as a service (IaaS) - Personal Use","product_tax_code":"81162200A0000"},{"description":"Clothing
2062
+ - Costume Mask","name":"Clothing - Costume Mask","product_tax_code":"60122800A0000"},{"description":"Clothing
2063
+ - Ski boots","name":"Clothing - Ski boots","product_tax_code":"53111900A0005"},{"description":"Personal
2064
+ computer PC application design\r\n","name":"Personal computer PC application
2065
+ design\r\n","product_tax_code":"81111502A0000"},{"description":"Network planning
2066
+ services\r\n","name":"Network planning services\r\n","product_tax_code":"81111706A0000"},{"description":"ERP
2067
+ or database applications programming services\r\n","name":"ERP or database
2068
+ applications programming services\r\n","product_tax_code":"81111507A0000"},{"description":"Content
2069
+ or data classification services\r\n","name":"Content or data classification
2070
+ services\r\n","product_tax_code":"81112009A0000"},{"description":"Clothing
2071
+ - Prom Dress","name":"Clothing - Prom Dress","product_tax_code":"53101801A0003"},{"description":"Clothing
2072
+ - Formal Dress","name":"Clothing - Formal Dress","product_tax_code":"53101801A0002"},{"description":"Clothing
2073
+ - Handkerchiefs","name":"Clothing - Handkerchiefs","product_tax_code":"53102512A0000"},{"description":"Clothing
2074
+ - Protective lens","name":"Clothing - Protective lens","product_tax_code":"46181811A0001"},{"description":"Clothing
2075
+ - Body shaping garments","name":"Clothing - Body shaping garments","product_tax_code":"53102307A0000"},{"description":"Clothing
2076
+ - Underpants","name":"Clothing - Underpants","product_tax_code":"53102303A0000"},{"description":"Clothing
2077
+ - Waterproof boot","name":"Clothing - Waterproof boot","product_tax_code":"46181611A0000"},{"description":"Electronic
2078
+ software documentation or user manuals - For prewritten software & delivered
2079
+ by load and leave","name":"Electronic software documentation or user manuals
2080
+ - Prewritten, load and leave delivery","product_tax_code":"55111601A1300"},{"description":"Electronic
2081
+ software documentation or user manuals - For custom software & delivered on
2082
+ tangible media","name":"Electronic software documentation or user manuals
2083
+ - Custom, tangible media","product_tax_code":"55111601A2100"},{"description":"Electronic
2084
+ software documentation or user manuals - For custom software & delivered by
2085
+ load and leave","name":"Electronic software documentation or user manuals
2086
+ - Custom, load and leave delivery","product_tax_code":"55111601A2300"},{"description":"Electronic
2087
+ software documentation or user manuals - For custom software & delivered electronically","name":"Electronic
2088
+ software documentation or user manuals - Custom, electronic delivery","product_tax_code":"55111601A2200"},{"description":"Electronic
2089
+ publications and music - Streamed","name":"Electronic publications and music
2090
+ - Streamed","product_tax_code":"55111500A1500"},{"description":"Electronic
2091
+ publications and music - Delivered electronically with permanent rights of
2092
+ usage","name":"Electronic publications and music - Delivered electronically
2093
+ with permanent rights of usage","product_tax_code":"55111500A1210"},{"description":"Electronic
2094
+ publications and music - Delivered electronically with less than permanent
2095
+ rights of usage","name":"Electronic publications and music - Delivered electronically
2096
+ with less than permanent rights of usage","product_tax_code":"55111500A1220"},{"description":"Software
2097
+ - Custom & delivered on tangible media","name":"Software - Custom, tangible
2098
+ media","product_tax_code":"43230000A2100"},{"description":"Software - Prewritten
2099
+ & delivered by digital keycode printed on tangible media","name":"Software
2100
+ - Prewritten, delivered by digital keycode printed on tangible media","product_tax_code":"43230000A1400"},{"description":"Software
2101
+ - Prewritten & delivered by load and leave","name":"Software - Prewritten,
2102
+ load and leave delivery","product_tax_code":"43230000A1300"},{"description":"Internet
2103
+ cloud storage service\r\n","name":"Internet cloud storage service\r\n","product_tax_code":"81111513A0000"},{"description":"Computer
2104
+ or network or internet security\r\n","name":"Computer or network or internet
2105
+ security\r\n","product_tax_code":"81111801A0000"},{"description":"Document
2106
+ scanning service\r\n","name":"Document scanning service\r\n","product_tax_code":"81112005A0000"},{"description":"Cloud-based
2107
+ software as a service (SaaS) - Business Use","name":"Cloud-based software
2108
+ as a service (SaaS) - Business Use","product_tax_code":"81162000A9000"},{"description":"Demining
2109
+ geographical or geospatial information system GIS\r\n","name":"Demining geographical
2110
+ or geospatial information system GIS\r\n","product_tax_code":"81111709A0000"},{"description":"Content
2111
+ or data standardization services\r\n","name":"Content or data standardization
2112
+ services\r\n","product_tax_code":"81112007A0000"},{"description":"Data processing
2113
+ or preparation services\r\n","name":"Data processing or preparation services\r\n","product_tax_code":"81112002A0000"},{"description":"Database
2114
+ analysis service\r\n","name":"Database analysis service\r\n","product_tax_code":"81111806A0000"},{"description":"Electronic
2115
+ software documentation or user manuals - For prewritten software & delivered
2116
+ on tangible media","name":"Electronic software documentation or user manuals
2117
+ - Prewritten, tangible media","product_tax_code":"55111601A1100"},{"description":"Cloud-based
2118
+ software as a service (SaaS) - Personal Use","name":"Cloud-based software
2119
+ as a service (SaaS) - Personal Use","product_tax_code":"81162000A0000"},{"description":"Clothing
2120
+ - Costume","name":"Clothing - Costume","product_tax_code":"60141401A0000"},{"description":"Online
2121
+ data processing service\r\n","name":"Online data processing service\r\n","product_tax_code":"81112001A0000"},{"description":"System
2122
+ usability services\r\n","name":"System usability services\r\n","product_tax_code":"81111820A0000"},{"description":"Services
2123
+ that provide both essential proactive and reactive operations and maintenance
2124
+ support.","name":"IT Support Services","product_tax_code":"81111811A0000"},{"description":"System
2125
+ analysis service\r\n","name":"System analysis service\r\n","product_tax_code":"81111808A0000"},{"description":"Data
2126
+ storage service\r\n","name":"Data storage service\r\n","product_tax_code":"81112006A0000"},{"description":"Quality
2127
+ assurance services\r\n","name":"Quality assurance services\r\n","product_tax_code":"81111819A0000"},{"description":"Software
2128
+ - Custom & delivered by load & leave","name":"Software - Custom, load and
2129
+ leave delivery","product_tax_code":"43230000A2300"},{"description":"Food and
2130
+ Beverage - Meat Sticks, Meat Jerky","name":"Food and Beverage - Meat Sticks,
2131
+ Meat Jerky","product_tax_code":"50112000A0000"},{"description":"Clothing -
2132
+ Synthetic Fur Poncho or Cape","name":"Clothing - Synthetic Fur Poncho or Cape","product_tax_code":"53101806A0002"},{"description":"Clothing
2133
+ - Wetsuit","name":"Clothing - Wetsuit","product_tax_code":"49141506A0000"},{"description":"Cloud-based
2134
+ business process as a service - Business Use","name":"Cloud-based business
2135
+ process as a service - Business Use","product_tax_code":"81162300A9000"},{"description":"Cloud-based
2136
+ infrastructure as a service (IaaS) - Business Use","name":"Cloud-based infrastructure
2137
+ as a service (IaaS) - Business Use","product_tax_code":"81162200A9000"},{"description":"Clothing
2138
+ - Belt Buckle","name":"Clothing - Belt Buckle","product_tax_code":"53102501A0001"},{"description":"Clothing
2139
+ - Shower Cap","name":"Clothing - Shower Cap","product_tax_code":"53131601A0000"},{"description":"Clothing
2140
+ - Eye shield garters","name":"Clothing - Eye shield garters","product_tax_code":"46181809A0001"},{"description":"Clothing
2141
+ - Socks","name":"Clothing - Socks","product_tax_code":"53102402A0000"},{"description":"Clothing
2142
+ - Stockings","name":"Clothing - Stockings","product_tax_code":"53102401A0000"},{"description":"Food
2143
+ and Beverage - Meat and meat products","name":"Food and Beverage - Meat and
2144
+ meat products","product_tax_code":"50110000A0000"},{"description":"Clothing
2145
+ - Slips","name":"Clothing - Slips","product_tax_code":"53102302A0000"},{"description":"Clothing
2146
+ - Goggle protective covers","name":"Clothing - Goggle protective covers","product_tax_code":"46181808A0001"},{"description":"Clothing
2147
+ - Goggles","name":"Clothing - Goggles","product_tax_code":"46181804A0001"},{"description":"Clothing
2148
+ - Football receiver gloves","name":"Clothing - Football receiver gloves","product_tax_code":"49211606A0004"},{"description":"Disaster
2149
+ recovery services","name":"Disaster recovery services","product_tax_code":"81112004A0000"},{"description":"Clothing
2150
+ - Mountain climbing boot","name":"Clothing - Mountain climbing boot","product_tax_code":"46181613A0000"},{"description":"Software
2151
+ maintenance and support - Mandatory maintenance and support charges for prewritten
2152
+ software including items delivered on tangible media","name":"Software maintenance
2153
+ and support - Mandatory, prewritten, tangible media","product_tax_code":"81112200A1110"},{"description":"Clothing
2154
+ - Military boot","name":"Clothing - Military boot","product_tax_code":"46181612A0000"},{"description":"Carbonated
2155
+ beverages marketed as energy drinks, carrying a Supplement Facts Label, that
2156
+ contain a blend of energy enhancing vitamins, minerals, herbals, stimulants,
2157
+ etc.","name":"Energy Beverages - Carbonated - with Supplement Facts Label","product_tax_code":"50202309A0001"},{"description":"Non-carbonated
2158
+ beverages marketed as energy drinks, carrying a Supplement Facts Label, that
2159
+ contain a blend of energy enhancing vitamins, minerals, herbals, stimulants,
2160
+ etc.","name":"Energy Beverages - Non-Carbonated - with Supplement Facts Label","product_tax_code":"50202309A0000"},{"description":"Food
2161
+ bundle or basket containing food staples combined with tangible personal property,
2162
+ with the food comprising 90% or more of the overall value of the bundle, where
2163
+ all food consists of candy (not containing flour).","name":"Food/TPP Bundle
2164
+ - with Food 90% or more - Food is all Candy","product_tax_code":"50193400A0001"},{"description":"Food
2165
+ bundle or basket containing food staples combined with tangible personal property,
2166
+ with the food comprising less 90% or more of the overall value of the bundle.","name":"Food/TPP
2167
+ Bundle - with Food 90% or more","product_tax_code":"50193400A0000"},{"description":"Food
2168
+ bundle or basket containing food staples combined with tangible personal property,
2169
+ with the food comprising between 76% and 89% of the overall value of the bundle,
2170
+ where all food consists of candy (not containing flour).","name":"Food/TPP
2171
+ Bundle - with Food between 76% and 89% - Food is all Candy","product_tax_code":"50193400A0005"},{"description":"Food
2172
+ bundle or basket containing food staples combined with tangible personal property,
2173
+ with the food comprising between 76% and 89% of the overall value of the bundle.","name":"Food/TPP
2174
+ Bundle - with Food between 76% and 89%","product_tax_code":"50193400A0004"},{"description":"Food
2175
+ bundle or basket containing food staples combined with tangible personal property,
2176
+ with the food comprising between 50% and 75% of the overall value of the bundle,
2177
+ where all food consists of candy (not containing flour).","name":"Food/TPP
2178
+ Bundle - with Food between 50% and 75% - Food is all Candy","product_tax_code":"50193400A0003"},{"description":"Food
2179
+ bundle or basket containing food staples combined with tangible personal property,
2180
+ with the food comprising between 50% and 75% of the overall value of the bundle.","name":"Food/TPP
2181
+ Bundle - with Food between 50% and 75%","product_tax_code":"50193400A0002"},{"description":"Food/TPP
2182
+ Bundle - with Food less than 50%","name":"Food/TPP Bundle - with Food less
2183
+ than 50%","product_tax_code":"50193400A0006"},{"description":"Ready to drink
2184
+ beverages, not containing milk, formulated and labled for their nutritional
2185
+ value, such as increased caloric or protein intake and containing natrual
2186
+ or artificial sweeteners.","name":"Nutritional Supplement/protein drinks,
2187
+ shakes - contains no milk","product_tax_code":"50501703A0000"},{"description":"Ready
2188
+ to drink beverages, containing milk, formulated and labled for their nutritional
2189
+ value, such as increased caloric or protein intake.","name":"Nutritional Supplement/protein
2190
+ drinks, shakes - contains milk","product_tax_code":"50501703A0001"},{"description":"Powdered
2191
+ mixes to be reconstituted into a drinkable beverage using water.","name":"Powdered
2192
+ Drink Mixes - to be mixed with water","product_tax_code":"50202311A0000"},{"description":"Powdered
2193
+ mixes to be reconstituted into a drinkable beverage using milk or a milk substitute.","name":"Powdered
2194
+ Drink Mixes - to be mixed with milk","product_tax_code":"50202311A0001"},{"description":"Food
2195
+ and Beverage - Granola Bars, Cereal Bars, Energy Bars, Protein Bars containing
2196
+ no flour","name":"Food and Beverage - Granola Bars, Cereal Bars, Energy Bars,
2197
+ Protein Bars containing no flour","product_tax_code":"50221202A0002"},{"description":"Food
2198
+ and Beverage - Granola Bars, Cereal Bars, Energy Bars, Protein Bars containing
2199
+ flour","name":"Food and Beverage - Granola Bars, Cereal Bars, Energy Bars,
2200
+ Protein Bars containing flour","product_tax_code":"50221202A0001"},{"description":"Nutritional
2201
+ supplement in powder form, dairy based or plant based, focused on increasing
2202
+ ones intake of protein for various benefits.","name":"Protein Powder","product_tax_code":"50501703A0002"},{"description":"Ready
2203
+ to drink non-carbonated beverage containing tea with natural or artificial
2204
+ sweeteners.","name":"Bottled tea - non-carbonated - sweetened","product_tax_code":"50201712A0003"},{"description":"Ready
2205
+ to drink non-carbonated beverage containing tea without natural or artificial
2206
+ sweeteners.","name":"Bottled tea - non-carbonated - unsweetened","product_tax_code":"50201712A0000"},{"description":"Ready
2207
+ to drink carbonated beverage containing tea with natural or artificial sweeteners.","name":"Bottled
2208
+ tea - carbonated - sweetened","product_tax_code":"50201712A0002"},{"description":"Ready
2209
+ to drink carbonated beverage containing tea and without any natural or artificial
2210
+ sweeteners.","name":"Bottled tea - carbonated - unsweetened","product_tax_code":"50201712A0001"},{"description":"Ready
2211
+ to drink coffee based beverage containing milk or milk substitute.","name":"Bottled
2212
+ coffee - containing milk or milk substitute","product_tax_code":"50201708A0002"},{"description":"Ready
2213
+ to drink coffee based beverage not containing milk, containing natural or
2214
+ artificial sweetener.","name":"Bottled coffee - no milk - sweetened","product_tax_code":"50201708A0001"},{"description":"Ready
2215
+ to drink coffee based beverage containing neither milk nor natural or artificial
2216
+ sweeteners.","name":"Bottled coffee - no milk - unsweetened","product_tax_code":"50201708A0000"},{"description":"Carbonated
2217
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2218
+ 51 - 69% natural vegetable juice. This does not include flavored carbonated
2219
+ water. This does include beverages marketed as energy drinks that carry a
2220
+ Nutrition Facts label and contain a blend of energy enhancing ingredients.","name":"Soft
2221
+ Drinks - Carbonated - 51-69% vegetable juice","product_tax_code":"50202306A0008"},{"description":"Carbonated
2222
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2223
+ 1 - 9% natural fruit juice. This does not include flavored carbonated water. This
2224
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2225
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2226
+ - Carbonated - 1-9% fruit juice","product_tax_code":"50202306A0001"},{"description":"Non-carbonated
2227
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2228
+ 70 - 99% natural fruit juice. This does not include flavored water. This
2229
+ does include sweetened cocktail mixes that can be combined with alcohol. This
2230
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2231
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2232
+ - Non-Carbonated - 70-99% fruit juice","product_tax_code":"50202304A0010"},{"description":"Non-carbonated
2233
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2234
+ 51 - 69% natural vegetable juice. This does not include flavored water. This
2235
+ does include sweetened cocktail mixes that can be combined with alcohol. This
2236
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2237
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2238
+ - Non-Carbonated - 51-69% vegetable juice","product_tax_code":"50202304A0009"},{"description":"Non-carbonated
2239
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2240
+ 25 - 50% natural vegetable juice. This does not include flavored water. This
2241
+ does include sweetened cocktail mixes that can be combined with alcohol. This
2242
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2243
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2244
+ - Non-Carbonated - 25-50% vegetable juice","product_tax_code":"50202304A0007"},{"description":"Non-carbonated
2245
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2246
+ 10 - 24% natural fruit juice. This does not include flavored water. This
2247
+ does include sweetened cocktail mixes that can be combined with alcohol. This
2248
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2249
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2250
+ - Non-Carbonated - 10-24% fruit juice","product_tax_code":"50202304A0004"},{"description":"Non-carbonated
2251
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2252
+ 70 - 99% natural vegetable juice. This does not include flavored water. This
2253
+ does include sweetened cocktail mixes that can be combined with alcohol. This
2254
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2255
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2256
+ - Non-Carbonated - 70-99% vegetable juice","product_tax_code":"50202304A0011"},{"description":"Non-carbonated
2257
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2258
+ zero natural fruit or vegetable juice. This does not include flavored water. This
2259
+ does include sweetened cocktail mixes that can be combined with alcohol. This
2260
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2261
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2262
+ - Non-Carbonated - No fruit or vegetable juice","product_tax_code":"50202304A0001"},{"description":"Non-carbonated
2263
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2264
+ 51 - 69% natural fruit juice. This does not include flavored water. This
2265
+ does include sweetened cocktail mixes that can be combined with alcohol. This
2266
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2267
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2268
+ - Non-Carbonated - 51-69% fruit juice","product_tax_code":"50202304A0008"},{"description":"Non-carbonated
2269
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2270
+ 1 - 9% natural vegetable juice. This does not include flavored water. This
2271
+ does include sweetened cocktail mixes that can be combined with alcohol. This
2272
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2273
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2274
+ - Non-Carbonated - 1 -9% vegetable juice","product_tax_code":"50202304A0003"},{"description":"Non-carbonated
2275
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2276
+ 1 - 9% natural fruit juice. This does not include flavored water. This does
2277
+ include sweetened cocktail mixes that can be combined with alcohol. This
2278
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2279
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2280
+ - Non-Carbonated - 1-9% fruit juice","product_tax_code":"50202304A0002"},{"description":"Non-carbonated
2281
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2282
+ 10 - 24% natural vegetable juice. This does not include flavored water. This
2283
+ does include sweetened cocktail mixes that can be combined with alcohol. This
2284
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2285
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2286
+ - Non-Carbonated - 10-24% vegetable juice","product_tax_code":"50202304A0005"},{"description":"Non-carbonated
2287
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2288
+ 25 - 50% natural fruit juice. This does not include flavored water. This
2289
+ does include sweetened cocktail mixes that can be combined with alcohol. This
2290
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2291
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2292
+ - Non-Carbonated - 25-50% fruit juice","product_tax_code":"50202304A0006"},{"description":"Non-carbonated
2293
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2294
+ 100% natural fruit or vegetable juice. This does not include flavored water. This
2295
+ does include sweetened cocktail mixes that can be combined with alcohol. This
2296
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2297
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2298
+ - Non-Carbonated - 100% fruit or vegetable juice","product_tax_code":"50202304A0000"},{"description":"Carbonated
2299
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2300
+ zero natural fruit or vegetable juice. This does not include flavored carbonated
2301
+ water. This does include beverages marketed as energy drinks that carry a
2302
+ Nutrition Facts label and contain a blend of energy enhancing ingredients.","name":"Soft
2303
+ Drinks - Carbonated - No fruit or vegetable juice","product_tax_code":"50202306A0000"},{"description":"Carbonated
2304
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2305
+ 70 - 99% natural vegetable juice. This does not include flavored carbonated
2306
+ water. This does include beverages marketed as energy drinks that carry a
2307
+ Nutrition Facts label and contain a blend of energy enhancing ingredients.","name":"Soft
2308
+ Drinks - Carbonated - 70-99% vegetable juice","product_tax_code":"50202306A0010"},{"description":"Carbonated
2309
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2310
+ 70 - 99% natural fruit juice. This does not include flavored carbonated water. This
2311
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2312
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2313
+ - Carbonated - 70-99% fruit juice","product_tax_code":"50202306A0009"},{"description":"Carbonated
2314
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2315
+ 51 - 69% natural fruit juice. This does not include flavored carbonated water. This
2316
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2317
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2318
+ - Carbonated - 51-69% fruit juice","product_tax_code":"50202306A0007"},{"description":"Carbonated
2319
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2320
+ 25 - 50% natural vegetable juice. This does not flavored carbonated water. This
2321
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2322
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2323
+ - Carbonated - 25-50% vegetable juice","product_tax_code":"50202306A0006"},{"description":"Carbonated
2324
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2325
+ 25 - 50% natural fruit juice. This does not include flavored carbonated water. This
2326
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2327
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2328
+ - Carbonated - 25-50% fruit juice","product_tax_code":"50202306A0005"},{"description":"Carbonated
2329
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2330
+ 100% natural fruit or vegetable juice. This does not include flavored carbonated
2331
+ water. This does include beverages marketed as energy drinks that carry a
2332
+ Nutrition Facts label and contain a blend of energy enhancing ingredients.","name":"Soft
2333
+ Drinks - Carbonated - 100% fruit or vegetable juice","product_tax_code":"50202306A0011"},{"description":"Carbonated
2334
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2335
+ 10 - 24% natural vegetable juice. This does not include flavored carbonated
2336
+ water. This does include beverages marketed as energy drinks that carry a
2337
+ Nutrition Facts label and contain a blend of energy enhancing ingredients.","name":"Soft
2338
+ Drinks - Carbonated - 10-24% vegetable juice","product_tax_code":"50202306A0004"},{"description":"Carbonated
2339
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2340
+ 10 - 24% natural fruit juice. This does not include flavored carbonated water. This
2341
+ does include beverages marketed as energy drinks that carry a Nutrition Facts
2342
+ label and contain a blend of energy enhancing ingredients.","name":"Soft Drinks
2343
+ - Carbonated - 10-24% fruit juice","product_tax_code":"50202306A0003"},{"description":"Carbonated
2344
+ nonalcoholic beverages that contain natural or artificial sweeteners, and
2345
+ 1 - 9% natural vegetable juice. This does not include flavored carbonated
2346
+ water. This does include beverages marketed as energy drinks that carry a
2347
+ Nutrition Facts label and contain a blend of energy enhancing ingredients.","name":"Soft
2348
+ Drinks - Carbonated - 1 -9% vegetable juice","product_tax_code":"50202306A0002"},{"description":"Bottled
2349
+ Water for human consumption, unsweetened, non-carbonated. Does not include
2350
+ distilled water.","name":"Bottled Water","product_tax_code":"50202301A0000"},{"description":"Bottled
2351
+ Water for human consumption, containing natural or artificial sweeteners,
2352
+ non-carbonated.","name":"Bottled Water - Flavored","product_tax_code":"50202301A0001"},{"description":"Bottled
2353
+ Water for human consumption, unsweetened, carbonated naturally. Includes
2354
+ carbonated waters containing only natural flavors or essences.","name":"Bottled
2355
+ Water - Carbonated Naturally","product_tax_code":"50202301A0003"},{"description":"Bottled
2356
+ Water for human consumption, unsweetened, carbonated artificially during bottling
2357
+ process. Includes carbonated waters containing only natural flavors or essences.","name":"Bottled
2358
+ Water - Carbonated Artificially","product_tax_code":"50202301A0002"},{"description":"Bottled
2359
+ Water for human consumption, containing natural or artificial sweeteners,
2360
+ carbonated.","name":"Bottled Water - Carbonated - Sweetened","product_tax_code":"50202301A0004"},{"description":"Clothing
2361
+ - Sequins for use in clothing","name":"Clothing - Sequins for use in clothing","product_tax_code":"60123900A0000"},{"description":"Clothing
2362
+ - Synthetic Fur Gloves","name":"Clothing - Synthetic Fur Gloves","product_tax_code":"53102503A0002"},{"description":"Clothing
2363
+ - Synthetic Fur Coat or Jacket","name":"Clothing - Synthetic Fur Coat or Jacket","product_tax_code":"53101800A0002"},{"description":"Clothing
2364
+ - Fur Hat","name":"Clothing - Fur Hat","product_tax_code":"53102504A0001"},{"description":"Clothing
2365
+ - Fur Coat or Jacket","name":"Clothing - Fur Coat or Jacket","product_tax_code":"53101800A0001"},{"description":"Cloud-based
2366
+ business process as a service","name":"Cloud-based business process as a service
2367
+ - Personal Use","product_tax_code":"81162300A0000"},{"description":"Clothing
2368
+ - Shoulder pads for sports","name":"Clothing - Shoulder pads for sports","product_tax_code":"46181506A0002"},{"description":"Mainframe
2369
+ software applications design\r\n","name":"Mainframe software applications
2370
+ design\r\n","product_tax_code":"81111501A0000"},{"description":"Clothing -
2371
+ Safety shoes","name":"Clothing - Safety shoes","product_tax_code":"46181605A0000"},{"description":"Clothing
2372
+ - Protective hood","name":"Clothing - Protective hood","product_tax_code":"46181710A0001"},{"description":"Clothing
2373
+ - Face protection kit","name":"Clothing - Face protection kit","product_tax_code":"46181709A0001"},{"description":"Clothing
2374
+ - Protective hair net","name":"Clothing - Protective hair net","product_tax_code":"46181708A0001"},{"description":"Clothing
2375
+ - Facial shields parts or accessories","name":"Clothing - Facial shields parts
2376
+ or accessories","product_tax_code":"46181707A0001"},{"description":"Clothing
2377
+ - Safety helmets","name":"Clothing - Safety helmets","product_tax_code":"46181704A0001"},{"description":"Clothing
2378
+ - Poncho","name":"Clothing - Poncho","product_tax_code":"53101806A0000"},{"description":"Clothing
2379
+ - Protective insole","name":"Clothing - Protective insole","product_tax_code":"46181609A0000"},{"description":"Clothing
2380
+ - Protective clogs","name":"Clothing - Protective clogs","product_tax_code":"46181607A0000"},{"description":"Clothing
2381
+ - Waterproof jacket or raincoat","name":"Clothing - Waterproof jacket or raincoat","product_tax_code":"46181543A0000"},{"description":"Systems
2382
+ architecture\r\n","name":"Systems architecture\r\n","product_tax_code":"81111705A0000"},{"description":"System
2383
+ installation service\r\n","name":"System installation service\r\n","product_tax_code":"81111809A0000"},{"description":"Software
2384
+ maintenance and support - Mandatory maintenance and support charges for custom
2385
+ software including items delivered by load and leave","name":"Software maintenance
2386
+ and support - Mandatory, custom, load and leave delivery","product_tax_code":"81112200A2310"},{"description":"Software
2387
+ coding service\r\n","name":"Software coding service\r\n","product_tax_code":"81111810A0000"},{"description":"Software
2388
+ - Custom & delivered electronically","name":"Software - Custom, electronic
2389
+ delivery","product_tax_code":"43230000A2200"},{"description":"Bathing suits
2390
+ and swim suits","name":"Clothing - Swimwear","product_tax_code":"20041"},{"description":"Miscellaneous
2391
+ services.  Choose this product tax code for any service offering in which
2392
+ a more detailed code is not available. This category will only treat services
2393
+ as taxable if the jurisdiction taxes services generally.","name":"General
2394
+ Services","product_tax_code":"19000"},{"description":"Services provided to
2395
+ educate users on the proper use of a product. Live training in person","name":"Training
2396
+ Services - Live","product_tax_code":"19004"},{"description":"Admission charges
2397
+ associated with entry to an event.","name":"Admission Services","product_tax_code":"19003"},{"description":"Service
2398
+ of providing usage of a parking space.","name":"Parking Services","product_tax_code":"19002"},{"description":"A
2399
+ charge separately stated from any sale of the product itself for the installation
2400
+ of tangible personal property. This a labor charge, with any non-separately
2401
+ stated property transferred in performing the service considered inconsequential.","name":"Installation
2402
+ Services","product_tax_code":"10040"},{"description":"Services rendered for
2403
+ advertising which do not include the exchange of tangible personal property.","name":"Advertising
2404
+ Services","product_tax_code":"19001"},{"description":"Digital products transferred
2405
+ electronically, meaning obtained by the purchaser by means other than tangible
2406
+ storage media.","name":"Digital Goods","product_tax_code":"31000"},{"description":"
2407
+ All human wearing apparel suitable for general use","name":"Clothing","product_tax_code":"20010"},{"description":"An
2408
+ over-the-counter drug is a substance that contains a label identifying it
2409
+ as a drug and including a \"drug facts\" panel or a statement of active ingredients,
2410
+ that can be obtained without a prescription. A drug can be intended for internal
2411
+ (ingestible, implant, injectable) or external (topical) application to the
2412
+ human body.","name":"Over-the-Counter Drugs","product_tax_code":"51010"},{"description":"A
2413
+ substance that can only be obtained via a prescription of a licensed professional. A
2414
+ drug is a compound, substance, or preparation, and any component thereof,
2415
+ not including food or food ingredients, dietary supplements, or alcoholic
2416
+ beverages, that is: recognized in the official United States pharmacopoeia,
2417
+ official homeopathic pharmacopoeia of the United States, or official national
2418
+ formulary, and supplement to any of them; intended for use in the diagnosis,
2419
+ cure, mitigation, treatment, or prevention of disease; or intended to affect
2420
+ the structure or any function of the body. A drug can be intended for internal
2421
+ (ingestible, implant, injectable) or external (topical) application to the
2422
+ human body.","name":"Prescription Drugs","product_tax_code":"51020"},{"description":"Food
2423
+ for humans consumption, unprepared","name":"Food & Groceries","product_tax_code":"40030"},{"description":"Pre-written
2424
+ software, delivered electronically, but access remotely.","name":"Software
2425
+ as a Service","product_tax_code":"30070"},{"description":"Periodicals, printed,
2426
+ sold by subscription","name":"Magazines & Subscriptions","product_tax_code":"81300"},{"description":"Books,
2427
+ printed","name":"Books","product_tax_code":"81100"},{"description":"Periodicals,
2428
+ printed, sold individually","name":"Magazine","product_tax_code":"81310"},{"description":"Textbooks,
2429
+ printed","name":"Textbook","product_tax_code":"81110"},{"description":"Religious
2430
+ books and manuals, printed","name":"Religious books","product_tax_code":"81120"},{"description":"Non-food
2431
+ dietary supplements","name":"Supplements","product_tax_code":"40020"},{"description":"Candy","name":"Candy","product_tax_code":"40010"},{"description":"Soft
2432
+ drinks. Soda and similar drinks. Does not include water, juice, or milk.","name":"Soft
2433
+ Drinks","product_tax_code":"40050"},{"description":"Bottled water for human
2434
+ consumption.","name":"Bottled Water","product_tax_code":"40060"},{"description":"Ready
2435
+ to eat foods intended to be consumed on site by humans. Foods not considered
2436
+ to be Food & Grocery (not food for home consumption or food which requires
2437
+ further preparation to consume).","name":"Prepared Foods","product_tax_code":"41000"}]}'
2438
+ http_version:
2439
+ recorded_at: Wed, 13 Apr 2022 18:19:23 GMT
2440
+ - request:
2441
+ method: post
2442
+ uri: https://api.taxjar.com/v2/transactions/orders
2443
+ body:
2444
+ encoding: UTF-8
2445
+ string: '{"customer_id":"1","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
2446
+ Different Road","line_items":[{"id":1,"quantity":1,"product_identifier":"SKU-1","description":"Product
2447
+ #1 - 5058 - Master","product_tax_code":"123","unit_price":"10.0","discount":"-0.0","sales_tax":"0.89"}],"transaction_id":"R125507103","transaction_date":"2022-04-13T18:19:21Z","amount":"110.0","shipping":"100.0","sales_tax":"9.77"}'
2448
+ headers:
2449
+ User-Agent:
2450
+ - 'TaxJar/Ruby (Darwin MacBook-Pro.hitronhub.home 21.2.0 Darwin Kernel Version
2451
+ 21.2.0: Sun Nov 28 20:28:54 PST 2021; root:xnu-8019.61.5~1/RELEASE_X86_64
2452
+ x86_64; ruby 2.6.6-p146; OpenSSL 1.1.1m 14 Dec 2021) taxjar-ruby/3.0.2'
2453
+ Authorization:
2454
+ - Bearer <BEARER_TOKEN>
2455
+ X-Api-Version:
2456
+ - '2020-08-07'
2457
+ Plugin:
2458
+ - supergoodsolidustaxjar
2459
+ Connection:
2460
+ - close
2461
+ Content-Type:
2462
+ - application/json; charset=UTF-8
2463
+ Host:
2464
+ - api.taxjar.com
2465
+ response:
2466
+ status:
2467
+ code: 201
2468
+ message: Created
2469
+ headers:
2470
+ Content-Type:
2471
+ - application/json; charset=utf-8
2472
+ Content-Length:
2473
+ - '630'
2474
+ Connection:
2475
+ - close
2476
+ Date:
2477
+ - Wed, 13 Apr 2022 18:19:24 GMT
2478
+ X-Amzn-Requestid:
2479
+ - bcac5f5c-0872-4f03-a418-380ed757ebe3
2480
+ X-Amzn-Remapped-Content-Length:
2481
+ - '630'
2482
+ X-Amzn-Remapped-Connection:
2483
+ - keep-alive
2484
+ X-Request-Id:
2485
+ - FuWHoQ6ivG3-RfkL9OvB
2486
+ X-Api-Version:
2487
+ - '2020-08-07'
2488
+ X-Amz-Apigw-Id:
2489
+ - QiAW9HM7IAMF6Dw=
2490
+ Cache-Control:
2491
+ - max-age=0, private, must-revalidate
2492
+ X-Amzn-Remapped-Server:
2493
+ - Cowboy
2494
+ X-Amzn-Remapped-Date:
2495
+ - Wed, 13 Apr 2022 18:19:24 GMT
2496
+ X-Cache:
2497
+ - Miss from cloudfront
2498
+ Via:
2499
+ - 1.1 ae06b19943a6bad1c1b12b79f7339498.cloudfront.net (CloudFront)
2500
+ X-Amz-Cf-Pop:
2501
+ - SEA19-C3
2502
+ X-Amz-Cf-Id:
2503
+ - ts-1_jEBGdp6f-sdpDFA9YH6Fsii4J3dGZMHTm2W6Lxr-_JCV3noUA==
2504
+ body:
2505
+ encoding: UTF-8
2506
+ string: '{"order":{"user_id":225397,"transaction_reference_id":null,"transaction_id":"R125507103","transaction_date":"2022-04-13T18:19:21.000Z","to_zip":"11430","to_street":"A
2507
+ Different Road","to_state":"NY","to_country":"US","to_city":"HERNDON","shipping":"100.0","sales_tax":"9.77","provider":"api","line_items":[{"unit_price":"10.0","sales_tax":"0.89","quantity":1,"product_tax_code":"123","product_identifier":"SKU-1","id":0,"discount":"0.0","description":"Product
2508
+ #1 - 5058 - Master"}],"from_zip":null,"from_street":null,"from_state":null,"from_country":"US","from_city":null,"exemption_type":null,"customer_id":"1","amount":"110.0"}}'
2509
+ http_version:
2510
+ recorded_at: Wed, 13 Apr 2022 18:19:24 GMT
2511
+ recorded_with: VCR 4.0.0