suretax 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +27 -0
  3. data/.travis.yml +14 -0
  4. data/Gemfile +4 -0
  5. data/Gemfile.lock +74 -0
  6. data/Gemfile.travis +12 -0
  7. data/LICENSE.txt +22 -0
  8. data/NOTES.md +3 -0
  9. data/README.md +58 -0
  10. data/Rakefile +1 -0
  11. data/circle.yml +7 -0
  12. data/lib/suretax.rb +24 -0
  13. data/lib/suretax/api.rb +7 -0
  14. data/lib/suretax/api/cancel_request.rb +64 -0
  15. data/lib/suretax/api/group.rb +16 -0
  16. data/lib/suretax/api/item_message.rb +13 -0
  17. data/lib/suretax/api/request.rb +133 -0
  18. data/lib/suretax/api/request_item.rb +84 -0
  19. data/lib/suretax/api/response.rb +53 -0
  20. data/lib/suretax/api/tax.rb +25 -0
  21. data/lib/suretax/api/tax_amount.rb +46 -0
  22. data/lib/suretax/concerns.rb +7 -0
  23. data/lib/suretax/concerns/validatable.rb +208 -0
  24. data/lib/suretax/configuration.rb +84 -0
  25. data/lib/suretax/connection.rb +48 -0
  26. data/lib/suretax/constants.rb +7 -0
  27. data/lib/suretax/constants/regulatory_codes.rb +11 -0
  28. data/lib/suretax/constants/response_groups.rb +8 -0
  29. data/lib/suretax/constants/sales_type_codes.rb +8 -0
  30. data/lib/suretax/constants/tax_situs_codes.rb +12 -0
  31. data/lib/suretax/constants/transaction_type_codes.rb +505 -0
  32. data/lib/suretax/response.rb +70 -0
  33. data/lib/suretax/version.rb +3 -0
  34. data/spec/lib/suretax/api/group_spec.rb +50 -0
  35. data/spec/lib/suretax/api/request_item_spec.rb +54 -0
  36. data/spec/lib/suretax/api/request_item_validations_spec.rb +237 -0
  37. data/spec/lib/suretax/api/request_spec.rb +197 -0
  38. data/spec/lib/suretax/api/request_validations_spec.rb +384 -0
  39. data/spec/lib/suretax/api/response_spec.rb +165 -0
  40. data/spec/lib/suretax/api/tax_amount_spec.rb +37 -0
  41. data/spec/lib/suretax/api/tax_spec.rb +59 -0
  42. data/spec/lib/suretax/configuration_spec.rb +97 -0
  43. data/spec/lib/suretax/connection_spec.rb +77 -0
  44. data/spec/lib/suretax/response_spec.rb +136 -0
  45. data/spec/spec_helper.rb +45 -0
  46. data/spec/support/cancellation_helper.rb +31 -0
  47. data/spec/support/connection_shared_examples.rb +37 -0
  48. data/spec/support/request_helper.rb +309 -0
  49. data/spec/support/suretax_helper.rb +27 -0
  50. data/spec/support/validations_shared_examples.rb +28 -0
  51. data/suretax.gemspec +33 -0
  52. metadata +281 -0
@@ -0,0 +1,48 @@
1
+ require 'faraday'
2
+ require 'uri'
3
+ require 'json'
4
+
5
+ module Suretax
6
+
7
+ class Connection
8
+ attr_accessor :headers
9
+
10
+ def initialize(args = {})
11
+ @link = Faraday.new( url: args[:base_url] || api_host )
12
+ @headers = @link.headers
13
+ headers['Content-Type'] = 'application/x-www-form-urlencoded'
14
+ end
15
+
16
+ def post(body = {})
17
+ Response.new(@link.post(post_path, "request=#{encode_body(body)}"))
18
+ end
19
+
20
+ def cancel(body = {})
21
+ Response.new(@link.post(cancel_path, "requestCancel=#{encode_body(body)}"))
22
+ end
23
+
24
+ private
25
+
26
+ def encode_body(request_hash)
27
+ json_body = JSON.generate(request_hash)
28
+ URI.encode_www_form_component(json_body)
29
+ end
30
+
31
+ def post_path
32
+ configuration.request_path
33
+ end
34
+
35
+ def cancel_path
36
+ configuration.cancel_path
37
+ end
38
+
39
+ def api_host
40
+ configuration.base_url
41
+ end
42
+
43
+ def configuration
44
+ Suretax.configuration
45
+ end
46
+ end
47
+
48
+ end
@@ -0,0 +1,7 @@
1
+ module Suretax
2
+ require "suretax/constants/regulatory_codes"
3
+ require "suretax/constants/response_groups"
4
+ require "suretax/constants/sales_type_codes"
5
+ require "suretax/constants/tax_situs_codes"
6
+ require "suretax/constants/transaction_type_codes"
7
+ end
@@ -0,0 +1,11 @@
1
+ module Suretax
2
+ REGULATORY_CODES = {
3
+ ilec: '00',
4
+ ixc: '01',
5
+ clec: '02',
6
+ voip: '03',
7
+ isp: '04',
8
+ wireless: '05',
9
+ default: '99'
10
+ }
11
+ end
@@ -0,0 +1,8 @@
1
+ module Suretax
2
+ RESPONSE_GROUPS = {
3
+ by_state: '00',
4
+ by_state_and_invoice: '01',
5
+ by_state_and_customer: '02',
6
+ by_state_and_customer_and_invoice: '03'
7
+ }
8
+ end
@@ -0,0 +1,8 @@
1
+ module Suretax
2
+ SALES_TYPE_CODES = {
3
+ residential: 'R',
4
+ business: 'B',
5
+ industrial: 'I',
6
+ lifeline: 'L'
7
+ }
8
+ end
@@ -0,0 +1,12 @@
1
+ module Suretax
2
+ TAX_SITUS_RULES = {
3
+ two_of_three: '01',
4
+ billed_to_number: '02',
5
+ origination_number: '03',
6
+ billing_zip: '04',
7
+ billing_zip_plus_4: '05',
8
+ private_lines: '06',
9
+ point_to_point: '07',
10
+ vat: '14'
11
+ }
12
+ end
@@ -0,0 +1,505 @@
1
+ module Suretax
2
+ TRANSACTION_TYPE_CODES = {
3
+ "010101" => "Long Distance, Long Distance Toll",
4
+ "010201" => "Long Distance, 800 Number Service",
5
+ "010202" => "Long Distance, 800 Service - Connection/Disconnection Charge",
6
+ "010203" => "Long Distance, 800 Service - Basic Service Charges - Recurring",
7
+ "010204" => "Long Distance, 800 Service - Basic Service Charges - Amount Attributable To Intrastate - Recurring",
8
+ "010205" => "Long Distance, 800 Service - Basic Service Charges - Amount Attributable To Interstate - Recurring",
9
+ "010301" => "Long Distance, 900 Service - Local Pay Per Call Service - Transmission & Information Service",
10
+ "010302" => "Long Distance, 900 Service - Local Pay Per Call Service - Amount Attributable To Transmission",
11
+ "010303" => "Long Distance, 900 Service - Local Pay Per Call Service - Amount Attributable To Information Service",
12
+ "010304" => "Long Distance, 900 Service - Intrastate - Transmission & Information Service",
13
+ "010305" => "Long Distance, 900 Service - Intrastate - Amount Attributable To Transmission",
14
+ "010306" => "Long Distance, 900 Service - Intrastate - Amount Attributable To Information Service",
15
+ "010307" => "Long Distance, 900 Service - Interstate - Transmission & Information Service",
16
+ "010308" => "Long Distance, 900 Service - Interstate - Amount Attributable To Transmission",
17
+ "010309" => "Long Distance, 900 Service - Interstate - Amount Attributable To Information Service",
18
+ "010401" => "Long Distance, Long Distance Service Plan - Fee",
19
+ "010402" => "Long Distance, Long Distance Service Plan - Connection/Disconnection Charges - Non-Recurring",
20
+ "010403" => "Long Distance, Long Distance Service Plan - Service Charges- Intra/Interstate Plan - Recurring",
21
+ "010404" => "Long Distance, Long Distance Service Plan - Service Charges - Intrastate Plan - Recurring",
22
+ "010405" => "Long Distance, Long Distance Service Plan - Service Charges - Interstate Plan -Recurring",
23
+ "010406" => "Long Distance, Long Distance Service Plan - Service Charges - Intra/Interstate Plan - Amount Attributable To Intrastate - Recurring",
24
+ "010407" => "Long Distance, Long Distance Service Plan - Service Charges - Intra/Interstate Plan - Amount Attributable To Interstate - Recurring",
25
+ "010408" => "Long Distance, Long Distance Service Plan - Service Charges - International Plan - Recurring",
26
+ "010409" => "Long Distance, Long Distance Service Plan - Service Charges - Unlimited Long Distance Calling Plan - Amount Attributable To International",
27
+ "010107" => "Long Distance, Long Distance Toll - Federal Taxes only",
28
+ "010153" => "Long Distance, Long Distance Toll - INTERSTATE (Originates in the state and billed to a service address in the state)",
29
+ "010156" => "Long Distance, Long Distance Toll - International O/B",
30
+ "010201" => "Long Distance, 800 Number Service",
31
+ "010207" => "Long Distance, 800 Number Service - Connection/Disconnection Charges - Intrastate",
32
+ "010208" => "Long Distance, 800 Number Service - Connection/Disconnection Charges - Interstate",
33
+ "010257" => "Long Distance, 800 Number Service - Intrastate",
34
+ "010258" => "Long Distance, 800 Number Service - Interstate",
35
+ "020101" => "Local Services, Local Toll Calls",
36
+ "020102" => "Local Services, Local Unit-Based Calls",
37
+ "020102" => "Local Services, Local Unit-Based Calls",
38
+ "020201" => "Local Services, Standard Line - Recurring Charge",
39
+ "020202" => "Local Services, Activation/Deactivation Charge for a Vertical Feature (Call Waiting/Call Forwarding)",
40
+ "020203" => "Local Services, Recurring Service Charge for a Vertical Feature (Call Waiting/Call Forwarding)",
41
+ "020204" => "Local Services, Usage Charge for a Vertical Feature (Call Waiting/Call Forwarding)",
42
+ "020205" => "Local Services, Connection/Disconnection Charge - Non-Recurring",
43
+ "020206" => "Local Services, Local Calling Area Charge - Recurring",
44
+ "020207" => "Local Services, Standard Line - Pro-Rated Charge When Converting from Another Carrier",
45
+ "020208" => "Local Services, Trunk Line DID",
46
+ "020209" => "Local Services, Trunk Line DOD & DID/DOD",
47
+ "020210" => "Local Services, Co-Located Trunk Line DID in Central Office",
48
+ "020211" => "Local Services, Co-Located Trunk DOD & DID/DODin Central Office",
49
+ "020212" => "Local Services, Centrex Line - Recurring",
50
+ "020213" => "Local Services, High-Capacity Trunk Line - Recurring Charge - 1.5MB T-1",
51
+ "020214" => "Local Services, High-Capacity Trunk Line - Recurring Charge - ISDN-PRI",
52
+ "020215" => "Local Services, High-Capacity Trunk Line - Recurring Charge - DID Only",
53
+ "020216" => "Local Services, High-Capacity Trunk Line -ISDN - PRI - DID Only",
54
+ "020217" => "Local Services, Centrex Service - Accessory Features",
55
+ "020301" => "Local Services, Bundled Service Plan - Local/Long Distance Service Plan - Recurring",
56
+ "020302" => "Local Services, Bundled Service Plan - Amount Attributable to Local Basic Service",
57
+ "020303" => "Local Services, Bundled Service Plan - Vertical Features Charge",
58
+ "020304" => "Local Services, Bundled Service Plan - Amount Attributable to Local Non-Basic Service",
59
+ "020101" => "Local Services, Local Toll Calls",
60
+ "030101" => "Cellular Services, Cellular Service - Monthly Chg - Basic Service Charges (Recurring)",
61
+ "030102" => "Cellular Services, Cellular Service - Monthly Chg - Other Service Charges (Recurring)",
62
+ "030103" => "Cellular Services, Cellular Service - Monthly Chg - Other Service Charges (Non-Recurring)",
63
+ "030104" => "Cellular Services, Cellular Service - Monthly Chg - Vertical Features (Call Waiting/Call Forwarding Etc.) - Activation/Deactivation (Non - Recurring)",
64
+ "030105" => "Cellular Services, Cellular Service - Monthly Chg - Vertical Features (Call Waiting/Call Forwarding Etc.) - Service Charges (Recurring)",
65
+ "030106" => "Cellular Services, Cellular Service - Monthly Chg - Vertical Features (Call Waiting/Call Forwarding Etc.) - Usage",
66
+ "030107" => "Cellular Services, Cellular Service - Monthly Chg - Activation/Deactivation Charges (Non-Recurring)",
67
+ "030108" => "Cellular Services, Cellular Service - Monthly Chg - Cellular Local-Only Calling Plan - Basic Service Charges",
68
+ "030109" => "Cellular Services, Cellular Service - Airtime Undetermined",
69
+ "030111" => "Cellular Services, Cellular Service - Airtime Intrastate - Call Org or Term in City of Primary Use",
70
+ "030112" => "Cellular Services, Cellular Service - Airtime Intrastate - Call Org or Term in State of Primary Use",
71
+ "030113" => "Cellular Services, Cellular Service - Airtime Intrastate - Call Org or Term in State Other than State of Primary Use",
72
+ "030114" => "Cellular Services, Cellular Service - Airtime Interstate - Call Org or Term in City of Primary Use",
73
+ "030115" => "Cellular Services, Cellular Service - Airtime Interstate - Call Org or Term in State of Primary Use",
74
+ "030116" => "Cellular Services, Cellular Service - Airtime Interstate - Call Org or Term in State Other than State of Primary Use",
75
+ "030201" => "Cellular Services, Cellular Service - Toll Charges - Airtime Undetermined",
76
+ "030252" => "Cellular Services, Cellular Service - Airtime - Intrastate - Call Orig or Term in City of PPU",
77
+ "030253" => "Cellular Services, Cellular Service - Airtime - Intrastate - Call Orig or Term in State of PPU",
78
+ "030254" => "Cellular Services, Cellular Service - Airtime - Intrastate - Call Orig or Term in State other than PPU State",
79
+ "030255" => "Cellular Services, Cellular Service - Airtime - Interstate - Call Orig or Term in City of PPU",
80
+ "030256" => "Cellular Services, Cellular Service - Airtime - Interstate - Call Orig or Term in State of PPU",
81
+ "030257" => "Cellular Services, Cellular Service - Airtime - Interstate - Call Orig or Term in State other than PPU State",
82
+ "030258" => "Cellular Services, Cellular Service - Airtime - Foreign Customer - Intrastate - Call Orig or Term in State",
83
+ "030259" => "Cellular Services, Cellular Service - Airtime - Foreign Customer - Interstate/International",
84
+ "030260" => "Cellular Services, Cellular Service - Long-Distance Charge - Undetermined",
85
+ "030261" => "Cellular Services, Cellular Service - Long-Distance Charge - Intrastate - Call Orig or Term in City of PPU",
86
+ "030262" => "Cellular Services, Cellular Service - Long-Distance Charge - Intrastate - Call Orig or Term in State of PPU",
87
+ "030263" => "Cellular Services, Cellular Service - Long-Distance Charge - Intrastate - Call Orig or Term in State other than PPU State",
88
+ "030264" => "Cellular Services, Cellular Service - Long-Distance Charge - Interstate - Call Orig or Term in City of PPU",
89
+ "030265" => "Cellular Services, Cellular Service - Long-Distance Charge - Interstate - Call Orig or Term in State of PPU",
90
+ "030266" => "Cellular Services, Cellular Service - Long-Distance Charge - Interstate - Call Orig or Term in State other than PPU State",
91
+ "030267" => "Cellular Services, Cellular Service - Long-Distance Charge - Foreign Customer - Intrastate - Call Orig or Term in State",
92
+ "030268" => "Cellular Services, Cellular Service - Long-Distance Charge - Foreign Customer - Interstate",
93
+ "040101" => "Prepaid Wireless / Cellular, Monthly Service Charge - Recurring",
94
+ "040102" => "Prepaid Wireless / Cellular, Authorization Code - Denominated in Dollars",
95
+ "040103" => "Prepaid Wireless / Cellular, Re-Charge - Denominated in Dollars",
96
+ "040104" => "Prepaid Wireless / Cellular, Usage / Airtime Charges",
97
+ "040105" => "Prepaid Wireless / Cellular, Phone Card - Denominated in Dollars",
98
+ "040106" => "Prepaid Wireless / Cellular, Initial Set-up Charge",
99
+ "040107" => "Prepaid Wireless / Cellular, Phone Card - Denominated in Minutes",
100
+ "040108" => "Prepaid Wireless / Cellular, Authorization Code - Denominated in Minutes",
101
+ "040109" => "Prepaid Wireless / Cellular, Recharge - Denominated in Minutes",
102
+ "040201" => "Prepaid Wireless / Cellular, Wholesale - Sale of Phone Card - Intrastate/Interstate",
103
+ "040202" => "Prepaid Wireless / Cellular, Wholesale - Sale of Phone Card - Amount Attributable to Intrastate",
104
+ "040203" => "Prepaid Wireless / Cellular, Wholesale - Sale of Phone Card - Amount Attributable to Interstate",
105
+ "040204" => "Prepaid Wireless / Cellular, Wholesale - Unit Based Monthly Access Charges",
106
+ "040301" => "Prepaid Wireless / Cellular, Retail - Sale of Phone Card - Intrastate/Interstate",
107
+ "040302" => "Prepaid Wireless / Cellular, Retail - Sale of Phone Card - Amount Attributable to Intrastate",
108
+ "040303" => "Prepaid Wireless / Cellular, Retail - Sale of Phone Card - Amount Attributable to Interstate",
109
+ "040304" => "Prepaid Wireless / Cellular, Retail - Unit Based Monthly Access Charges",
110
+ "040401" => "Prepaid Wireless / Cellular, Prepaid Wireless Retailer - Phone Card - Denominated in Dollars",
111
+ "040402" => "Prepaid Wireless / Cellular, Prepaid Wireless Retailer - Phone Card - Denominated in Minutes",
112
+ "050101" => "VoIP Services, Basic Service Charges - Fixed VOIP Service",
113
+ "050102" => "VoIP Services, VOIP Monthly Charge - Amount Attributable To Local Service",
114
+ "050103" => "VoIP Services, VOIP Monthly Charge - Amount Attributable To Intrastate Toll Service",
115
+ "050104" => "VoIP Services, VOIP Monthly Charge - Amount Attributable To Interstate Toll Service",
116
+ "050105" => "VoIP Services, Usage-Based Charges - Fixed VOIP Service",
117
+ "050110" => "VoIP Services, Activation/Deactivation Charges",
118
+ "050112" => "VoIP Services, VOIP-Enabled Vertical Features",
119
+ "050113" => "VoIP Services, IP Centrex Line",
120
+ "050114" => "VoIP Services, Fax Over IP - Fixed VoIP Service",
121
+ "050115" => "VoIP Services, SIP Trunk - Standard",
122
+ "050116" => "VoIP Services, SIP Trunk - High Capacity",
123
+ "050117" => "VoIP Services, Non-Interconnected VoIP - Usage Based Charges (Undetermined) - Fixed VoIP Service",
124
+ "050201" => "VoIP Services, Basic Service Charges - Nomadic VOIP Service",
125
+ "050202" => "VoIP Services, VOIP Monthly Charge - Amount Attributable To Local Service",
126
+ "050203" => "VoIP Services, VOIP Monthly Charge - Amount Attributable To Intrastate Toll Service",
127
+ "050204" => "VoIP Services, VOIP Monthly Charge - Amount Attributable To Interstate Toll Service",
128
+ "050205" => "VoIP Services, Usage-Based Charges - Nomadic VOIP Service",
129
+ "050210" => "VoIP Services, Activation/Deactivation Charges",
130
+ "050212" => "VoIP Services, VOIP-Enabled Vertical Features",
131
+ "050213" => "VoIP Services, IP Centrex Line",
132
+ "050215" => "VoIP Services, SIP Trunk - Standard",
133
+ "050216" => "VoIP Services, SIP Trunk - High Capacity",
134
+ "050401" => "VoIP Services, Wireless VOIP Monthly Service Charge",
135
+ "050402" => "VoIP Services, Wireless VOIP - Monthly Service Charge - Amount Attributable To Local Service",
136
+ "050403" => "VoIP Services, Wireless VOIP - Monthly Service Charge - Amount Attributable To Intrastate Toll Service",
137
+ "050404" => "VoIP Services, Wireless VOIP - Monthly Service Charge - Amount Attributable To Interstate Toll Service",
138
+ "050405" => "VoIP Services, Wireless VOIP - Activation / Deactivation Charges",
139
+ "050406" => "VoIP Services, Wireless VOIP - Vertical Features Charges",
140
+ "050158" => "VoIP Services, Usage-Based Charges - Fixed VOIP Service - Interstate / International",
141
+ "050214" => "VoIP Services, Fax Over IP - Nomadic VoIP Service",
142
+ "050217" => "VoIP Services, Non-Interconnected VoIP - Usage Based Charges (Undetermined) - Nomadic VoIP Service",
143
+ "050255" => "VoIP Services, Usage-Based Charges - Nomadic VOIP Service - Undetermined",
144
+ "050256" => "VoIP Services, Usage-Based Charges - Nomadic VOIP Service - Local",
145
+ "050257" => "VoIP Services, Usage-Based Charges - Nomadic VOIP Service - Intrastate",
146
+ "050258" => "VoIP Services, Usage-Based Charges - Nomadic VOIP Service - Interstate / International",
147
+ "060101" => "Internet, Recurring Internet Access Charges",
148
+ "060102" => "Internet, Broadband Transmission Charges",
149
+ "070201" => "Private Line, Data - Line Charge - Intrastate Intracity",
150
+ "070249" => "Private Line, Data - Line Charge - Interstate",
151
+ "070249" => "Private Line, Data - Line Charge - Intrastate Intracity",
152
+ "070249" => "Private Line, Data - Line Charge - Intrastate Intercity IntraLATA",
153
+ "070249" => "Private Line, Data - Line Charge - Intrastate Intercity InterLATA",
154
+ "070250" => "Private Line, Data - Local Loop Connecting To Interstate Line",
155
+ "070250" => "Private Line, Data - Local Loop Connecting To Intrastate Intracity Line",
156
+ "070250" => "Private Line, Data - Local Loop Connecting To Intrastate Intercity IntraLATA",
157
+ "070250" => "Private Line, Data - Local Loop Connecting To Intrastate Intercity InterLATA",
158
+ "070251" => "Private Line, Data - Connection/Disconnection - Interstate",
159
+ "070251" => "Private Line, Data - Connection/Disconnection - Intrastate Intracity",
160
+ "070251" => "Private Line, Data - Connection/Disconnection - Intrastate Intracity IntraLata",
161
+ "070251" => "Private Line, Data - Connection/Disconnection - Intrastate Intracity InterLata",
162
+ "070101" => "Private Line, Voice - Line Charge - Intrastate Intracity",
163
+ "070102" => "Private Line, Voice - Line Charge - Intrastate Intercity IntraLATA",
164
+ "070103" => "Private Line, Voice - Line Charge - Intrastate Intercity InterLATA",
165
+ "070104" => "Private Line, Voice - Line Charge - Interstate",
166
+ "070109" => "Private Line, Voice - Channel Termination Point (Local Loop) - Intrastate Intracity",
167
+ "070110" => "Private Line, Voice - Channel Termination Point (Local Loop) - Intrastate Intercity IntraLATA",
168
+ "070111" => "Private Line, Voice - Channel Termination Point (Local Loop) - Intrastate Intercity InterLATA",
169
+ "070112" => "Private Line, Voice - Channel Termination Point (Local Loop) - Interstate",
170
+ "070116" => "Private Line, Voice - Connection/Disconnection - Intrastate Intracity",
171
+ "070117" => "Private Line, Voice - Connection/Disconnection - Intrastate Intercity IntraLATA",
172
+ "070118" => "Private Line, Voice - Connection/Disconnection - Intrastate Intercity InterLATA",
173
+ "070119" => "Private Line, Voice - Connection/Disconnection - Interstate",
174
+ "070123" => "Private Line, Voice - Service Charge - Non-Recurring - Intrastate Intracity",
175
+ "070124" => "Private Line, Voice - Service Charge - Non-Recurring - Intrastate Intercity IntraLATA",
176
+ "070125" => "Private Line, Voice - Service Charge - Non-Recurring - Intrastate Intercity InterLATA",
177
+ "070126" => "Private Line, Voice - Service Charge - Non-Recurring - Interstate",
178
+ "070149" => "Private Line, Voice - Line Charge - Interstate",
179
+ "070149" => "Private Line, Voice - Line Charge - Intrastate Intracity",
180
+ "070149" => "Private Line, Voice - Line Charge - Intrastate Intercity IntraLATA",
181
+ "070149" => "Private Line, Voice - Line Charge - Intrastate Intercity InterLATA",
182
+ "070202" => "Private Line, Data - Line Charge - Intrastate Intercity IntraLATA",
183
+ "070203" => "Private Line, Data - Line Charge - Intrastate Intercity InterLATA",
184
+ "070204" => "Private Line, Data - Line Charge - Interstate",
185
+ "070209" => "Private Line, Data - Channel Termination Point (Local Loop) - Intrastate Intracity",
186
+ "070210" => "Private Line, Data - Channel Termination Point (Local Loop) - Intrastate Intercity IntraLATA",
187
+ "070211" => "Private Line, Data - Channel Termination Point (Local Loop) - Intrastate Intercity InterLATA",
188
+ "070212" => "Private Line, Data - Channel Termination Point (Local Loop) - Interstate",
189
+ "070216" => "Private Line, Data - Connection/Disconnection - Intrastate Intracity",
190
+ "070217" => "Private Line, Data - Connection/Disconnection - Intrastate Intercity IntraLATA",
191
+ "070218" => "Private Line, Data - Connection/Disconnection - Intrastate Intercity InterLATA",
192
+ "070219" => "Private Line, Data - Connection/Disconnection - Interstate",
193
+ "070223" => "Private Line, Data - Service Charge - Non-Recurring - Intrastate Intracity",
194
+ "070224" => "Private Line, Data - Service Charge - Non-Recurring - Intrastate Intercity IntraLATA",
195
+ "070225" => "Private Line, Data - Service Charge - Non-Recurring - Intrastate Intercity InterLATA",
196
+ "070226" => "Private Line, Data - Service Charge - Non-Recurring - Interstate",
197
+ "080101" => "Data Lines, Non-PSTN Data Line Non-Private - Intrastate Access Charge - Recurring",
198
+ "080102" => "Data Lines, Non-PSTN Data Line Non-Private - Interstate Access Charge - Recurring",
199
+ "080103" => "Data Lines, Non-PSTN Data Line Non-Private - Usage Charge",
200
+ "080104" => "Data Lines, Non-PSTN Data Line Non-Private - Port Charges - Recurring",
201
+ "080105" => "Data Lines, Non-PSTN Data Line Non-Private - Local Loop Charge - Recurring",
202
+ "080106" => "Data Lines, Non-PSTN Data Line Non-Private - Local Loop Usage Charge",
203
+ "080107" => "Data Lines, Non-PSTN Data Line Non-Private - Connection/Disconnection Charge - Intrastate",
204
+ "080108" => "Data Lines, Non-PSTN Data Line Non-Private - Connection/Disconnection Charge - Interstate",
205
+ "080109" => "Data Lines, Non-PSTN Data Line Non-Private - Service Charge - Intrastate",
206
+ "080110" => "Data Lines, Non-PSTN Data Line Non-Private - Service Charge - Interstate",
207
+ "080201" => "Data Lines, PSTN Data Line Non-Private - Intrastate Access Charges - Recurring",
208
+ "080202" => "Data Lines, PSTN Data Line Non-Private - Interstate Access Charges - Recurring",
209
+ "080203" => "Data Lines, PSTN Data Line Non-Private - Usage Charges",
210
+ "080204" => "Data Lines, PSTN Data Line Non-Private - Connection/Disconnection Charge - Non-Recurring",
211
+ "080205" => "Data Lines, PSTN Data Line Non-Private - Service Charges - Non-Recurring",
212
+ "080206" => "Data Lines, PSTN Data Line Non-Private - Access Charges - Primary Rate Interface ISDN Line - Intrastate - Recurring",
213
+ "080111" => "Data Lines, Non-PSTN Data Line Non-Private - Access Charge - Intrastate/Intersrate (Recurring)",
214
+ "080112" => "Data Lines, Non-PSTN Data Line Non-Private - Connection/Disconnection Charge - Intrastate/Interstate",
215
+ "080113" => "Data Lines, Non-PSTN Data Line Non-Private - Service Charge - Intrastate/Interstate",
216
+ "080203" => "Data Lines, PSTN Data Line Non-Private - Usage Charges - Interstate",
217
+ "080203" => "Data Lines, PSTN Data Line Non-Private - Usage Charges - Intrastate",
218
+ "080207" => "Data Lines, PSTN Data Line Non-Private - Intra/Interstate Access Charges - Recurring",
219
+ "080253" => "Data Lines, PSTN Data Line Non-Private - Usage Charges - Intrastate",
220
+ "080254" => "Data Lines, PSTN Data Line Non-Private - Usage Charges - Interstate",
221
+ "090101" => "Wireless Data Services, Non-PSTN Wireless Data Service - Basic Service Charge - Recurring",
222
+ "090102" => "Wireless Data Services, Non-PSTN Wireless Data Service - Activation/Deactivation Charge - Non-Recurring",
223
+ "090103" => "Wireless Data Services, Non-PSTN Wireless Data Service -Data Transmission - Usage-Based Charges",
224
+ "090104" => "Wireless Data Services, Non-PSTN Wireless Data Service - Wireless E-Mail Services",
225
+ "090201" => "Wireless Data Services, PSTN Wireless Data Service - Basic Service Charge - Recurring",
226
+ "090202" => "Wireless Data Services, PSTN Wireless Data Service - Activation/Deactivation Charge - Non-Recurring",
227
+ "090203" => "Wireless Data Services, PSTN Wireless Data Service -Data Transmission - Usage-Based Charges",
228
+ "090204" => "Wireless Data Services, PSTN Wireless Data Service - Wireless E-Mail Services",
229
+ "100101" => "Paging, One-Way Paging - Activation/Deactivation Fee - Non-Recurring",
230
+ "100102" => "Paging, One-Way Paging - Basic Service Charges - Recurring",
231
+ "100103" => "Paging, One-Way Paging - Airtime/Usage Charges",
232
+ "100104" => "Paging, One-Way Paging - Vertical Features - Activation/Deactivation Fee - Non-Recurring",
233
+ "100105" => "Paging, One-Way Paging - Vertical Features - Service Charges - Recurring",
234
+ "100106" => "Paging, One-Way Paging - Vertical Features - Usage",
235
+ "100107" => "Paging, One-Way Paging - Basic Service Charges Attributable to Intrastate - Recurring",
236
+ "100108" => "Paging, One-Way Paging - Basic Service Charges Attributable to Interstate - Recurring",
237
+ "100109" => "Paging, One-Way Paging - Airtime/Usage - Place of Primary Use is a Service Address in the State",
238
+ "100201" => "Paging, Two-Way Paging - Activation/Deactivation Charge - Non-recurring",
239
+ "100202" => "Paging, Two -Way Paging - Basic Service Charges - Recurring",
240
+ "100203" => "Paging, Two -Way Paging - Airtime/Usage Charges",
241
+ "100204" => "Paging, Two -Way Paging - Vertical Features - Activation/Deactivation Fee - Non-Recurring",
242
+ "100205" => "Paging, Two -Way Paging - Vertical Features - Service Charges - Recurring",
243
+ "100206" => "Paging, Two -Way Paging - Vertical Features - Usage",
244
+ "100207" => "Paging, Two -Way Paging - Basic Service Charges Attributable to Intrastate - Recurring",
245
+ "100208" => "Paging, Two -Way Paging - Basic Service Charges Attributable to Interstate - Recurring",
246
+ "100209" => "Paging, Two -Way Paging - Airtime/Usage - Place of Primary Use is a Service Address in the State",
247
+ "110101" => "Misc Telecom Charges, Voice Mail Service - Activation/Deactivation Charge",
248
+ "110102" => "Misc Telecom Charges, Voice Mail Service - Basic Service Charge - Recurring",
249
+ "110103" => "Misc Telecom Charges, Voice Mail Service - Usage",
250
+ "110201" => "Misc Telecom Charges, Installation - Telecom - Labor Separately Stated On Invoice",
251
+ "110202" => "Misc Telecom Charges, Installation - Telecom - Labor - Lump Sum Bill with Equipment",
252
+ "110301" => "Misc Telecom Charges, Directory Assistance - Local Usage",
253
+ "110302" => "Misc Telecom Charges, Directory Assistance - Long Distance Usage",
254
+ "110352" => "Misc Telecom Charges, Directory Assistance - Long Distance Usage - Interstate / International",
255
+ "110401" => "Misc Telecom Charges, Telecom Equipment Leasing - Used with a Local Service - Lease Term in Excess of 30 Days",
256
+ "110402" => "Misc Telecom Charges, Telecom Equipment Leasing - Not Used with a Local Service - Lease Term in Excess of 30 Days",
257
+ "110403" => "Misc Telecom Charges, Telecom Equipment Leasing - Used with Local Service and Private System - Lease Term in Excess of 30 Days",
258
+ "110404" => "Misc Telecom Charges, Non-Telecom Equipment - Lease Term in Excess of 30 Days",
259
+ "110501" => "Misc Telecom Charges, Teleconferencing Service - Usage with Transmission",
260
+ "110502" => "Misc Telecom Charges, Teleconferencing Service - Usage without Transmission",
261
+ "110508" => "Misc Telecom Charges, Teleconferencing Service - Usage without Transmission Undetermined",
262
+ "110601" => "Misc Telecom Charges, Unpublished/Unlisted Number Charge",
263
+ "110602" => "Misc Telecom Charges, Additional Directory Listing Charge",
264
+ "110603" => "Misc Telecom Charges, Detailed Billing / Invoice Fee",
265
+ "110604" => "Misc Telecom Charges, Customer Account Set-up Fee",
266
+ "110605" => "Misc Telecom Charges, Expedite / Rush Processing Fee",
267
+ "110606" => "Misc Telecom Charges, Termination Fee",
268
+ "110607" => "Misc Telecom Charges, Returned Check Fee",
269
+ "110801" => "Misc Telecom Charges, Payphone Access Line",
270
+ "120101" => "Telecom Fees, FCC Fee - Subscriber Line Charge",
271
+ "120102" => "Telecom Fees, FCC Fee - PICC Fee - Long Distance Carrier Charge",
272
+ "120103" => "Telecom Fees, FCC Fee - Local Number Portability Charge",
273
+ "140101" => "Wireless Enhanced Services, Cellular Ringtones Charge",
274
+ "140102" => "Wireless Enhanced Services, Information Alerts Charge",
275
+ "140103" => "Wireless Enhanced Services, Digitized Media Fee - Access Only",
276
+ "140104" => "Wireless Enhanced Services, Digitized Media Fee - Downloads",
277
+ "140105" => "Wireless Enhanced Services, Electronic Games Fee - Access Only",
278
+ "140106" => "Wireless Enhanced Services, Electronic Games Fee - Downloads",
279
+ "140107" => "Wireless Enhanced Services, Text Messaging Charges",
280
+ "150101" => "Prepaid Wireline Services, Wireline Prepaid Service - Phone Card - Denominated In Dollars",
281
+ "150102" => "Prepaid Wireline Services, Wireline Prepaid Service - Authorization Code - Denominated In Dollars",
282
+ "150103" => "Prepaid Wireline Services, Wireline Prepaid Service - Re-Charge - Denominated In Dollars",
283
+ "150104" => "Prepaid Wireline Services, Wireline Prepaid Service - Usage",
284
+ "150105" => "Prepaid Wireline Services, Wireline Prepaid Service - Monthly Service Charge (Recurring)",
285
+ "150106" => "Prepaid Wireline Services, Wireline Prepaid Service - Initial Set Up Charge",
286
+ "150107" => "Prepaid Wireline Services, Wireline Prepaid Service - Phone Card - Denominated In Minutes",
287
+ "150108" => "Prepaid Wireline Services, Wireline Prepaid Service - Authorization Code - Denominated In Minutes",
288
+ "150109" => "Prepaid Wireline Services, Wireline Prepaid Service - Recharge - Denominated In Minutes",
289
+ "150201" => "Prepaid Wireline Services, Wireline Prepaid (Wholesale) - Sale Of Phone Card - Intrastate/Interstate",
290
+ "150202" => "Prepaid Wireline Services, Wireline Prepaid (Wholesale) - Sale Of Phone Card - Amount Attributable To Intrastate - Intralata Usage",
291
+ "150203" => "Prepaid Wireline Services, Wireline Prepaid (Wholesale) - Sale Of Phone Card - Amount Attributable To Intrastate - Interlata Usage",
292
+ "150204" => "Prepaid Wireline Services, Wireline Prepaid (Wholesale) - Sale Of Phone Card - Amount Attributable To Interstate Usage",
293
+ "150205" => "Prepaid Wireline Services, Wireline Prepaid (Wholesale) - Sale Of Phone Card - Amount Attributable To International Usage",
294
+ "150301" => "Prepaid Wireline Services, Wireline Prepaid (Retail) - Sale Of Phone Card - Intrastate/Interstate",
295
+ "150302" => "Prepaid Wireline Services, Wireline Prepaid (Retail) - Sale Of Phone Card - Amount Attributable To Intrastate - Intralata Usage",
296
+ "150303" => "Prepaid Wireline Services, Wireline Prepaid (Retail) - Sale Of Phone Card - Amount Attributable To Intrastate - Interlata Usage",
297
+ "150304" => "Prepaid Wireline Services, Wireline Prepaid (Retail) - Sale Of Phone Card - Amount Attributable To Interstate Usage",
298
+ "150305" => "Prepaid Wireline Services, Wireline Prepaid (Retail) - Sale Of Phone Card - Amount Attributable To International Usage",
299
+ "160101" => "Information Services, Information Service - On-Line Information Services - Separately Stated",
300
+ "160102" => "Information Services, Information Service - On-Line Information Services -Bundled with Equipment",
301
+ "160103" => "Information Services, Information Service - Audio-Text Information Services",
302
+ "180101" => "Cable Services, Monthly Basic Service Charges - Recurring",
303
+ "180102" => "Cable Services, Monthly Premium Service Charges - Recurring",
304
+ "180103" => "Cable Services, Pay-Per-View Programming - Non-Recurring",
305
+ "180104" => "Cable Services, Rental Charges - Converter Boxes",
306
+ "180105" => "Cable Services, Rental Charges - Remote Controls",
307
+ "180106" => "Cable Services, Rental Charges - Descrambling Devices",
308
+ "180107" => "Cable Services, Additional Premium Cable Outlets",
309
+ "180108" => "Cable Services, Installation Charges",
310
+ "180109" => "Cable Services, Broadcast Advertising Revenue",
311
+ "210101" => "Computer Services, Web Hosting",
312
+ "210102" => "Computer Services, Web Page Design",
313
+ "210103" => "Computer Services, Web Page Design Done By Third Party - Placed on the Web by the Customer",
314
+ "210201" => "Computer Services, Consulting Services Mandatory or in connection with Sale of TPP",
315
+ "210202" => "Computer Services, Consulting Services not Sold In Connection with the Sale of TPP",
316
+ "210301" => "Computer Services, On-site or Phone Support - Mandatory or in Connection with Sale of TPP",
317
+ "210302" => "Computer Services, On-site or Phone Support - Optional or Separate from Sale of TPP",
318
+ "210303" => "Computer Services, Repair or Maintenance - Hardware and Canned/Tangible",
319
+ "210401" => "Computer Services, Canned Software - Mandatory Software Maintenance Contract-Upgrades via TPP",
320
+ "210402" => "Computer Services, Canned Software - Mandatory Software Maintenance Contract-Upgrades via Load and Leave",
321
+ "210403" => "Computer Services, Canned Software - Mandatory Software Maintenance Contract-Upgrades Provided Electronically",
322
+ "210404" => "Computer Services, Canned Software - Optional Software Maintenance Contract-Upgrades via TPP",
323
+ "210405" => "Computer Services, Canned Software - Optional Software Maintenance Contract-Upgrades via Load and Leave",
324
+ "210406" => "Computer Services, Canned Software - Optional Software Maintenance Contract-Upgrades provided Electronically",
325
+ "210407" => "Computer Services, Custom Software - Mandatory Software Maintenance Contract-Upgrades via TPP",
326
+ "210408" => "Computer Services, Custom Software - Mandatory Software Maintenance Contract-Upgrades via Load and Leave",
327
+ "210409" => "Computer Services, Custom Software - Mandatory Software Maintenance Contract-Upgrades Electronic",
328
+ "210410" => "Computer Services, Custom Software - Optional Software Maintenance Contract-Upgrades via TPP",
329
+ "210411" => "Computer Services, Custom Software - Optional Software Maintenance Contract-Upgrades via Load and Leave",
330
+ "210412" => "Computer Services, Custom Software - Optional Software Maintenance Contract-Upgrades Electronic",
331
+ "210413" => "Computer Services, Hardware - Mandatory Computer Maintenance Contract - with Sale of TPP",
332
+ "210414" => "Computer Services, Hardware - Optional Computer Maintenance Contract - with Sale of TPP",
333
+ "210415" => "Computer Services, Hardware - Optional Computer Maintenance Contract - not with Sale of TPP",
334
+ "210104" => "Computer Services, Software Setup Fees - Separately Stated",
335
+ "210105" => "Computer Services, Canned Software Setup Sold Alone Without TPP",
336
+ "210106" => "Computer Services, Custom Software Setup Sold Along - Without TPP",
337
+ "210107" => "Computer Services, ISP Fees (Usage)",
338
+ "210108" => "Computer Services, Sale of Canned Software - Separately Stated - Sold In Conjunction with TPP",
339
+ "210109" => "Computer Services, Sale of Custom Software - Separately Stated - Sold In Conjunction with TPP",
340
+ "210110" => "Computer Services, Sale of Custom Software",
341
+ "210111" => "Computer Services, Customization of Canned Software",
342
+ "210112" => "Computer Services, Licensing of Canned Software",
343
+ "210113" => "Computer Services, Licensing of Custom Software",
344
+ "210114" => "Computer Services, Sale of Canned Software Via Download",
345
+ "210115" => "Computer Services, Sale of Custom Software Via Download",
346
+ "210116" => "Computer Services, Licensing of Canned Software Via Internet Download",
347
+ "210117" => "Computer Services, Licensing of Custom Software Via Internet Download",
348
+ "210118" => "Computer Services, Computer Hardware",
349
+ "210119" => "Computer Services, Load and Leave Prewritten Software",
350
+ "210121" => "Computer Services, Canned Software License Delivered Electronically - Original Sale TPP",
351
+ "210122" => "Computer Services, Colocation",
352
+ "210501" => "Computer Services, Customize Canned Apps",
353
+ "210502" => "Computer Services, Customize Canned Apps - Above Threshold, In Connection with Sale and Analysis Of Cust. Requirements, Via Tangible Storage Media",
354
+ "210503" => "Computer Services, Customize Canned Apps - Above Threshold, In Connection with Sale and Analysis Of Cust. Requirements, Via Electronic Delivery",
355
+ "210504" => "Computer Services, Customize Canned Apps - Above Threshold, In Connection with Sale and Analysis Of Cust. Requirements, Via Load & Leave",
356
+ "210505" => "Computer Services, Customize Canned Apps - Below Threshold, In Connection with Sale and Analysis Of Cust. Requirements, Via Tangible Storage Media",
357
+ "210506" => "Computer Services, Customize Canned Apps - Below Threshold, In Connection with Sale and Analysis Of Cust. Requirements, Via Electronic Delivery",
358
+ "210507" => "Computer Services, Customize Canned Apps - Below Threshold, In Connection with Sale and Analysis Of Cust. Requirements, Via Load & Leave",
359
+ "210508" => "Computer Services, Customize Canned Apps - Performed By Third Party with Analysis Of Customer Requirements, Via Tangible Storage Media",
360
+ "210509" => "Computer Services, Customize Canned Apps - Performed By Third Party with Analysis Of Customer Requirements, Via Electronic Delivery",
361
+ "210510" => "Computer Services, Customize Canned Apps - Performed By Third Party with Analysis Of Customer Requirements, Via Load & Leave",
362
+ "210601" => "Computer Services, Custom Applications - Via Tangible Storage Media",
363
+ "210602" => "Computer Services, Custom Applications - Via Electronic Delivery",
364
+ "210603" => "Computer Services, Custom Applications - Via Load and Leave",
365
+ "210604" => "Computer Services, Custom Applications - Delivered or Hosted Remotely via SaaS",
366
+ "210701" => "Computer Services, Installation of Canned Software, Mandatory In Connection With Sale Via Tangible Storage Media",
367
+ "210702" => "Computer Services, Installation of Canned Software, Optional In Connection With Sale Via Tangible Storage Media",
368
+ "210703" => "Computer Services, Installation of Canned Software In Connection With Sale Delivered Electronically",
369
+ "210704" => "Computer Services, Installation of Canned Software, Mandatory In Connection With Sale Delivered Via Load And Leave",
370
+ "210705" => "Computer Services, Installation of Canned Software, Optional In Connection With Sale Delivered Via Load And Leave",
371
+ "210706" => "Computer Services, Installation of Canned Software Performed By Third Party Via Tangible Storage Media",
372
+ "210707" => "Computer Services, Installation of Canned Software Performed By Third Party Delivered Electronically",
373
+ "210708" => "Computer Services, Installation of Canned Software Performed By Third Party Delivered Via Load And Leave",
374
+ "210801" => "Computer Services, Installation of Custom Application Software In Connection With Sale",
375
+ "210802" => "Computer Services, Installation of Custom Application Software Performed By Third Party",
376
+ "210803" => "Computer Services, Installation of Custom O/S Software In Connection With Sale",
377
+ "210804" => "Computer Services, Installation of Custom O/S Software Performed By Third Party",
378
+ "250101" => "Satellite Radio Service, Satellite Radio Service - Service Charges",
379
+ "260101" => "Satellite TV, Monthly Basic Service Charges (Recurring)",
380
+ "260102" => "Satellite TV, Monthly Premium Service Charges (Recurring)",
381
+ "260103" => "Satellite TV, Pay-Per-View Programming (Non-Recurring)",
382
+ "260104" => "Satellite TV, Rental Charges - Receivers",
383
+ "260105" => "Satellite TV, Rental Charges - Non-Essential Equipment",
384
+ "260106" => "Satellite TV, Broadcast Advertising Revenue",
385
+ "260107" => "Satellite TV, Additional Outlets Programming Fee",
386
+ "260108" => "Satellite TV, Installation Charges",
387
+ "310101" => "Digital Goods, Data Processing",
388
+ "310102" => "Digital Goods, Online Information Services",
389
+ "310103" => "Digital Goods, ASP - Server in Customer State",
390
+ "310104" => "Digital Goods, ASP - Server Not in Customer State",
391
+ "310105" => "Digital Goods, Personalized Information Service",
392
+ "310106" => "Digital Goods, Emailed Information Service",
393
+ "310107" => "Digital Goods, SaaS - Canned Software not Downloadable or Sold in Other Formats",
394
+ "310201" => "Digital Goods, Digital Audio Works and Books - Access Only",
395
+ "310202" => "Digital Goods, Digital Audio-Visual Works - Access Only",
396
+ "310203" => "Digital Goods, Digital Audio Works and Books - Download",
397
+ "310204" => "Digital Goods, Digital Audio-Visual Works - Download",
398
+ "310205" => "Digital Goods, Digital Books - Access Only",
399
+ "310206" => "Digital Goods, Digital Books - Download",
400
+ "310207" => "Digital Goods, Digitial Audio Works - Less Than Permanent Right of Use",
401
+ "310208" => "Digital Goods, Digitial Audio-Visual Works - Less Than Permanent Right of Use",
402
+ "310809" => "Digital Goods, Digital Books - Less Than Permanent Right of Use",
403
+ "330101" => "Alarm Monitoring, Commercial Alarm Monitoring Service",
404
+ "350101" => "EDI, EDI - Data Transmission - Separately Stated",
405
+ "910101" => "Late Fees, Late Payment Fee - Standard Invoice - Separately Stated Fee",
406
+ "910102" => "Late Fees, Late Payment Fee - Standard Invoice - Fee Combined With The Base Charges",
407
+ "910103" => "Late Fees, Late Payment Fee - Lease Agreement - Separately Stated Fee",
408
+ "910104" => "Late Fees, Late Payment Fee - Lease Agreement - Fee Combined With The Base Charges",
409
+ "910105" => "Late Fees, Late Payment Fee - Utility Service - Separately Stated Fee",
410
+ "910106" => "Late Fees, Late Payment Fee - Utility Service - Fee Combined With The Base Charges",
411
+ "920101" => "Maintenance Contracts, Maintenance Contracts - Optional Contract",
412
+ "920102" => "Maintenance Contracts, Maintenance Contracts - Mandatory Contract Sold with Tangible Personal Property",
413
+ "920103" => "Maintenance Contracts, Maintenance Contracts - Optional Labor Only Contract",
414
+ "920104" => "Maintenance Contracts, Maintenance Contracts - Mandatory Labor-Only Contract Sold with Tangible Personal Property",
415
+ "930201" => "Repair/Maintenance, TPP - Labor Only",
416
+ "930101" => "Repair/Maintenance, Telecom - Labor Charges (Labor Only)",
417
+ "930102" => "Repair/Maintenance, Telecom - Labor with Materials - Materials - Value Incidental - Lump Sum Bill",
418
+ "930103" => "Repair/Maintenance, Telecom - Materials - Labor with Materials - Materials- Value non-Incidental - Lump sum Bill",
419
+ "930104" => "Repair/Maintenance, Telecom - Materials - Labor With Materials - Materials- Value Non-Incidental - Materials Separately Stated",
420
+ "930105" => "Repair/Maintenance, Telecom - Labor - Labor With Materials - Materials- Value Non-Incidental - Labor Separately Stated",
421
+ "930106" => "Repair/Maintenance, Telecom - Materials - Labor With Materials - Materials- Value Incidental - Materials Separately Stated",
422
+ "930107" => "Repair/Maintenance, Telecom - Labor - Labor With Materials - Materials- Value Incidental - Labor Separately Stated",
423
+ "930202" => "Repair/Maintenance, TPP - Lump-sum Bill for Labor and Materials, Value of Materials is Significant",
424
+ "930203" => "Repair/Maintenance, TPP - Lump-sum Bill for Labor and Materials, Value of Materials is Not Significant",
425
+ "930204" => "Repair/Maintenance, TPP - Labor Charge Separately Stated - Inv includes Charge for Materials",
426
+ "930205" => "Repair/Maintenance, TPP - Material Charge Separately Stated - Vales of Materials is Not Significant",
427
+ "940101" => "Installation (non-telecom), Installation Services - Installation Service performed by Vendor-Charge Separately Stated on Invoice",
428
+ "940102" => "Installation (non-telecom), Installation Services - Installation Service performed by Vendor-Charge Contracted Separately from Sale of TPP",
429
+ "940103" => "Installation (non-telecom), Installation Services - Installation Service performed by 3rd Party as a Separate Service",
430
+ "940104" => "Installation (non-telecom), Installation Services - Installation Vendor Sales and Install of New TPP to Real Property",
431
+ "940105" => "Installation (non-telecom), Installation Services - Installation Customer Contracted Install of New TPP to Real Property",
432
+ "940201" => "Installation (non-telecom), Computer Hardware Installation Service - Mandatory with Sale of TPP",
433
+ "940202" => "Installation (non-telecom), Computer Hardware Installation Service - Optional with Sale of TPP",
434
+ "940203" => "Installation (non-telecom), Computer Hardware Installation Service - Mandatory with Lease of TPP",
435
+ "940204" => "Installation (non-telecom), Computer Hardware Installation Service - Optional with Lease of TPP",
436
+ "940205" => "Installation (non-telecom), Computer Hardware Installation Service - Not with Sale of TPP",
437
+ "950101" => "Training, Instruction - Mandatory or in Connection with Sale of TPP",
438
+ "950102" => "Training, Instruction - Optional or Separate From Sale of TPP",
439
+ "950103" => "Training, Instruction Material - Documents Delivered by TPP",
440
+ "950104" => "Training, Instruction Material - Documents Delivered by Electronically",
441
+ "950105" => "Training, Job Related Instruction - Mandatory or In Connection with Sale of TPP",
442
+ "950106" => "Training, Job Related Instruction - Optional or Separate from Sale of TPP",
443
+ "970101" => "Shipping/Delivery, Intrastate - F.O.B. Origin - Charge Sep. Stated - Shipping & Handling - Charge Is Mandatory",
444
+ "970102" => "Shipping/Delivery, Intrastate - F.O.B. Origin - Charge Sep. Stated - Shipping & Handling - Charge Is Optional",
445
+ "970103" => "Shipping/Delivery, Intrastate - F.O.B. Origin - Charge Sep. Stated - Shipping Actual Cost Only- Charge Is Mandatory",
446
+ "970104" => "Shipping/Delivery, Intrastate - F.O.B. Origin - Charge Sep. Stated - Shipping Actual Cost Only- Charge Is Optional",
447
+ "970105" => "Shipping/Delivery, Intrastate - F.O.B. Origin-Charge Sep. Stated-Shipping Actual Cost-Charge Is Opt.& Vendor Acts As Agent Is Proven",
448
+ "970106" => "Shipping/Delivery, Intrastate - F.O.B. Origin - Charge Sep. Stated - Shipping Vendor Markup Added - Charge Is Mandatory",
449
+ "970107" => "Shipping/Delivery, Intrastate - F.O.B. Origin - Charge Sep. Stated - Shipping Vendor Markup Added - Charge Is Optional",
450
+ "970108" => "Shipping/Delivery, Intrastate - F.O.B. Destination - Charge Sep. Stated - Shipping & Handling - Charge Is Mandatory",
451
+ "970109" => "Shipping/Delivery, Intrastate - F.O.B. Destination - Charge Sep. Stated - Shipping Actual Cost Only- Charge Is Mandatory",
452
+ "970110" => "Shipping/Delivery, Intrastate - F.O.B. Destination - Charge Sep. Stated - Shipping Vendor Markup Added - Charge Is Mandatory",
453
+ "970111" => "Shipping/Delivery, Intrastate - F.O.B. Dest./Purchasers Option-Charge Sep. Stated-Shipping & Handling - Charge Is Optional",
454
+ "970112" => "Shipping/Delivery, Intrastate - F.O.B. Dest./Purchasers Option-Charge Sep. Stated-Shipping Actual Cost Only-Charge Is Optional",
455
+ "970113" => "Shipping/Delivery, Intrastate - F.O.B. Dest./Purchasers Option-Charge Sep. Stated-Shipping Vendor Markup Added-Charge Is Optional",
456
+ "970114" => "Shipping/Delivery, Intrastate - F.O.B. Purchasers Option - Charge Sep. Stated - Shipping & Handling - Charge Is Mandatory",
457
+ "970115" => "Shipping/Delivery, Intrastate - F.O.B. Purchasers Option - Charge Sep. Stated - Shipping Actual Cost Only- Charge Is Mandatory",
458
+ "970116" => "Shipping/Delivery, Intrastate - F.O.B. Purchasers Option - Charge Sep. Stated - Shipping Vendor Markup Added - Charge Is Mandatory",
459
+ "970201" => "Shipping/Delivery, Interstate - F.O.B. Origin - Charge Sep. Stated - Shipping & Handling - Charge Is Mandatory",
460
+ "970202" => "Shipping/Delivery, Interstate - F.O.B. Origin - Charge Sep. Stated - Shipping & Handling - Charge Is Optional",
461
+ "970203" => "Shipping/Delivery, Interstate - F.O.B. Origin - Charge Sep. Stated - Shipping Actual Cost Only- Charge Is Mandatory",
462
+ "970204" => "Shipping/Delivery, Interstate - F.O.B. Origin - Charge Sep. Stated - Shipping Actual Cost Only- Charge Is Optional",
463
+ "970205" => "Shipping/Delivery, Interstate - F.O.B. Origin-Charge Sep. Stated-Shipping Actual Cost-Charge Is Opt.& Vendor Acts As Agent Is Proven",
464
+ "970206" => "Shipping/Delivery, Interstate - F.O.B. Origin - Charge Sep. Stated - Shipping Vendor Markup Added - Charge Is Mandatory",
465
+ "970207" => "Shipping/Delivery, Interstate - F.O.B. Origin - Charge Sep. Stated - Shipping Vendor Markup Added - Charge Is Optional",
466
+ "970208" => "Shipping/Delivery, Interstate - F.O.B. Destination - Charge Sep. Stated - Shipping & Handling - Charge Is Mandatory",
467
+ "970209" => "Shipping/Delivery, Interstate - F.O.B. Destination - Charge Sep. Stated - Shipping Actual Cost Only- Charge Is Mandatory",
468
+ "970210" => "Shipping/Delivery, Interstate - F.O.B. Destination - Charge Sep. Stated - Shipping Vendor Markup Added - Charge Is Mandatory",
469
+ "970211" => "Shipping/Delivery, Interstate - F.O.B. Dest./Purchasers Option-Charge Sep. Stated-Shipping & Handling - Charge Is Optional",
470
+ "970212" => "Shipping/Delivery, Interstate - F.O.B. Dest./Purchasers Option-Charge Sep. Stated-Shipping Actual Cost Only-Charge Is Optional",
471
+ "970213" => "Shipping/Delivery, Interstate - F.O.B. Dest./Purchasers Option-Charge Sep. Stated-Shipping Vendor Markup Added-Charge Is Optional",
472
+ "970214" => "Shipping/Delivery, Interstate - F.O.B. Purchasers Option - Charge Sep. Stated - Shipping & Handling - Charge Is Mandatory",
473
+ "970215" => "Shipping/Delivery, Interstate - F.O.B. Purchasers Option - Charge Sep. Stated - Shipping Actual Cost Only- Charge Is Mandatory",
474
+ "970216" => "Shipping/Delivery, Interstate - F.O.B. Purchasers Option - Charge Sep. Stated - Shipping Vendor Markup Added - Charge Is Mandatory",
475
+ "980401" => "Leasing, Lease Contract - Less than 30 Days - Inception",
476
+ "980402" => "Leasing, Lease Contract - Less than 30 Days - Stream",
477
+ "980403" => "Leasing, Lease Contract - 30 Days - Inception",
478
+ "980404" => "Leasing, Lease Contract - 30 Days - Stream",
479
+ "980405" => "Leasing, Lease Contract - 31 to 60 Days - Inception",
480
+ "980406" => "Leasing, Lease Contract - 31 to 60 Days - Stream",
481
+ "980407" => "Leasing, Lease Contract - 61 to 92 Days - Inception",
482
+ "980408" => "Leasing, Lease Contract - 61 to 92 Days - Stream",
483
+ "980409" => "Leasing, Lease Contract - 93 Days to 6 Months - Inception",
484
+ "980410" => "Leasing, Lease Contract - 93 Days to 6 Months - Stream",
485
+ "980411" => "Leasing, Lease Contract - Greater Than 6 Months - Inception",
486
+ "980412" => "Leasing, Lease Contract - Greater Than 6 Months - Stream",
487
+ "980413" => "Leasing, Lease Contract - Short Term Lease Less than 30 Days",
488
+ "980501" => "Leasing, Deferred Payment Contract - Less than 30 Days - Inception",
489
+ "980502" => "Leasing, Deferred Payment Contract - Less than 30 Days - Stream",
490
+ "980503" => "Leasing, Deferred Payment Contract - 30 Days - Inception",
491
+ "980504" => "Leasing, Deferred Payment Contract - 30 Days - Stream",
492
+ "980505" => "Leasing, Deferred Payment Contract - 31 to 60 Days - Inception",
493
+ "980506" => "Leasing, Deferred Payment Contract - 31 to 60 Days - Stream",
494
+ "980507" => "Leasing, Deferred Payment Contract - 61 to 92 Days - Inception",
495
+ "980508" => "Leasing, Deferred Payment Contract - 61 to 92 Days - Stream",
496
+ "980509" => "Leasing, Deferred Payment Contract - 93 Days to 6 Months - Inception",
497
+ "980510" => "Leasing, Deferred Payment Contract - 93 Days to 6 Months - Stream",
498
+ "980511" => "Leasing, Deferred Payment Contract - Greater Than 6 Months - Inception",
499
+ "980512" => "Leasing, Deferred Payment Contract - Greater Than 6 Months - Stream",
500
+ "990101" => "General Sales, General Sales",
501
+ "999999" => "General Sales, Tax Exempt Products and Services",
502
+ "020201" => "Local Services, Standard Line - Recurring Charge (No Unit Based Taxes)",
503
+ "010151" => "Long Distance, Long Distance Toll - INTRASTATE",
504
+ }
505
+ end