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