rbedi 0.0.0 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/bin/edi +897 -0
  3. data/lib/rbedi/codes/aaa.rb +437 -0
  4. data/lib/rbedi/codes/ak1.rb +278 -0
  5. data/lib/rbedi/codes/ak2.rb +336 -0
  6. data/lib/rbedi/codes/ak9.rb +55 -0
  7. data/lib/rbedi/codes/bht.rb +706 -0
  8. data/lib/rbedi/codes/codeset.rb +27 -0
  9. data/lib/rbedi/codes/dmg.rb +1583 -0
  10. data/lib/rbedi/codes/dtp.rb +1342 -0
  11. data/lib/rbedi/codes/eb.rb +1511 -0
  12. data/lib/rbedi/codes/eq.rb +286 -0
  13. data/lib/rbedi/codes/ge.rb +14 -0
  14. data/lib/rbedi/codes/gs.rb +287 -0
  15. data/lib/rbedi/codes/hl.rb +273 -0
  16. data/lib/rbedi/codes/iea.rb +14 -0
  17. data/lib/rbedi/codes/ik3.rb +32 -0
  18. data/lib/rbedi/codes/ik4.rb +37 -0
  19. data/lib/rbedi/codes/ik5.rb +56 -0
  20. data/lib/rbedi/codes/isa.rb +137 -0
  21. data/lib/rbedi/codes/le.rb +13 -0
  22. data/lib/rbedi/codes/ls.rb +13 -0
  23. data/lib/rbedi/codes/msg.rb +25 -0
  24. data/lib/rbedi/codes/n3.rb +14 -0
  25. data/lib/rbedi/codes/n4.rb +706 -0
  26. data/lib/rbedi/codes/nm1.rb +1916 -0
  27. data/lib/rbedi/codes/per.rb +308 -0
  28. data/lib/rbedi/codes/ref.rb +1749 -0
  29. data/lib/rbedi/codes/se.rb +14 -0
  30. data/lib/rbedi/codes/segment_names.rb +44 -0
  31. data/lib/rbedi/codes/st.rb +336 -0
  32. data/lib/rbedi/codes/trn.rb +22 -0
  33. data/lib/rbedi/codes.rb +8 -0
  34. data/lib/rbedi/edi_date_time.rb +69 -0
  35. data/lib/rbedi/functional_group.rb +52 -0
  36. data/lib/rbedi/non_existent_element_error.rb +4 -0
  37. data/lib/rbedi/parser.rb +102 -0
  38. data/lib/rbedi/segment.rb +114 -0
  39. data/lib/rbedi/transaction_envelope.rb +77 -0
  40. data/lib/rbedi/transaction_set.rb +40 -0
  41. data/lib/rbedi.rb +20 -4
  42. metadata +79 -10
@@ -0,0 +1,1583 @@
1
+ module RBEDI
2
+ module Codes
3
+ module DMG
4
+ extend CodeSet
5
+
6
+ SEGMENT_POSITIONS = {
7
+ 1 => :date_time_period_format_qualifier,
8
+ 2 => :date_time_period,
9
+ 3 => :gender_code,
10
+ 4 => :marital_status_code,
11
+ 5 => :race_or_ethnicity_info,
12
+ 6 => :citizenship_status_code,
13
+ 7 => :country_code,
14
+ 8 => :basis_of_verification_code,
15
+ 9 => :age,
16
+ 10 => :industry_code_qualifier_code,
17
+ 11 => :industry_code
18
+ }
19
+
20
+ CODES = {
21
+ 1 => {
22
+ "cc" => :first_two_digits_of_year_expressed_in_format_ccyythe_first_two_characters_in_the_year_ccyy,
23
+ "cd" => :month_and_year_expressed_in_format_mmmyyyydate_expressed_as_month_month_month_all_upper_case_alpha_and_year_year_year_year_eg_jan_1994_feb_1994_etc,
24
+ "cm" => :date_in_format_ccyymm,
25
+ "cq" => :date_in_format_ccyyqdate_expressed_as_year_year_year_year_eg_1996_and_q_as_quarter_within_that_year,
26
+ "cy" => :year_expressed_in_format_ccyy,
27
+ "d6" => :date_expressed_in_format_yymmdd,
28
+ "d8" => :date_expressed_in_format_ccyymmdd,
29
+ "da" => :range_of_dates_within_a_single_month_expressed_in_format_dddd,
30
+ "db" => :date_expressed_in_format_mmddccyy,
31
+ "dd" => :day_of_month_in_numeric_formatthe_numeric_day_of_the_month_expressed_using_a_lead_zero_if_the_number_of_the_day_is_less_than_ten,
32
+ "ddt" => :range_of_dates_and_time_expressed_in_ccyymmddccyymmddhhmm,
33
+ "dt" => :date_and_time_expressed_in_format_ccyymmddhhmm,
34
+ "dtd" => :range_of_dates_and_time_expressed_in_ccyymmddhhmmccyymmdd,
35
+ "dts" => :range_of_date_and_time_expressed_in_format_ccyymmddhhmmssccyymmddhhmmss,
36
+ "eh" => :last_digit_of_year_and_julian_date_expressed_in_format_yddd,
37
+ "ka" => :date_expressed_in_format_yymmmdddate_expressed_as_year_year_month_month_month_day_day_eg_94jan01,
38
+ "mcy" => :mmccyy,
39
+ "md" => :month_of_year_and_day_of_month_expressed_in_format_mmdd,
40
+ "mm" => :month_of_year_in_numeric_formatthe_month_of_the_year_consecutively_numbered_from_one_for_january_to_twelve_for_december_and_expressed_using_a_lead_zero_if_the_number_of_the_month_is_less_than_ten,
41
+ "rd" => :range_of_dates_expressed_in_format_mmddccyymmddccyy,
42
+ "rd2" => :range_of_years_expressed_in_format_yyyy,
43
+ "rd4" => :range_of_years_expressed_in_format_ccyyccyy,
44
+ "rd5" => :range_of_years_and_months_expressed_in_format_ccyymmccyymm,
45
+ "rd6" => :range_of_dates_expressed_in_format_yymmddyymmdd,
46
+ "rd8" => :range_of_dates_expressed_in_format_ccyymmddccyymmdda_range_of_dates_expressed_in_the_format_ccyymmddccyymmdd_where_cc_is_the_first_two_digits_of_the_calendar_year_yy_is_the_last_two_digits_of_the_calendar_year_mm_is_the_month_01_to_12_and_dd_is_the_day_in_the_month_01_to_31_the_first_occurrence_of_ccyymmdd_is_the_beginning_date_and_the_second_occurrence_is_the_ending_date,
47
+ "rdm" => :range_of_dates_expressed_in_format_yymmddmmdd,
48
+ "rdt" => :range_of_date_and_time_expressed_in_format_ccyymmddhhmmccyymmddhhmma_range_of_dates_and_times_expressed_in_the_format_ccyymmddhhmmccyymmddhhmm_where_ccyy_is_the_numerical_expression_of_the_century_cc_and_year_yy_mm_is_the_numerical_expression_of_the_month_within_the_year_dd_is_the_numerical_expression_of_the_day_within_the_month_hh_is_the_numerical_expression_of_hours_in_the_day_based_on_a_twentyfour_hour_clock_and_mm_is_the_numerical_expression_of_minutes_within_an_hour_the_first_occurrence_of_ccyymmddhhmm_is_the_starting_time_and_the_second_is_the_ending_time,
49
+ "rmd" => :range_of_months_and_days_expressed_in_format_mmddmmdd,
50
+ "rmy" => :range_of_years_and_months_expressed_in_format_yymmyymm,
51
+ "rtm" => :range_of_time_expressed_in_format_hhmmhhmma_range_of_times_expressed_in_the_form_hhmmhhmm_where_hh_is_the_numerical_expression_of_hours_in_the_day_based_on_a_twentyfour_hour_clock_and_mm_is_the_numerical_expression_of_minutes_within_an_hour_the_first_occurrence_of_hhmm_is_the_starting_time_and_the_second_is_the_ending_time,
52
+ "rts" => :date_and_time_expressed_in_format_ccyymmddhhmmss,
53
+ "tc" => :julian_date_expressed_in_format_ddd,
54
+ "tm" => :time_expressed_in_format_hhmmtime_expressed_in_the_format_hhmm_where_hh_is_the_numerical_expression_of_hours_in_the_day_based_on_a_twentyfour_hour_clock_and_mm_is_the_numerical_expression_of_minutes_within_an_hour,
55
+ "tq" => :date_expressed_in_format_mmyy,
56
+ "tr" => :date_and_time_expressed_in_format_ddmmyyhhmm,
57
+ "ts" => :time_expressed_in_format_hhmmsstime_expressed_in_the_format_hhmmss_where_hh_is_the_numerical_expression_of_hours_in_the_day_based_on_a_twentyfour_hour_clock_mm_is_the_numerical_expression_of_minutes_within_an_hour_and_ss_is_the_numerical_expression_of_seconds_within_a_minute,
58
+ "tt" => :date_expressed_in_format_mmddyy,
59
+ "tu" => :date_expressed_in_format_yyddd,
60
+ "un" => :unstructured,
61
+ "ym" => :year_and_month_expressed_in_format_yymm,
62
+ "ymm" => :range_of_year_and_months_expressed_in_ccyymmmmmm_format,
63
+ "yy" => :last_two_digits_of_year_expressed_in_format_ccyythe_year_in_the_century_00_to_99,
64
+ },
65
+ 3 => {
66
+ "a" => :not_provided,
67
+ "b" => :not_applicable,
68
+ "f" => :female,
69
+ "m" => :male,
70
+ "n" => :nonsexed,
71
+ "u" => :unknown,
72
+ "x" => :unsexable,
73
+ },
74
+ 4 => {
75
+ "a" => :common_law,
76
+ "b" => :registered_domestic_partner,
77
+ "c" => :not_applicable,
78
+ "d" => :divorced,
79
+ "i" => :single,
80
+ "k" => :unknown,
81
+ "m" => :married,
82
+ "r" => :unreported,
83
+ "s" => :separated,
84
+ "u" => :unmarried_single_or_divorced_or_widowed,
85
+ "w" => :widowed,
86
+ "x" => :legally_separated,
87
+ },
88
+ 6 => {
89
+ "1" => :us_citizen,
90
+ "2" => :nonresident_alien,
91
+ "3" => :resident_alien,
92
+ "4" => :illegal_alien,
93
+ "5" => :alien,
94
+ "6" => :us_citizen__nonresident,
95
+ "7" => :us_citizen__resident,
96
+ "8" => :citizen,
97
+ "9" => :noncitizen_with_student_authorization,
98
+ "a" => :nonpermanent_resident_alien,
99
+ "b" => :permanent_visa,
100
+ "c" => :temporary_visa,
101
+ "d" => :work_permit,
102
+ "e" => :nordic_citizen,
103
+ "f" => :nonnordic_citizen,
104
+ "g" => :naturalized_citizen,
105
+ "h" => :eligible_noncitizen,
106
+ "i" => :ineligible_noncitizen,
107
+ },
108
+ 7 => {
109
+ "abw" => :aruba,
110
+ "ad" => :andorra,
111
+ "ae" => :united_arab_emirates_the,
112
+ "af" => :afghanistan,
113
+ "afg" => :afghanistan,
114
+ "ag" => :antigua_and_barbuda,
115
+ "ago" => :angola,
116
+ "ai" => :anguilla,
117
+ "aia" => :anguilla,
118
+ "al" => :albania,
119
+ "ala" => :land_islands,
120
+ "alb" => :albania,
121
+ "am" => :armenia,
122
+ "and" => :andorra,
123
+ "ao" => :angola,
124
+ "aq" => :antarctica,
125
+ "ar" => :argentina,
126
+ "are" => :united_arab_emirates_the,
127
+ "arg" => :argentina,
128
+ "arm" => :armenia,
129
+ "as" => :american_samoa,
130
+ "asm" => :american_samoa,
131
+ "at" => :austria,
132
+ "ata" => :antarctica,
133
+ "atf" => :french_southern_territories_the,
134
+ "atg" => :antigua_and_barbuda,
135
+ "au" => :australia,
136
+ "aus" => :australia,
137
+ "aut" => :austria,
138
+ "aw" => :aruba,
139
+ "ax" => :land_islands,
140
+ "az" => :azerbaijan,
141
+ "aze" => :azerbaijan,
142
+ "ba" => :bosnia_and_herzegovina,
143
+ "bb" => :barbados,
144
+ "bd" => :bangladesh,
145
+ "bdi" => :burundi,
146
+ "be" => :belgium,
147
+ "bel" => :belgium,
148
+ "ben" => :benin,
149
+ "bes" => :bonaire_sint_eustatius_and_saba,
150
+ "bf" => :burkina_faso,
151
+ "bfa" => :burkina_faso,
152
+ "bg" => :bulgaria,
153
+ "bgd" => :bangladesh,
154
+ "bgr" => :bulgaria,
155
+ "bh" => :bahrain,
156
+ "bhr" => :bahrain,
157
+ "bhs" => :bahamas_the,
158
+ "bi" => :burundi,
159
+ "bih" => :bosnia_and_herzegovina,
160
+ "bj" => :benin,
161
+ "bl" => :saint_barthlemy,
162
+ "blm" => :saint_barthlemy,
163
+ "blr" => :belarus,
164
+ "blz" => :belize,
165
+ "bm" => :bermuda,
166
+ "bmu" => :bermuda,
167
+ "bn" => :brunei_darussalam,
168
+ "bo" => :bolivia_plurinational_state_of,
169
+ "bol" => :bolivia_plurinational_state_of,
170
+ "bq" => :bonaire_sint_eustatius_and_saba,
171
+ "br" => :brazil,
172
+ "bra" => :brazil,
173
+ "brb" => :barbados,
174
+ "brn" => :brunei_darussalam,
175
+ "bs" => :bahamas_the,
176
+ "bt" => :bhutan,
177
+ "btn" => :bhutan,
178
+ "bv" => :bouvet_island,
179
+ "bvt" => :bouvet_island,
180
+ "bw" => :botswana,
181
+ "bwa" => :botswana,
182
+ "by" => :belarus,
183
+ "bz" => :belize,
184
+ "ca" => :canada,
185
+ "caf" => :central_african_republic_the,
186
+ "can" => :canada,
187
+ "cc" => :cocos_keeling_islands_the,
188
+ "cck" => :cocos_keeling_islands_the,
189
+ "cd" => :congo_the_democratic_republic_of_the,
190
+ "cf" => :central_african_republic_the,
191
+ "cg" => :congo_the,
192
+ "ch" => :switzerland,
193
+ "che" => :switzerland,
194
+ "chl" => :chile,
195
+ "chn" => :china,
196
+ "ci" => :cte_divoire,
197
+ "civ" => :cte_divoire,
198
+ "ck" => :cook_islands_the,
199
+ "cl" => :chile,
200
+ "cm" => :cameroon,
201
+ "cmr" => :cameroon,
202
+ "cn" => :china,
203
+ "co" => :colombia,
204
+ "cod" => :congo_the_democratic_republic_of_the,
205
+ "cog" => :congo_the,
206
+ "cok" => :cook_islands_the,
207
+ "col" => :colombia,
208
+ "com" => :comoros_the,
209
+ "cpv" => :cabo_verde,
210
+ "cr" => :costa_rica,
211
+ "cri" => :costa_rica,
212
+ "cu" => :cuba,
213
+ "cub" => :cuba,
214
+ "cuw" => :curaao,
215
+ "cv" => :cabo_verde,
216
+ "cw" => :curaao,
217
+ "cx" => :christmas_island,
218
+ "cxr" => :christmas_island,
219
+ "cy" => :cyprus,
220
+ "cym" => :cayman_islands_the,
221
+ "cyp" => :cyprus,
222
+ "cz" => :czechia,
223
+ "cze" => :czechia,
224
+ "de" => :germany,
225
+ "deu" => :germany,
226
+ "dj" => :djibouti,
227
+ "dji" => :djibouti,
228
+ "dk" => :denmark,
229
+ "dm" => :dominica,
230
+ "dma" => :dominica,
231
+ "dnk" => :denmark,
232
+ "do" => :dominican_republic_the,
233
+ "dom" => :dominican_republic_the,
234
+ "dz" => :algeria,
235
+ "dza" => :algeria,
236
+ "ec" => :ecuador,
237
+ "ecu" => :ecuador,
238
+ "ee" => :estonia,
239
+ "eg" => :egypt,
240
+ "egy" => :egypt,
241
+ "eh" => :western_sahara,
242
+ "er" => :eritrea,
243
+ "eri" => :eritrea,
244
+ "es" => :spain,
245
+ "esh" => :western_sahara,
246
+ "esp" => :spain,
247
+ "est" => :estonia,
248
+ "et" => :ethiopia,
249
+ "eth" => :ethiopia,
250
+ "fi" => :finland,
251
+ "fin" => :finland,
252
+ "fj" => :fiji,
253
+ "fji" => :fiji,
254
+ "fk" => :falkland_islands_the_malvinas,
255
+ "flk" => :falkland_islands_the_malvinas,
256
+ "fm" => :micronesia_federated_states_of,
257
+ "fo" => :faroe_islands_the,
258
+ "fr" => :france,
259
+ "fra" => :france,
260
+ "fro" => :faroe_islands_the,
261
+ "fsm" => :micronesia_federated_states_of,
262
+ "ga" => :gabon,
263
+ "gab" => :gabon,
264
+ "gb" => :united_kingdom_of_great_britain_and_northern_ireland_the,
265
+ "gbr" => :united_kingdom_of_great_britain_and_northern_ireland_the,
266
+ "gd" => :grenada,
267
+ "ge" => :georgia,
268
+ "geo" => :georgia,
269
+ "gf" => :french_guiana,
270
+ "gg" => :guernsey,
271
+ "ggy" => :guernsey,
272
+ "gh" => :ghana,
273
+ "gha" => :ghana,
274
+ "gi" => :gibraltar,
275
+ "gib" => :gibraltar,
276
+ "gin" => :guinea,
277
+ "gl" => :greenland,
278
+ "glp" => :guadeloupe,
279
+ "gm" => :gambia_the,
280
+ "gmb" => :gambia_the,
281
+ "gn" => :guinea,
282
+ "gnb" => :guineabissau,
283
+ "gnq" => :equatorial_guinea,
284
+ "gp" => :guadeloupe,
285
+ "gq" => :equatorial_guinea,
286
+ "gr" => :greece,
287
+ "grc" => :greece,
288
+ "grd" => :grenada,
289
+ "grl" => :greenland,
290
+ "gs" => :south_georgia_and_the_south_sandwich_islands,
291
+ "gt" => :guatemala,
292
+ "gtm" => :guatemala,
293
+ "gu" => :guam,
294
+ "guf" => :french_guiana,
295
+ "gum" => :guam,
296
+ "guy" => :guyana,
297
+ "gw" => :guineabissau,
298
+ "gy" => :guyana,
299
+ "hk" => :hong_kong,
300
+ "hkg" => :hong_kong,
301
+ "hm" => :heard_island_and_mcdonald_islands,
302
+ "hmd" => :heard_island_and_mcdonald_islands,
303
+ "hn" => :honduras,
304
+ "hnd" => :honduras,
305
+ "hr" => :croatia,
306
+ "hrv" => :croatia,
307
+ "ht" => :haiti,
308
+ "hti" => :haiti,
309
+ "hu" => :hungary,
310
+ "hun" => :hungary,
311
+ "id" => :indonesia,
312
+ "idn" => :indonesia,
313
+ "ie" => :ireland,
314
+ "il" => :israel,
315
+ "im" => :isle_of_man,
316
+ "imn" => :isle_of_man,
317
+ "in" => :india,
318
+ "ind" => :india,
319
+ "io" => :british_indian_ocean_territory_the,
320
+ "iot" => :british_indian_ocean_territory_the,
321
+ "iq" => :iraq,
322
+ "ir" => :iran_islamic_republic_of,
323
+ "irl" => :ireland,
324
+ "irn" => :iran_islamic_republic_of,
325
+ "irq" => :iraq,
326
+ "is" => :iceland,
327
+ "isl" => :iceland,
328
+ "isr" => :israel,
329
+ "it" => :italy,
330
+ "ita" => :italy,
331
+ "jam" => :jamaica,
332
+ "je" => :jersey,
333
+ "jey" => :jersey,
334
+ "jm" => :jamaica,
335
+ "jo" => :jordan,
336
+ "jor" => :jordan,
337
+ "jp" => :japan,
338
+ "jpn" => :japan,
339
+ "kaz" => :kazakhstan,
340
+ "ke" => :kenya,
341
+ "ken" => :kenya,
342
+ "kg" => :kyrgyzstan,
343
+ "kgz" => :kyrgyzstan,
344
+ "kh" => :cambodia,
345
+ "khm" => :cambodia,
346
+ "ki" => :kiribati,
347
+ "kir" => :kiribati,
348
+ "km" => :comoros_the,
349
+ "kn" => :saint_kitts_and_nevis,
350
+ "kna" => :saint_kitts_and_nevis,
351
+ "kor" => :korea_the_republic_of,
352
+ "kp" => :korea_the_democratic_peoples_republic_of,
353
+ "kr" => :korea_the_republic_of,
354
+ "kw" => :kuwait,
355
+ "kwt" => :kuwait,
356
+ "ky" => :cayman_islands_the,
357
+ "kz" => :kazakhstan,
358
+ "la" => :lao_peoples_democratic_republic_the,
359
+ "lao" => :lao_peoples_democratic_republic_the,
360
+ "lb" => :lebanon,
361
+ "lbn" => :lebanon,
362
+ "lbr" => :liberia,
363
+ "lby" => :libya,
364
+ "lc" => :saint_lucia,
365
+ "lca" => :saint_lucia,
366
+ "li" => :liechtenstein,
367
+ "lie" => :liechtenstein,
368
+ "lk" => :sri_lanka,
369
+ "lka" => :sri_lanka,
370
+ "lr" => :liberia,
371
+ "ls" => :lesotho,
372
+ "lso" => :lesotho,
373
+ "lt" => :lithuania,
374
+ "ltu" => :lithuania,
375
+ "lu" => :luxembourg,
376
+ "lux" => :luxembourg,
377
+ "lv" => :latvia,
378
+ "lva" => :latvia,
379
+ "ly" => :libya,
380
+ "ma" => :morocco,
381
+ "mac" => :macao,
382
+ "maf" => :saint_martin_french_part,
383
+ "mar" => :morocco,
384
+ "mc" => :monaco,
385
+ "mco" => :monaco,
386
+ "md" => :moldova_the_republic_of,
387
+ "mda" => :moldova_the_republic_of,
388
+ "mdg" => :madagascar,
389
+ "mdv" => :maldives,
390
+ "me" => :montenegro,
391
+ "mex" => :mexico,
392
+ "mf" => :saint_martin_french_part,
393
+ "mg" => :madagascar,
394
+ "mh" => :marshall_islands_the,
395
+ "mhl" => :marshall_islands_the,
396
+ "mk" => :north_macedonia,
397
+ "mkd" => :north_macedonia,
398
+ "ml" => :mali,
399
+ "mli" => :mali,
400
+ "mlt" => :malta,
401
+ "mm" => :myanmar,
402
+ "mmr" => :myanmar,
403
+ "mn" => :mongolia,
404
+ "mne" => :montenegro,
405
+ "mng" => :mongolia,
406
+ "mnp" => :northern_mariana_islands_the,
407
+ "mo" => :macao,
408
+ "moz" => :mozambique,
409
+ "mp" => :northern_mariana_islands_the,
410
+ "mq" => :martinique,
411
+ "mr" => :mauritania,
412
+ "mrt" => :mauritania,
413
+ "ms" => :montserrat,
414
+ "msr" => :montserrat,
415
+ "mt" => :malta,
416
+ "mtq" => :martinique,
417
+ "mu" => :mauritius,
418
+ "mus" => :mauritius,
419
+ "mv" => :maldives,
420
+ "mw" => :malawi,
421
+ "mwi" => :malawi,
422
+ "mx" => :mexico,
423
+ "my" => :malaysia,
424
+ "mys" => :malaysia,
425
+ "myt" => :mayotte,
426
+ "mz" => :mozambique,
427
+ "na" => :namibia,
428
+ "nam" => :namibia,
429
+ "nc" => :new_caledonia,
430
+ "ncl" => :new_caledonia,
431
+ "ne" => :niger_the,
432
+ "ner" => :niger_the,
433
+ "nf" => :norfolk_island,
434
+ "nfk" => :norfolk_island,
435
+ "ng" => :nigeria,
436
+ "nga" => :nigeria,
437
+ "ni" => :nicaragua,
438
+ "nic" => :nicaragua,
439
+ "niu" => :niue,
440
+ "nl" => :netherlands_the,
441
+ "nld" => :netherlands_the,
442
+ "no" => :norway,
443
+ "nor" => :norway,
444
+ "np" => :nepal,
445
+ "npl" => :nepal,
446
+ "nr" => :nauru,
447
+ "nru" => :nauru,
448
+ "nu" => :niue,
449
+ "nz" => :new_zealand,
450
+ "nzl" => :new_zealand,
451
+ "om" => :oman,
452
+ "omn" => :oman,
453
+ "pa" => :panama,
454
+ "pak" => :pakistan,
455
+ "pan" => :panama,
456
+ "pcn" => :pitcairn,
457
+ "pe" => :peru,
458
+ "per" => :peru,
459
+ "pf" => :french_polynesia,
460
+ "pg" => :papua_new_guinea,
461
+ "ph" => :philippines_the,
462
+ "phl" => :philippines_the,
463
+ "pk" => :pakistan,
464
+ "pl" => :poland,
465
+ "plw" => :palau,
466
+ "pm" => :saint_pierre_and_miquelon,
467
+ "pn" => :pitcairn,
468
+ "png" => :papua_new_guinea,
469
+ "pol" => :poland,
470
+ "pr" => :puerto_rico,
471
+ "pri" => :puerto_rico,
472
+ "prk" => :korea_the_democratic_peoples_republic_of,
473
+ "prt" => :portugal,
474
+ "pry" => :paraguay,
475
+ "ps" => :palestine_state_of,
476
+ "pse" => :palestine_state_of,
477
+ "pt" => :portugal,
478
+ "pw" => :palau,
479
+ "py" => :paraguay,
480
+ "pyf" => :french_polynesia,
481
+ "qa" => :qatar,
482
+ "qat" => :qatar,
483
+ "re" => :runion,
484
+ "reu" => :runion,
485
+ "ro" => :romania,
486
+ "rou" => :romania,
487
+ "rs" => :serbia,
488
+ "ru" => :russian_federation_the,
489
+ "rus" => :russian_federation_the,
490
+ "rw" => :rwanda,
491
+ "rwa" => :rwanda,
492
+ "sa" => :saudi_arabia,
493
+ "sau" => :saudi_arabia,
494
+ "sb" => :solomon_islands,
495
+ "sc" => :seychelles,
496
+ "sd" => :sudan_the,
497
+ "sdn" => :sudan_the,
498
+ "se" => :sweden,
499
+ "sen" => :senegal,
500
+ "sg" => :singapore,
501
+ "sgp" => :singapore,
502
+ "sgs" => :south_georgia_and_the_south_sandwich_islands,
503
+ "sh" => :saint_helena_ascension_and_tristan_da_cunha,
504
+ "shn" => :saint_helena_ascension_and_tristan_da_cunha,
505
+ "si" => :slovenia,
506
+ "sj" => :svalbard_and_jan_mayen,
507
+ "sjm" => :svalbard_and_jan_mayen,
508
+ "sk" => :slovakia,
509
+ "sl" => :sierra_leone,
510
+ "slb" => :solomon_islands,
511
+ "sle" => :sierra_leone,
512
+ "slv" => :el_salvador,
513
+ "sm" => :san_marino,
514
+ "smr" => :san_marino,
515
+ "sn" => :senegal,
516
+ "so" => :somalia,
517
+ "som" => :somalia,
518
+ "spm" => :saint_pierre_and_miquelon,
519
+ "sr" => :suriname,
520
+ "srb" => :serbia,
521
+ "ss" => :south_sudan,
522
+ "ssd" => :south_sudan,
523
+ "st" => :sao_tome_and_principe,
524
+ "stp" => :sao_tome_and_principe,
525
+ "sur" => :suriname,
526
+ "sv" => :el_salvador,
527
+ "svk" => :slovakia,
528
+ "svn" => :slovenia,
529
+ "swe" => :sweden,
530
+ "swz" => :eswatini,
531
+ "sx" => :sint_maarten_dutch_part,
532
+ "sxm" => :sint_maarten_dutch_part,
533
+ "sy" => :syrian_arab_republic_the,
534
+ "syc" => :seychelles,
535
+ "syr" => :syrian_arab_republic_the,
536
+ "sz" => :eswatini,
537
+ "tc" => :turks_and_caicos_islands_the,
538
+ "tca" => :turks_and_caicos_islands_the,
539
+ "tcd" => :chad,
540
+ "td" => :chad,
541
+ "tf" => :french_southern_territories_the,
542
+ "tg" => :togo,
543
+ "tgo" => :togo,
544
+ "th" => :thailand,
545
+ "tha" => :thailand,
546
+ "tj" => :tajikistan,
547
+ "tjk" => :tajikistan,
548
+ "tk" => :tokelau,
549
+ "tkl" => :tokelau,
550
+ "tkm" => :turkmenistan,
551
+ "tl" => :timorleste,
552
+ "tls" => :timorleste,
553
+ "tm" => :turkmenistan,
554
+ "tn" => :tunisia,
555
+ "to" => :tonga,
556
+ "ton" => :tonga,
557
+ "tr" => :trkiye,
558
+ "tt" => :trinidad_and_tobago,
559
+ "tto" => :trinidad_and_tobago,
560
+ "tun" => :tunisia,
561
+ "tur" => :trkiye,
562
+ "tuv" => :tuvalu,
563
+ "tv" => :tuvalu,
564
+ "tw" => :taiwan_republic_of_china,
565
+ "twn" => :taiwan_republic_of_china,
566
+ "tz" => :tanzania_the_united_republic_of,
567
+ "tza" => :tanzania_the_united_republic_of,
568
+ "ua" => :ukraine,
569
+ "ug" => :uganda,
570
+ "uga" => :uganda,
571
+ "ukr" => :ukraine,
572
+ "um" => :united_states_minor_outlying_islands_the,
573
+ "umi" => :united_states_minor_outlying_islands_the,
574
+ "ury" => :uruguay,
575
+ "us" => :united_states_of_america_the,
576
+ "usa" => :united_states_of_america_the,
577
+ "uy" => :uruguay,
578
+ "uz" => :uzbekistan,
579
+ "uzb" => :uzbekistan,
580
+ "va" => :holy_see_the,
581
+ "vat" => :holy_see_the,
582
+ "vc" => :saint_vincent_and_the_grenadines,
583
+ "vct" => :saint_vincent_and_the_grenadines,
584
+ "ve" => :venezuela_bolivarian_republic_of,
585
+ "ven" => :venezuela_bolivarian_republic_of,
586
+ "vg" => :virgin_islands_british,
587
+ "vgb" => :virgin_islands_british,
588
+ "vi" => :virgin_islands_us,
589
+ "vir" => :virgin_islands_us,
590
+ "vn" => :viet_nam,
591
+ "vnm" => :viet_nam,
592
+ "vu" => :vanuatu,
593
+ "vut" => :vanuatu,
594
+ "wf" => :wallis_and_futuna,
595
+ "wlf" => :wallis_and_futuna,
596
+ "ws" => :samoa,
597
+ "wsm" => :samoa,
598
+ "ye" => :yemen,
599
+ "yem" => :yemen,
600
+ "yt" => :mayotte,
601
+ "za" => :south_africa,
602
+ "zaf" => :south_africa,
603
+ "zm" => :zambia,
604
+ "zmb" => :zambia,
605
+ "zw" => :zimbabwe,
606
+ "zwe" => :zimbabwe,
607
+ },
608
+ 8 => {
609
+ "1" => :birth_certificate,
610
+ "2" => :passport,
611
+ "3" => :hospital_certificate,
612
+ "4" => :affidavit,
613
+ "5" => :immigration_document,
614
+ "6" => :baptismal_or_church_certificate,
615
+ "7" => :physicians_certificate,
616
+ "8" => :undocumented,
617
+ "9" => :drivers_license,
618
+ "a" => :photo_id,
619
+ "b" => :social_insurance_certificatecanadian_social_insurance_certificate,
620
+ "c" => :us_passport,
621
+ "d" => :certificate_of_us_citizenship,
622
+ "e" => :certificate_of_naturalization,
623
+ "f" => :unexpired_foreign_passport_with_stamp_or_attached_immigration_and_naturalization_service_ins_form_indicating_unexpired_employment_authorization,
624
+ "g" => :alien_registration_receipt_card_with_photograph,
625
+ "h" => :unexpired_temporary_resident_card,
626
+ "i" => :unexpired_employment_authorization_card,
627
+ "j" => :unexpired_reentry_permit,
628
+ "k" => :unexpired_refugee_travel_document,
629
+ },
630
+ 10 => {
631
+ "0" => :document_identification_codecodes_that_subclassify_a_transaction,
632
+ "1" => :free_on_board_site_codethe_destination_site_where_the_seller_agrees_to_deliver_merchandise_on_board_the_conveyance_without_extra_charge,
633
+ "3" => :kind_of_contract_codevarious_kinds_of_contracts_for_tailoring_reports,
634
+ "4" => :type_of_contract_codetypes_of_contract_pricing_provisions,
635
+ "5" => :criticality_designator_codeclassifies_the_order_of_importance_of_contracts_for_production_and_performance_surveillance,
636
+ "7" => :quality_assurance_site_codethe_site_at_which_quality_assurance_is_performed,
637
+ "8" => :acceptance_site_codethe_site_at_which_assent_to_ownership_of_contract_line_items_takes_place,
638
+ "10" => :transaction_status_indicator_codea_transaction_other_than_normal_and_therefore_requiring_special_handling,
639
+ "11" => :contract_delivery_date_revision_agent_codethe_kind_of_organization_that_caused_an_item_to_be_undeliverable_within_the_contract_time_schedule,
640
+ "12" => :reason_for_contract_delivery_date_revision_codethe_reason_why_delivery_of_an_item_will_not_be_made_by_the_contract_delivery_date,
641
+ "13" => :recommendations_regarding_delayed_deliveries_codedescribes_which_actions_should_be_taken_on_delayed_deliveries_from_contractors,
642
+ "14" => :contract_shipment_advice_codeinformation_about_a_shipment_of_material_from_a_contractor_to_the_government,
643
+ "15" => :individual_insurance_financial_detail,
644
+ "16" => :cash_discount_stipulation_codewhen_cash_discount_terms_for_prompt_payment_apply_to_the_contract,
645
+ "17" => :shipment_acceptance_discrepancy_explanation_codeeither_the_reason_for_a_difference_between_the_quantity_shipped_and_accepted_or_why_documentation_is_missing_or_incomplete,
646
+ "18" => :insurance_plan_description_characteristics,
647
+ "19" => :contract_closeout_group_codeclassifies_contracts_to_evaluate_the_closing_of_physically_complete_contracts_against_the_established_time_standard,
648
+ "20" => :payment_type_codetype_of_payment_made_to_a_contractor_in_anticipation_of_performance_actual_performance_or_partial_performance_of_a_contract,
649
+ "21" => :contract_fund_reporting_transaction_codetype_of_cash_record_specified_in_a_notice_of_contract_payment,
650
+ "22" => :contract_payment_deduction_or_collection_codeauthorized_deduction_and_collection_conditions_that_can_be_used_to_adjust_gross_amounts_or_reflect_monies_collected,
651
+ "23" => :obligation_variance_codecodes_that_indicate_a_difference_that_changes_the_gross_amount_to_be_paid_to_the_contractor_from_those_amounts_recorded_as_payable_by_the_contract,
652
+ "24" => :plus_or_minus_indicator_codecodes_that_signify_whether_a_data_field_is_to_be_considered_algebraically_positive_or_negative,
653
+ "25" => :reason_for_delayed_closing_of_contract_file_codefactors_that_contribute_to_the_delay_in_closing_a_contract_file_within_the_time_period_established_as_the_norm,
654
+ "26" => :contract_payment_line_item_status_codestatus_of_a_contract_line_item_after_a_particular_payment_or_collection_has_been_applied,
655
+ "27" => :special_reimbursable_provisions_coderequirements_expressing_contractor_responsibilities_not_directly_involving_performance_for_which_the_contractor_may_be_reimbursed,
656
+ "28" => :kind_of_modification_codespecific_conditions_concerning_the_modification_of_header_records,
657
+ "29" => :purchasing_contract_officer_pco_instructions_codeinstructions_in_response_to_recommended_actions_regarding_actual_or_anticipated_changes_to_contract_line_item_delivery_dates,
658
+ "30" => :type_of_delay_codeidentifies_the_nature_of_a_delay_in_delivery,
659
+ "31" => :healthcare_provider_characteristics_and_resources,
660
+ "32" => :container_and_rollonrolloff_number_codespecific_containers_unitized_pallets_or_rollonrolloff_trailers,
661
+ "33" => :air_commodity_and_special_handling_codean_air_commodity_and_its_special_handling_requirements,
662
+ "34" => :water_commodity_and_special_handling_codea_water_commodity_and_its_special_handling_requirements,
663
+ "35" => :air_dimension_codea_shipment_has_one_or_more_outsized_dimensions_or_is_consolidated_or_both,
664
+ "36" => :air_terminal_identifier_codeidentifies_the_name_and_location_of_air_terminals_worldwide,
665
+ "37" => :water_terminal_identifier_codeidentifies_water_ports_worldwide,
666
+ "38" => :consolidation_and_containerization_point_codeactivities_that_consolidate_cargo_for_overseas_movement,
667
+ "39" => :transportation_mode_or_method_codethe_mode_used_for_each_segment_of_movement_within_the_transportation_system,
668
+ "40" => :type_pack_codethe_type_of_packaging_a_conex_container_who_loaded_it_and_to_what_capacity,
669
+ "41" => :date_shipped_or_received_codedates_and_times_of_a_shipment,
670
+ "42" => :estimated_time_of_arrival_codethe_number_of_days_a_shipment_will_be_in_transit,
671
+ "43" => :military_and_civilian_grade_codethe_grade_of_the_owners_of_personal_property_shipments,
672
+ "44" => :seavan_ownership_codethe_owner_of_a_seavan,
673
+ "45" => :ocean_carrier_codean_ocean_carrier,
674
+ "46" => :voyage_document_number_codeidentifies_the_booking_office_and_assigns_an_area_subdivision_serial_number,
675
+ "47" => :voyage_manifest_reference_codethe_sequence_in_which_manifests_were_issued,
676
+ "48" => :vessel_status_and_terms_of_carriage_codespecifies_the_type_of_shipping_and_payment_and_who_loads_and_unloads_the_vessel,
677
+ "49" => :vessel_sustaining_codethe_physical_capability_of_the_ships_gear_to_load_and_unload_cargo,
678
+ "50" => :subrogation_action_code,
679
+ "52" => :billing_advice_codethe_nature_of_the_request_or_problem,
680
+ "53" => :billing_status_codecodes_that_reply_to_requests_for_billing_adjustments,
681
+ "54" => :type_of_bill_codethe_purpose_of_the_billing,
682
+ "55" => :recipient_of_billing_status_codethe_organization_to_receive_the_billing_reply_and_status,
683
+ "56" => :sales_price_condition_codethe_amount_of_the_billing_record_does_not_equal_the_unit_price_extension,
684
+ "57" => :delivery_source_codecodes_that_provide_an_audit_trail_between_performance_and_pricing_requirements,
685
+ "58" => :transportation_bill_codeearnings_for_belowtheline_transportation_of_material,
686
+ "59" => :stock_fund_or_nonstock_fund_codethe_financing_appropriation_or_a_stock_fund,
687
+ "60" => :general_services_administration_gsa_customer_supply_center_number_codegsa_customer_supply_centers,
688
+ "61" => :information_indicator_codecodes_that_convey_special_information_to_offices_receiving_an_interfund_bill,
689
+ "62" => :communications_routing_identifier_codeorganizations_involved_in_the_communications_process,
690
+ "63" => :content_indicator_codethe_content_of_communication_messages,
691
+ "65" => :health_care_claim_status_code,
692
+ "66" => :suffix_or_limit_codecomponents_that_receive_allocations_under_defense_agency_appropriations,
693
+ "67" => :type_of_assistance_codecodes_that_distinguish_between_types_of_military_assistance_transactions,
694
+ "68" => :healthcare_provider_taxonomy,
695
+ "69" => :foreign_military_sales_country_codeforeign_countries,
696
+ "71" => :service_and_agency_codemilitary_services_defense_agencies_and_certain_civilian_agencies_of_the_united_states_government,
697
+ "72" => :disbursement_status_code,
698
+ "73" => :aid_type_code,
699
+ "74" => :demand_codeidentifies_whether_or_not_a_material_demand_is_recurring,
700
+ "75" => :suffix_codedifferentiates_partial_actions_of_the_same_transaction,
701
+ "78" => :project_codecodes_that_relate_a_transaction_to_special_programs_exercises_projects_operations_or_other_purposes,
702
+ "79" => :priority_designator_codethe_priority_of_a_transaction,
703
+ "80" => :advice_codeinstructions_to_transaction_recipients_when_narratives_cannot_be_transmitted,
704
+ "81" => :status_codeinforms_appropriate_recipients_about_the_status_of_a_transaction_or_excess_report,
705
+ "82" => :shipment_hold_codeexplains_why_a_shipping_organization_is_delaying_material_after_it_has_been_picked_packed_marked_and_prepared_for_shipment,
706
+ "83" => :supply_condition_codeclassifies_material_by_readiness_for_issue_and_use_describes_actions_underway_to_change_the_status_of_material_or_identifies_material_as_excess_or_not_serviceable,
707
+ "84" => :management_codesupplemental_information_not_covered_by_the_transaction_coding_structure,
708
+ "85" => :country_and_activity_codecountries_international_organizations_and_accounts_that_could_receive_material_or_services_under_the_foreign_military_sales_system_and_through_military_assistance_program_grant_aid,
709
+ "87" => :subsistence_type_of_pack_codea_certain_level_of_protection_from_the_packing_or_outside_shipping_container_for_perishable_and_nonperishable_subsistence_items,
710
+ "88" => :disposal_authority_codematerial_being_transferred_to_a_defense_reutilization_and_marketing_office_is_authorized_for_disposal_because_of_instructions_from_an_item_manager_or_inventory_control_point,
711
+ "89" => :cooperative_logistics_program_support_codeindicates_whether_or_not_a_foreign_military_sales_transaction_is_a_programmed_or_unprogrammed_requirement,
712
+ "90" => :precious_metals_indicator_codematerial_containing_precious_metals_and_the_content_value_of_the_metal,
713
+ "91" => :automated_data_processing_equipment_identification_codeautomated_data_processing_equipment,
714
+ "92" => :reason_for_disposal_codeexplains_why_material_is_being_transferred_for_disposal,
715
+ "93" => :type_of_storage_codethe_storage_requirements_for_material,
716
+ "94" => :identification_codeparties_or_organizations_not_covered_by_other_codes,
717
+ "95" => :offer_and_release_option_codeallows_countries_participating_in_the_foreign_military_sales_program_to_advise_supply_sources_whether_or_not_prior_notice_to_country_representatives_or_freight_forwarders_is_required_before_shipment,
718
+ "96" => :shipment_release_codeinformation_about_shipment_release_instructions,
719
+ "97" => :ultimate_recipient_codethe_ultimate_receiver_or_buyer_of_material_for_reimbursement_purposes,
720
+ "98" => :reason_for_requisitioning_codeexplains_why_material_is_needed,
721
+ "99" => :purpose_codecodes_that_inform_the_material_owner_why_an_inventory_balance_is_being_reserved,
722
+ "100" => :freddie_mac_federal_home_loan_mortgage_corporation_special_character_code,
723
+ "101" => :fannie_mae_federal_national_mortgage_association_special_feature_code,
724
+ "102" => :mortgage_index_source_code,
725
+ "103" => :fannie_mae_federal_national_mortgage_association_remittance_programs,
726
+ "104" => :freddie_mac_federal_home_loan_mortgage_corporation_remittance_programs,
727
+ "105" => :freddie_mac_federal_home_loan_mortgage_corporation_mortgage_insurance_code,
728
+ "106" => :fannie_mae_federal_national_mortgage_association_pool_feature_code,
729
+ "107" => :fannie_mae_federal_national_mortgage_association_mortgage_insurance_code,
730
+ "108" => :testing_statistical_category_code_list,
731
+ "109" => :testing_demographic_category_code_list,
732
+ "a" => :american_society_for_testing_and_materials_astm,
733
+ "a1" => :ownership_codeitems_included_in_the_inventory_records_of_an_organization_that_is_not_the_owner_of_the_items,
734
+ "a2" => :customer_within_country_codethe_receiving_country_and_place_of_discharge_within_the_country_for_military_assistance_program_grant_aid_or_the_countrys_markfor_or_shipto_addresses_in_foreign_military_sales_transactions,
735
+ "a3" => :delivery_term_codethe_delivery_term_for_a_foreign_military_sales_shipment,
736
+ "a4" => :case_designator_numberthe_case_that_a_foreign_military_sales_transaction_supports,
737
+ "a5" => :subcase_numberthe_line_item_or_subcase_that_a_foreign_military_sales_transaction_supports,
738
+ "a6" => :freight_forwarder_numberrepresentatives_designated_by_a_country_to_accomplish_or_control_shipments_of_foreign_military_sales_material,
739
+ "a7" => :record_control_numbera_line_item_of_the_international_logistics_program,
740
+ "a8" => :program_year_codenumber_defining_the_fiscal_year_in_which_the_international_logistics_program_item_is_to_be_planned,
741
+ "a9" => :supplemental_dataidentifies_the_originating_organizations_unique_logistics_information,
742
+ "aa" => :country_code_finance_and_acquisitioncountries_in_international_balance_of_payment_transactions,
743
+ "aaa" => :snomed_systematized_nomenclature_of_medicine,
744
+ "aad" => :asset_type,
745
+ "aae" => :current_asset_type,
746
+ "aaf" => :current_liability_type,
747
+ "aag" => :dun_and_bradstreet_canadas_8_digit_standard_industrial_classification_code,
748
+ "aah" => :financial_item_allocation_code,
749
+ "aai" => :financial_item_attributed_code,
750
+ "aaj" => :financial_item_reclassification_code,
751
+ "aak" => :functional_area,
752
+ "aal" => :hobby_code,
753
+ "aam" => :investment_type,
754
+ "aan" => :liability_type,
755
+ "aao" => :projection_type,
756
+ "aap" => :trend_reason,
757
+ "aaq" => :nacha_national_automated_clearing_house_association,
758
+ "aar" => :cpa_canadian_payments_association,
759
+ "aas" => :proprietary,
760
+ "aat" => :fannie_mae_adjustable_rate_mortgage_plan_codes,
761
+ "aau" => :international_classification_of_diseases_clinical_modification_icd9cm_diagnosis_encountered_during_examination_and_investigation_of_individuals_and_populations_code,
762
+ "aav" => :international_classification_of_diseases_clinical_modification_icd9cm_vaccination_innoculation_or_isolation_code,
763
+ "aaw" => :immunization_injection_code,
764
+ "aax" => :international_classification_of_diseases_clinical_modification_icd9cm_code,
765
+ "aay" => :current_dental_terminology_cdt_code,
766
+ "ab" => :defense_priorities_and_allocations_system_codeidentifies_and_prioritizes_defense_orders,
767
+ "abf" => :international_classification_of_diseases_clinical_modification_icd10cm_diagnosis,
768
+ "abj" => :international_classification_of_diseases_clinical_modification_icd10cm_admitting_diagnosis,
769
+ "abk" => :international_classification_of_diseases_clinical_modification_icd10cm_principal_diagnosis,
770
+ "abn" => :international_classification_of_diseases_clinical_modification_icd10cm_external_cause_of_injury_code,
771
+ "abr" => :assigned_by_receiver,
772
+ "abs" => :assigned_by_sender,
773
+ "abu" => :international_classification_of_diseases_clinical_modification_icd10cm_diagnosis_encountered_during_examination_and_investigation_of_individuals_and_populations_code,
774
+ "abv" => :international_classification_of_diseases_clinical_modification_icd10cm_vaccination_innoculation_or_isolation_code,
775
+ "ac" => :account_characteristics_codeidentifies_characteristics_of_an_establishment_that_holds_a_license_to_sell_or_serve_alcohol_beverages,
776
+ "acr" => :academic_rank,
777
+ "ad" => :acquisition_advice_codedenotes_how_and_under_what_restrictions_an_item_will_be_acquired,
778
+ "add" => :international_classification_of_diseases_clinical_modification_icd10cm_primary_diagnosis,
779
+ "adj" => :accounting_adjustment_method,
780
+ "ae" => :beneficiary_type,
781
+ "af" => :class_of_pitch,
782
+ "ag" => :grade_of_difficulty,
783
+ "ah" => :acquisition_method_suffix_codesupplements_the_acquisition_method_code_description,
784
+ "ai" => :acquisition_method_codedescribes_the_method_of_acquisition_used_in_obtaining_material,
785
+ "aj" => :utilization_codecode_identifying_the_purpose_of_the_transaction,
786
+ "ajt" => :adjustment_type,
787
+ "ak" => :distribution_codecode_identifying_activities_eligible_to_receive_additional_status,
788
+ "al" => :special_requirements_codeidentifies_special_requirements_impacting_the_processing_of_the_transaction,
789
+ "alm" => :allocation_method,
790
+ "alp" => :alteration_lookup,
791
+ "am" => :locale_of_activity,
792
+ "an" => :nature_of_event_code,
793
+ "ao" => :settlementpayout_options,
794
+ "ape" => :activite_principale_exercee_ape_codeactivity_code_from_french_government,
795
+ "apr" => :international_classification_of_diseases_clinical_modification_icd10cm_patients_reason_for_visit,
796
+ "aq" => :application_question_identifier,
797
+ "ar" => :arrest_reason,
798
+ "ari" => :allocation_rank_indicator,
799
+ "as" => :form_type_code,
800
+ "asd" => :international_classification_of_diseases_clinical_modification_icd10cm_secondary_diagnosis,
801
+ "at" => :allegation_type_code,
802
+ "atd" => :international_classification_of_diseases_clinical_modification_icd10cm_tertiary_diagnosis,
803
+ "att" => :allocation_transaction_type_code,
804
+ "au" => :all_patient_refined_diagnosis_related_groups_aprdrg,
805
+ "av" => :subrogation_payment_options,
806
+ "aw" => :all_patient_diagnosis_related_groups_apdrg,
807
+ "ax" => :ambulatory_patient_groups_apg,
808
+ "ay" => :subrogation_response_codes,
809
+ "az" => :subrogation_request_codes,
810
+ "b" => :bank_administration_institute_bai,
811
+ "ba" => :vessel_stowage_location_codespecifies_where_cargo_is_stowed_on_the_vessel,
812
+ "bb" => :business_type,
813
+ "bbq" => :international_classification_of_diseases_clinical_modification_icd10pcs_other_procedure_codes,
814
+ "bbr" => :international_classification_of_diseases_clinical_modification_icd10pcs_principal_procedure_codes,
815
+ "bc" => :transportation_holding_delay_codeidentifies_the_reason_for_a_transportation_delay,
816
+ "bcc" => :business_change_code,
817
+ "bcr" => :business_credit_rating,
818
+ "bd" => :transportation_priority_codeindicates_the_order_of_handling_and_the_recommended_method_of_material_movement,
819
+ "be" => :value,
820
+ "bf" => :international_classification_of_diseases_clinical_modification_icd9cm_diagnosis,
821
+ "bg" => :condition,
822
+ "bh" => :occurrence,
823
+ "bi" => :occurrence_span,
824
+ "bj" => :international_classification_of_diseases_clinical_modification_icd9cm_admitting_diagnosis,
825
+ "bk" => :international_classification_of_diseases_clinical_modification_icd9cm_principal_diagnosis,
826
+ "bl" => :application_fee_status_codes,
827
+ "bn" => :international_classification_of_diseases_clinical_modification_icd9cm_external_cause_of_injury_code_ecodes,
828
+ "bo" => :health_care_financing_administration_common_procedural_coding_system,
829
+ "bp" => :health_care_financing_administration_common_procedural_coding_system_principal_procedure,
830
+ "bpl" => :board_of_inspection_and_survey_part_lookup,
831
+ "bq" => :international_classification_of_diseases_clinical_modification_icd9cm_other_procedure_codes,
832
+ "br" => :international_classification_of_diseases_clinical_modification_icd9cm_principal_procedure_codes,
833
+ "brl" => :board_of_inspection_and_survey_responsibility_lookup,
834
+ "bs" => :current_procedural_terminology_cpt_codes,
835
+ "bsl" => :board_of_inspection_and_survey_ship_lookup,
836
+ "bsp" => :business_period,
837
+ "bt" => :accident_description,
838
+ "btc" => :balance_type_code,
839
+ "bu" => :part_of_body_affected,
840
+ "bui" => :bid_up_indicator,
841
+ "bv" => :education_institution_type_code,
842
+ "bw" => :educational_areas_code,
843
+ "bx" => :profession_type_code,
844
+ "by" => :share_type_code,
845
+ "bz" => :business_size_code,
846
+ "c" => :canadian_interedi,
847
+ "c1" => :eye_color_code,
848
+ "c2" => :hair_color_code,
849
+ "c3" => :skin_tone_code,
850
+ "ca" => :type_of_inquiry_codethe_type_of_inquiry_being_requested,
851
+ "cah" => :advanced_billing_concepts_abc_codes,
852
+ "cb" => :billed_office_indicator_codeindicates_whether_the_summary_billing_record_was_submitted_by_a_billed_office,
853
+ "cc" => :treasury_symbol_codedepartments_accounts_fiscal_year_and_allocation_holders_or_receivers,
854
+ "cd" => :supplementary_accounting_classification_codethe_budget_activity_object_class_and_reimbursement_data_of_the_financial_transaction,
855
+ "ce" => :reference_and_station_codethe_transaction_reference_number_accountable_station_paying_station_and_voucher_number_of_the_financial_transaction,
856
+ "cf" => :major_force_program_codethe_source_of_funding_for_major_programs,
857
+ "cfi" => :contractual_flow_indicator,
858
+ "cg" => :aircraft_mission_design_series_codetypes_of_aircraft,
859
+ "ch" => :type_of_issue_codean_issue_defueling_or_service,
860
+ "chg" => :charge_indicator,
861
+ "ci" => :criminal_charge,
862
+ "cie" => :collision_industry_electronic_commerce_association_cieca__assignment_type,
863
+ "cj" => :criminal_charge_grade,
864
+ "ck" => :coupon_adjustment_reason_code,
865
+ "cl" => :county_designator_code,
866
+ "clp" => :cause_lookup,
867
+ "cm" => :financial_management_service_cashlink_code,
868
+ "cml" => :customer_maintenance_level_lookup,
869
+ "cn" => :cause_of_injury_code,
870
+ "cnc" => :change_notice_code,
871
+ "co" => :customized_notice_type_code,
872
+ "cog" => :cognizance_symbol,
873
+ "cp" => :salvage_disposition_code,
874
+ "cps" => :court_party_status,
875
+ "cq" => :capacity_type_indicator,
876
+ "cr" => :federal_item_identification_guide_criticality_fiig_code,
877
+ "crc" => :complaint_request_code,
878
+ "cs" => :clause_status_type,
879
+ "csd" => :customer_service_designatorthe_military_service_designator_of_the_customer,
880
+ "csf" => :corporate_statement_filing_code,
881
+ "ct" => :compensation_type_codes,
882
+ "cu" => :cuisine_type_codeidentifies_the_type_of_cuisine_served_in_an_establishment,
883
+ "cv" => :coverage_code_list,
884
+ "cw" => :controvert_code,
885
+ "cz" => :conviction_offense_type,
886
+ "d" => :court_document_type_code,
887
+ "d1" => :drivers_license_withdrawal_type,
888
+ "d2" => :drivers_license_withdrawal_extent,
889
+ "d3" => :drivers_license_withdrawal_basis,
890
+ "d4" => :drivers_license_withdrawal_due_process_status,
891
+ "d5" => :drivers_license_withdrawal_reason,
892
+ "da" => :device_availability_code,
893
+ "dac" => :document_availability_code,
894
+ "db" => :debtor_business_type_code,
895
+ "dbs" => :duns_standard_industrial_classification_sic_22_dun_and_bradstreet,
896
+ "dc" => :report_distribution_code,
897
+ "dd" => :international_classification_of_diseases_clinical_modification_icd9cm_primary_diagnosis,
898
+ "de" => :signal_code,
899
+ "df" => :media_and_status_code,
900
+ "dg" => :fund_code,
901
+ "dgo" => :dynamic_generator_set_code,
902
+ "dh" => :drug_detail_code,
903
+ "di" => :single_use_label_code,
904
+ "dj" => :remedial_action_code,
905
+ "dk" => :program_originator_codeenables_the_security_assistance_organization_to_determine_the_specific_military_department_to_which_the_requests_are_to_be_directed,
906
+ "dl" => :service_contract_act_operation_code,
907
+ "dlo" => :dynamic_locomotive_tag_code,
908
+ "dlp" => :deferral_lookup,
909
+ "dm" => :agent_status_code,
910
+ "dn" => :nature_of_debt_code,
911
+ "do" => :device_operator_type_code,
912
+ "dof" => :direction_of_flow,
913
+ "dp" => :producer_financial_history_codes,
914
+ "dpe" => :association_of_american_railroads_deprescription_exception_list,
915
+ "dpl" => :association_of_american_railroads_deprescription_distribution_list,
916
+ "dq" => :device_status_code,
917
+ "dr" => :diagnosis_related_group_drg,
918
+ "drl" => :collision_industry_electronic_commerce_association_cieca__detail_repair_lines_code_list,
919
+ "ds" => :related_device_applicability_code,
920
+ "dsr" => :data_sets_requested,
921
+ "dss" => :delivery_scheduling_status,
922
+ "dt" => :debtor_type_code,
923
+ "du" => :device_usage_code,
924
+ "dw" => :estimating_method_status_code,
925
+ "dx" => :contact_status_code,
926
+ "dy" => :type_of_firm_code,
927
+ "dz" => :reportable_event_status_code,
928
+ "e" => :diagnostic_statistical_manual_of_mental_disorders_code_list_dsm,
929
+ "ea" => :asset_status_or_transaction_reporting_codetype_of_reporting_required_and_whether_a_request_is_for_commencement_change_or_termination_of_reporting,
930
+ "eaa" => :alabama_campaign_disclosure_report_codes,
931
+ "eab" => :alaska_campaign_disclosure_report_codes,
932
+ "eac" => :american_samoa_campaign_disclosure_report_codes,
933
+ "ead" => :arizona_campaign_disclosure_report_codes,
934
+ "eae" => :arkansas_campaign_disclosure_report_codes,
935
+ "eaf" => :california_campaign_disclosure_report_codes,
936
+ "eag" => :colorado_campaign_disclosure_report_codes,
937
+ "eah" => :connecticut_campaign_disclosure_report_codes,
938
+ "eai" => :delaware_campaign_disclosure_report_codes,
939
+ "eaj" => :district_of_columbia_campaign_disclosure_report_codes,
940
+ "eak" => :florida_campaign_disclosure_report_codes,
941
+ "eal" => :georgia_campaign_disclosure_report_codes,
942
+ "eam" => :guam_campaign_disclosure_report_codes,
943
+ "ean" => :hawaii_campaign_disclosure_report_codes,
944
+ "eao" => :idaho_campaign_disclosure_report_codes,
945
+ "eap" => :illinois_campaign_disclosure_report_codes,
946
+ "eaq" => :indiana_campaign_disclosure_report_codes,
947
+ "ear" => :iowa_campaign_disclosure_report_codes,
948
+ "eas" => :kansas_campaign_disclosure_report_codes,
949
+ "eat" => :kentucky_campaign_disclosure_report_codes,
950
+ "eau" => :louisiana_campaign_disclosure_report_codes,
951
+ "eav" => :maine_campaign_disclosure_report_codes,
952
+ "eaw" => :maryland_campaign_disclosure_report_codes,
953
+ "eax" => :massachusetts_campaign_disclosure_report_codes,
954
+ "eay" => :michigan_campaign_disclosure_report_codes,
955
+ "eaz" => :minnesota_campaign_disclosure_report_codes,
956
+ "eb" => :asset_transfer_status_coderesponds_to_a_followup_request_for_asset_data_also_used_for_followup_and_reconciliation_requests_for_duein_information,
957
+ "eba" => :mississippi_campaign_disclosure_report_codes,
958
+ "ebb" => :missouri_campaign_disclosure_report_codes,
959
+ "ebc" => :montana_campaign_disclosure_report_codes,
960
+ "ebd" => :nebraska_campaign_disclosure_report_codes,
961
+ "ebe" => :nevada_campaign_disclosure_report_codes,
962
+ "ebf" => :new_hampshire_campaign_disclosure_report_codes,
963
+ "ebg" => :new_jersey_campaign_disclosure_report_codes,
964
+ "ebh" => :new_mexico_campaign_disclosure_report_codes,
965
+ "ebi" => :new_york_campaign_disclosure_report_codes,
966
+ "ebj" => :north_carolina_campaign_disclosure_report_codes,
967
+ "ebk" => :north_dakota_campaign_disclosure_report_codes,
968
+ "ebl" => :ohio_campaign_disclosure_report_codes,
969
+ "ebm" => :oklahoma_campaign_disclosure_report_codes,
970
+ "ebn" => :oregon_campaign_disclosure_report_codes,
971
+ "ebo" => :pennsylvania_campaign_disclosure_report_codes,
972
+ "ebp" => :puerto_rico_campaign_disclosure_report_codes,
973
+ "ebq" => :rhode_island_campaign_disclosure_report_codes,
974
+ "ebr" => :south_carolina_campaign_disclosure_report_codes,
975
+ "ebs" => :south_dakota_campaign_disclosure_report_codes,
976
+ "ebt" => :tennessee_campaign_disclosure_report_codes,
977
+ "ebu" => :texas_campaign_disclosure_report_codes,
978
+ "ebv" => :utah_campaign_disclosure_report_codes,
979
+ "ebw" => :vermont_campaign_disclosure_report_codes,
980
+ "ebx" => :virginia_campaign_disclosure_report_codes,
981
+ "eby" => :virgin_islands_campaign_disclosure_report_codes,
982
+ "ebz" => :washington_campaign_disclosure_report_codes,
983
+ "ec" => :certification_requirements_codecontract_certification_requirements,
984
+ "eca" => :west_virginia_campaign_disclosure_report_codes,
985
+ "ecb" => :wisconsin_campaign_disclosure_report_codes,
986
+ "ecc" => :wyoming_campaign_disclosure_report_codes,
987
+ "ecd" => :alberta_campaign_disclosure_report_codes,
988
+ "ece" => :british_columbia_campaign_disclosure_report_codes,
989
+ "ecf" => :manitoba_campaign_disclosure_report_codes,
990
+ "ecg" => :new_brunswick_campaign_disclosure_report_codes,
991
+ "ech" => :newfoundland_campaign_disclosure_report_codes,
992
+ "eci" => :northwest_territories_campaign_disclosure_report_codes,
993
+ "ecj" => :nova_scotia_campaign_disclosure_report_codes,
994
+ "eck" => :ontario_campaign_disclosure_report_codes,
995
+ "ecl" => :prince_edward_island_campaign_disclosure_report_codes,
996
+ "ecm" => :quebec_campaign_disclosure_report_codes,
997
+ "ecn" => :saskatchewan_campaign_disclosure_report_codes,
998
+ "eco" => :yukon_territory_campaign_disclosure_report_codes,
999
+ "ecp" => :federal_campaign_disclosure_report_codes,
1000
+ "ecq" => :alabama_lobbyist_report_codes,
1001
+ "ecr" => :alaska_lobbyist_report_codes,
1002
+ "ecs" => :arizona_lobbyist_report_codes,
1003
+ "ect" => :arkansas_lobbyist_report_codes,
1004
+ "ecu" => :california_lobbyist_report_codes,
1005
+ "ecv" => :colorado_lobbyist_report_codes,
1006
+ "ecw" => :connecticut_lobbyist_report_codes,
1007
+ "ecx" => :delaware_lobbyist_report_codes,
1008
+ "ecy" => :district_of_columbia_lobbyist_report_codes,
1009
+ "ecz" => :florida_lobbyist_report_codes,
1010
+ "ed" => :coast_designation_codethe_location_of_the_consignee,
1011
+ "eda" => :georgia_lobbyist_report_codes,
1012
+ "edb" => :hawaii_lobbyist_report_codes,
1013
+ "edc" => :idaho_lobbyist_report_codes,
1014
+ "edd" => :illinois_lobbyist_report_codes,
1015
+ "ede" => :indiana_lobbyist_report_codes,
1016
+ "edf" => :iowa_lobbyist_report_codes,
1017
+ "edg" => :kansas_lobbyist_report_codes,
1018
+ "edh" => :kentucky_lobbyist_report_codes,
1019
+ "edi" => :louisiana_lobbyist_report_codes,
1020
+ "edj" => :maine_lobbyist_report_codes,
1021
+ "edk" => :maryland_lobbyist_report_codes,
1022
+ "edl" => :massachusetts_lobbyist_report_codes,
1023
+ "edm" => :michigan_lobbyist_report_codes,
1024
+ "edn" => :minnesota_lobbyist_report_codes,
1025
+ "edo" => :mississippi_lobbyist_report_codes,
1026
+ "edp" => :missouri_lobbyist_report_codes,
1027
+ "edq" => :montana_lobbyist_report_codes,
1028
+ "edr" => :nebraska_lobbyist_report_codes,
1029
+ "eds" => :nevada_lobbyist_report_codes,
1030
+ "edt" => :new_hampshire_lobbyist_report_codes,
1031
+ "edu" => :new_jersey_lobbyist_report_codes,
1032
+ "edv" => :new_mexico_lobbyist_report_codes,
1033
+ "edw" => :new_york_lobbyist_report_codes,
1034
+ "edx" => :north_carolina_lobbyist_report_codes,
1035
+ "edy" => :north_dakota_lobbyist_report_codes,
1036
+ "edz" => :ohio_lobbyist_report_codes,
1037
+ "ee" => :competitive_characteristics_codedescribes_the_basis_for_competitiveness_or_noncompetitiveness,
1038
+ "eea" => :oklahoma_lobbyist_report_codes,
1039
+ "eeb" => :oregon_lobbyist_report_codes,
1040
+ "eec" => :pennsylvania_lobbyist_report_codes,
1041
+ "eed" => :puerto_rico_lobbyist_report_codes,
1042
+ "eee" => :rhode_island_lobbyist_report_codes,
1043
+ "eef" => :south_carolina_lobbyist_report_codes,
1044
+ "eeg" => :south_dakota_lobbyist_report_codes,
1045
+ "eeh" => :tennessee_lobbyist_report_codes,
1046
+ "eei" => :texas_lobbyist_report_codes,
1047
+ "eej" => :utah_lobbyist_report_codes,
1048
+ "eek" => :vermont_lobbyist_report_codes,
1049
+ "eel" => :virginia_lobbyist_report_codes,
1050
+ "eem" => :washington_lobbyist_report_codes,
1051
+ "een" => :west_virginia_lobbyist_report_codes,
1052
+ "eeo" => :wisconsin_lobbyist_report_codes,
1053
+ "eep" => :wyoming_lobbyist_report_codes,
1054
+ "eeq" => :new_york_city_campaign_disclosure_report_codes,
1055
+ "eer" => :seattle_campaign_disclosure_report_codes,
1056
+ "ees" => :new_york_city_lobbyist_report_codes,
1057
+ "ef" => :correction_or_change_for_storage_item_records_codeindicates_the_nature_of_the_change_actions_to_be_taken_and_the_affected_data_fields,
1058
+ "eg" => :excavation_information_code_list,
1059
+ "eh" => :type_duein_indicator,
1060
+ "ei" => :discrepancy_indicator_codeindicates_that_a_supply_or_transportation_discrepancy_or_product_quality_deficiency_affects_receipt_posting,
1061
+ "ej" => :disposal_condition_codeidentifies_action_to_change_status_classifies_readiness_for_issue_and_describes_the_physical_condition_of_material,
1062
+ "ek" => :event_or_exposure_code,
1063
+ "el" => :error_classification_codeclassifies_the_causes_of_actual_or_potential_adjustments,
1064
+ "em" => :inventory_category_codethe_inventory_category_of_an_item,
1065
+ "emc" => :automotive_aftermarket_industry_association_aaia_emission_code,
1066
+ "en" => :local_source_codedefines_the_method_or_source_for_satisfying_the_material_requirement_at_the_local_level,
1067
+ "eo" => :adverse_event_outcome_code,
1068
+ "eq" => :controlled_inventory_item_codecategorizes_pilferable_items,
1069
+ "eqr" => :equipment_request_codes,
1070
+ "er" => :department_of_defense_identification_codecommodities_in_federal_supply_groups_13_and_14,
1071
+ "es" => :extension_reason,
1072
+ "esc" => :electrostatic_discharge_code,
1073
+ "esl" => :equipment_status_lookup,
1074
+ "et" => :reject_advice_codeindicates_the_reason_a_transaction_was_rejected,
1075
+ "etl" => :estimate_type_lookup,
1076
+ "eu" => :request_codethe_type_of_data_requested_and_furnished_on_an_asset_support_request,
1077
+ "ev" => :review_period_indicator_codereview_period_relative_to_decapitalization_date,
1078
+ "ew" => :small_arms_error_transaction_reject_codethe_type_of_smallarms_transaction_error,
1079
+ "ewc" => :evaluate_work_candidate_lookup,
1080
+ "ewr" => :evaluate_work_candidate_reason_lookup,
1081
+ "ex" => :small_arms_transaction_codechanges_in_smallarms_status_in_the_master_file,
1082
+ "exd" => :export_declaration,
1083
+ "ey" => :special_program_requirement_status_codeinforms_of_forecasting_activities_of_action_taken,
1084
+ "ez" => :type_inspection_codethe_level_of_quality_control,
1085
+ "f" => :financial_rating,
1086
+ "fa" => :type_of_contractor_codethe_type_of_contractor,
1087
+ "fap" => :fannie_mae_refinance_plan_code,
1088
+ "fb" => :type_of_media_codethe_media_for_transmittal_of_transaction_history,
1089
+ "fc" => :type_physical_inventory_or_transaction_history_codeidentifies_the_type_of_inventory_being_conducted_or_requested_or_identifies_requests_for_transmission_of_custodial_balances_and_history,
1090
+ "fc1" => :federal_communication_control_and_security_code_list_1,
1091
+ "fd" => :demilitarization_codeidentifies_the_action_necessary_to_prevent_the_further_use_of_equipment_and_material_for_its_originally_intended_purpose,
1092
+ "fe" => :shelf_life_codethe_storage_time_period_or_perishability_of_an_item,
1093
+ "ff" => :essentiality_codethe_essentiality_of_an_item,
1094
+ "ff1" => :federal_finance_code_list_1,
1095
+ "fg" => :source_maintenance_and_recoverability_codecodes_that_provide_source_maintenance_and_recoverability_data_for_material_that_can_be_repaired,
1096
+ "fh" => :type_of_location_reconciliation_request,
1097
+ "fh1" => :federal_health_care_code_list_1,
1098
+ "fi" => :applicant_type,
1099
+ "fir" => :financial_inventory_report_code,
1100
+ "fj" => :antenna_structure_type,
1101
+ "fk" => :station_classification,
1102
+ "fl" => :radio_frequency_type,
1103
+ "fl1" => :federal_logistics_code_list_1,
1104
+ "fm" => :station_classification_type,
1105
+ "fmo" => :former_major_organizational_entity_rule_number,
1106
+ "fms" => :foreign_military_sales_and_military_assistance_program_grant_aid_type_of_assistancefinancing_code,
1107
+ "fn" => :class_of_operation,
1108
+ "fo" => :antenna_polarization,
1109
+ "fp" => :fund_purpose,
1110
+ "fp1" => :federal_procurement_code_list_1,
1111
+ "fq" => :radio_system_type,
1112
+ "fr" => :frequency_band,
1113
+ "frp" => :freddie_mac_refinance_plan_code,
1114
+ "fs" => :area_of_operation,
1115
+ "ft" => :application_type,
1116
+ "ft1" => :federal_transportation_code_list_1,
1117
+ "fu" => :authorization_type,
1118
+ "fv" => :radio_service_type,
1119
+ "fw" => :applicant_classification_type,
1120
+ "fx" => :frequency,
1121
+ "fz" => :edit_error_code,
1122
+ "g" => :risk_class,
1123
+ "g1" => :uniform_residential_appraisal_attributes_codedefines_the_attributes_of_a_residential_property,
1124
+ "ga" => :action_codethe_type_of_action_being_processed,
1125
+ "gb" => :medium_of_transmission_codemethod_by_which_transactions_are_received,
1126
+ "gc" => :management_indicator_code_petroleumsupplemental_data_not_indicated_through_the_transaction_coding_structure,
1127
+ "gd" => :gain_or_loss_indicator_codeidentifies_an_inventory_adjustment_as_a_gain_or_loss,
1128
+ "ge" => :type_adjustment_codethe_reasons_for_gain_or_loss_adjustment_of_a_fuel_inventory,
1129
+ "gf" => :type_identity_change_codechanges_in_the_grade_of_petroleum_products,
1130
+ "gg" => :transportation_mode_reason_codeexcess_transportation_costs_resulting_from_use_of_other_than_the_lowest_cost_route_or_mode,
1131
+ "gi" => :notification_indicator_codeindicates_that_a_transaction_creates_a_condition_requiring_review,
1132
+ "gj" => :reject_indicator_codeindicates_that_a_transaction_cannot_be_processed_due_to_erroneous_or_conflicting_data,
1133
+ "gk" => :investigation_status_codethe_status_of_the_investigation_of_a_shortage,
1134
+ "gq" => :group_qualifier_code,
1135
+ "gr" => :national_council_on_compensation_insurance_ncci_nature_of_injury_code,
1136
+ "gs" => :occupational_safety_and_health_administration_osha_nature_of_injury_code,
1137
+ "gt" => :national_council_on_compensation_insurance_ncci_part_of_body_code,
1138
+ "gu" => :occupational_safety_and_health_administration_osha_part_of_body_code,
1139
+ "gv" => :national_council_on_compensation_insurance_ncci_source_of_injury_code,
1140
+ "gw" => :occupational_safety_and_health_administration_osha_source_of_injury_code,
1141
+ "gx" => :glass_action_code,
1142
+ "gy" => :cause_of_loss_code,
1143
+ "gz" => :loss_description_code,
1144
+ "h" => :lifeannuity_status_codes,
1145
+ "ha" => :discrepancy_codedescribes_a_material_discrepancy,
1146
+ "hb" => :discrepancy_advice_codedescribes_the_type_of_action_taken_or_requested_for_a_supply_discrepancy_report,
1147
+ "hc" => :institutional_sector_or_level_classification_code,
1148
+ "hd" => :discrepancy_status_or_disposition_codeprovides_advice_to_the_reporting_activity_regarding_disposition_of_the_discrepant_material,
1149
+ "he" => :claim_payment_remark_codes,
1150
+ "hf" => :education_staff_type_code,
1151
+ "hg" => :education_fee_type_code,
1152
+ "hi" => :health_industry_number,
1153
+ "hj" => :institutional_fee_basis_code,
1154
+ "hk" => :national_center_for_education_statistics_integrated_postsecondary_education_data_system_institutional_characteristics_survey_code,
1155
+ "hl" => :accreditation_affiliation_or_licensing_level_code,
1156
+ "hm" => :national_center_for_education_statistics_accreditation_or_licensing_type,
1157
+ "ho" => :home_infusion_edi_coalition_hiec_productservice_code,
1158
+ "hrc" => :hazardous_response_codes,
1159
+ "hs" => :service_contract_act_occupation_category_code,
1160
+ "hzr" => :association_of_american_railroads_standard_transportation_commodity_code_description_qualifier,
1161
+ "i" => :identifying_characteristics,
1162
+ "ibp" => :insurance_business_process_application_error_code,
1163
+ "ic" => :collision_industry_electronic_commerce_association_cieca__inspection,
1164
+ "id" => :identity_disclosure_code,
1165
+ "if" => :investment_fund_type,
1166
+ "imc" => :item_management_code,
1167
+ "imp" => :impact_recorder_code,
1168
+ "ind" => :intranavy_disposal_release_order_reject_advice_code,
1169
+ "ipa" => :impact_axis_or_analog_port_code,
1170
+ "iq" => :irs_qualification_code,
1171
+ "irr" => :issue_repair_and_requisition_code,
1172
+ "irt" => :imbalance_reporting_type,
1173
+ "it" => :initial_treatment_code,
1174
+ "j" => :trade_code,
1175
+ "j0" => :summons_type_code,
1176
+ "j1" => :judicial_hearing_type_code,
1177
+ "j2" => :judicial_order_type_code,
1178
+ "j3" => :judicial_sentence_type_code,
1179
+ "j4" => :court_disposition_code,
1180
+ "j5" => :court_appearance_type_code,
1181
+ "j6" => :court_pleading_type_code,
1182
+ "j7" => :defendant_plea_type_code,
1183
+ "j8" => :trial_type_code,
1184
+ "j9" => :court_case_status_code,
1185
+ "ja" => :physical_characteristics_codeidentifies_the_physical_characteristics_of_an_item,
1186
+ "jb" => :weight_or_fragility_codethe_weight_or_fragility_of_an_item,
1187
+ "jc" => :preservation_material_codecodes_that_identify_the_material_needed_to_preserve_an_item,
1188
+ "jcl" => :job_characteristics_lookup,
1189
+ "jd" => :quantity_per_unit_pack_codeidentifies_the_number_of_units_to_be_contained_in_a_package,
1190
+ "je" => :preservation_data_codeidentifies_the_preservation_data_requirements_for_an_item,
1191
+ "jf" => :packing_requirement_level_a_codethe_level_a_packing_requirements_for_an_item,
1192
+ "jg" => :packing_requirement_level_b_codethe_level_b_packing_requirements_for_an_item,
1193
+ "jh" => :packing_requirement_level_c_codethe_level_c_packing_requirements_for_an_item,
1194
+ "ji" => :intermediate_container_codethe_intermediate_container_requirements_for_an_item,
1195
+ "jk" => :intermediate_container_quantity_codethe_number_of_units_to_be_packed_within_each_intermediate_container,
1196
+ "jl" => :special_marking_codethe_special_marking_requirements_for_an_item,
1197
+ "jm" => :type_and_cause_code,
1198
+ "jn" => :mission_impact_statement_code,
1199
+ "jo" => :international_standard_designation_system_for_teeth_and_areas_of_the_oral_cavity,
1200
+ "jol" => :job_originator_lookup,
1201
+ "jp" => :universal_national_tooth_designation_system,
1202
+ "k" => :property_underwriting_condition_code,
1203
+ "ka" => :deficiency_cause,
1204
+ "kb" => :discrepancy,
1205
+ "kc" => :preventive_measure,
1206
+ "kd" => :contractor_alert_list_reason,
1207
+ "ke" => :quality_alert_list_reason,
1208
+ "kf" => :contractor_alert_list_status,
1209
+ "kg" => :nature_of_buy,
1210
+ "kh" => :type_of_procurement,
1211
+ "ki" => :representative_buy_indicator,
1212
+ "kj" => :assured_delivery_indicator,
1213
+ "kk" => :award_source,
1214
+ "kl" => :termination,
1215
+ "km" => :patient_event_problem_code,
1216
+ "ko" => :method_evaluation_code,
1217
+ "kp" => :result_evaluation_code,
1218
+ "kq" => :conclusion_evaluation_code,
1219
+ "ks" => :device_event_problem_code,
1220
+ "kt" => :dose_form_code,
1221
+ "ku" => :route_code,
1222
+ "kw" => :report_source_code,
1223
+ "kyl" => :key_event_lookup,
1224
+ "kz" => :adverse_event_code,
1225
+ "l" => :line_item_condition_code,
1226
+ "la" => :contract,
1227
+ "lb" => :contractor_review_list_status,
1228
+ "lc" => :laboratory_test_condition_code,
1229
+ "ld" => :collision_industry_electronic_commerce_association_cieca__loss_category,
1230
+ "le" => :lifeannuity_service_features,
1231
+ "lf" => :lifeannuity_product_code,
1232
+ "lg" => :location_code,
1233
+ "lh" => :basis_of_jurisdiction_code,
1234
+ "lin" => :line_of_authority,
1235
+ "lj" => :principal_party_citizenship_code,
1236
+ "lk" => :nature_of_suit_code,
1237
+ "lm" => :case_origin_code,
1238
+ "ln" => :line_of_business_code,
1239
+ "lo" => :letter_of_recommendation_rating_category,
1240
+ "loc" => :location_indicator,
1241
+ "loi" => :logical_observation_identifier_names_and_codes_loinc_codes,
1242
+ "lp" => :deficiency_indicator,
1243
+ "lq" => :delinquency_indicator,
1244
+ "lr" => :test_results_codereport_nonquantifiable_test_results,
1245
+ "ls" => :loss_severity_codeidentifies_the_extent_of_the_loss,
1246
+ "lsc" => :legal_structure_code,
1247
+ "lt" => :laboratory_results_identification_codeidentifies_the_test_being_reported,
1248
+ "lz" => :war_reserve_material_requirement_code,
1249
+ "m" => :policy_type_code,
1250
+ "ma" => :multimedia_object,
1251
+ "mac" => :material_management_aggregation_code,
1252
+ "mb" => :service_contract_act_occupation_classification_code,
1253
+ "mc" => :manual_class_code,
1254
+ "mcc" => :material_control_code,
1255
+ "mcd" => :generator_set_mounting_code,
1256
+ "me" => :device_evaluation_code,
1257
+ "mec" => :method_of_completion_code,
1258
+ "mi" => :minority_indicator,
1259
+ "mj" => :drug_status_code,
1260
+ "mk" => :drug_status_adverse_event_code,
1261
+ "ml" => :lot_type_code,
1262
+ "mn" => :post_market_study_status_code,
1263
+ "moc" => :mechanization_of_contract_administration_services_mocas_system_error_code,
1264
+ "moe" => :major_organizational_entity_rule_number,
1265
+ "mri" => :maximum_rate_indicator,
1266
+ "ms" => :meter_status,
1267
+ "mt" => :meter_type,
1268
+ "n" => :valuation_type_code,
1269
+ "na" => :plant_clearance_office_codecode_to_indicate_the_disposition_of_excess_material,
1270
+ "nac" => :nomenclature_activity_classification_economy_nace_codeactivity_code_from_belgian_and_italian_governments,
1271
+ "naf" => :norme_activite_francaise_naf_codeactivity_norm_code_from_french_government,
1272
+ "nan" => :nonapproved_item_name,
1273
+ "nas" => :nature_of_suit,
1274
+ "nb" => :inventory_type_code,
1275
+ "nc" => :property_record_status_code,
1276
+ "nd" => :control_unit_design_code,
1277
+ "ndc" => :national_drug_code_ndc,
1278
+ "ne" => :direct_numerical_control_system_code,
1279
+ "nf" => :type_numerical_control_system_code,
1280
+ "nh" => :property_source_code,
1281
+ "ni" => :nature_of_injury_code,
1282
+ "nir" => :noninduction_reason_code,
1283
+ "nj" => :uniform_freight_classification_ufc_code,
1284
+ "nk" => :national_motor_freight_classification_nmfc_code,
1285
+ "np" => :special_category_codecode_to_indicate_material_with_special_properties,
1286
+ "npc" => :automotive_aftermarket_industry_association_aaia_national_popularity_code,
1287
+ "nr" => :excess_material_disposition_codecodes_to_indicate_means_of_disposing_unwanted_excess_material,
1288
+ "ns" => :hazardous_material_code,
1289
+ "nt" => :type_of_cargo_code,
1290
+ "nub" => :national_uniform_billing_committee_nubc_revenue_codes,
1291
+ "o" => :source_of_loss_code,
1292
+ "o1" => :office_of_workers_compensation_programs_owcp_source_of_injury_code,
1293
+ "o2" => :office_of_workers_compensation_programs_owcp_nature_of_injury_code,
1294
+ "o3" => :office_of_workers_compensation_programs_owcp_part_of_body_code,
1295
+ "o4" => :office_of_workers_compensation_programs_owcp_occupation_code,
1296
+ "oc" => :occupation_code,
1297
+ "p" => :ceiling_type_code,
1298
+ "pa" => :prior_damage_location_code,
1299
+ "pb" => :part_of_body_code,
1300
+ "pc" => :collision_industry_electronic_commerce_association_cieca__profile,
1301
+ "pcr" => :pseudo_closure_reason_code,
1302
+ "pd" => :professional_designation,
1303
+ "pda" => :predetermined_allocation_pda_transaction_type_code,
1304
+ "pgs" => :petroleum_united_states_geological_survey_usgs_formation_code,
1305
+ "phc" => :phrase_code,
1306
+ "pi" => :collision_industry_electronic_commerce_association_cieca__points_of_impact,
1307
+ "pit" => :petroleum_bill_type,
1308
+ "pl" => :priority_lookup,
1309
+ "plc" => :petroleum_land_category,
1310
+ "pls" => :petroleum_lease_status,
1311
+ "pob" => :part_of_body_and_nature_of_injury,
1312
+ "ppd" => :petroleum_product_disposition,
1313
+ "ppp" => :petroleum_product_pointofsale,
1314
+ "pps" => :petroleum_product_selling_arrangement,
1315
+ "ppv" => :petroleum_product_value_adjustment,
1316
+ "pqa" => :petroleum_quantity_allocations_code,
1317
+ "pr" => :international_classification_of_diseases_clinical_modification_icd9cm_patients_reason_for_visit,
1318
+ "pra" => :petroleum_royalty_adjustment,
1319
+ "prc" => :petroleum_royalty_calculation_method,
1320
+ "pri" => :processing_rights_indicator,
1321
+ "prr" => :petroleum_regulatory_report,
1322
+ "prt" => :petroleum_royalty_transaction,
1323
+ "ps" => :professional_status_code,
1324
+ "pt" => :price_tier,
1325
+ "pwa" => :petroleum_well_action,
1326
+ "pwi" => :petroleum_well_information,
1327
+ "pwr" => :petroleum_well_shutin_reason,
1328
+ "pws" => :petroleum_well_classification_status,
1329
+ "pwt" => :petroleum_well_test_information,
1330
+ "q" => :surface_descriptor_code,
1331
+ "qa" => :response_status_code,
1332
+ "qb" => :business_entity_filing_report_type_code,
1333
+ "qc" => :business_entity_filing_detail_code,
1334
+ "qdr" => :product_quality_deficiency_report_summary_codeinformation_concerning_responsibility_severity_cause_preventive_action_and_material_disposition,
1335
+ "qe" => :domestic_line_of_business_code,
1336
+ "qf" => :foreign_line_of_business_code,
1337
+ "qg" => :business_entity_filing_status_code,
1338
+ "qh" => :business_entity_filing_securities_information_code,
1339
+ "qi" => :business_entity_financial_information_code,
1340
+ "qj" => :business_entity_status_code,
1341
+ "qk" => :business_entity_filing_location_code,
1342
+ "qs" => :query_status,
1343
+ "qt" => :quantity_type_indicator,
1344
+ "r" => :coverage_modifier,
1345
+ "r1" => :upstream_rank_priority,
1346
+ "r2" => :receipt_rank_priority,
1347
+ "r3" => :delivery_rank_priority,
1348
+ "r4" => :downstream_rank_priority,
1349
+ "ra" => :religious_affiliation_code,
1350
+ "ras" => :receipt_acceptance_site_code,
1351
+ "rc" => :requirement_code,
1352
+ "rca" => :registered_contractor_activity_codeactivity_code_from_belgian_government_for_contractors,
1353
+ "rd" => :property_ownership_type_code,
1354
+ "re" => :property_type_code,
1355
+ "rec" => :race_or_ethnicity_collection_code,
1356
+ "red" => :reduction_reason_code,
1357
+ "ren" => :association_of_american_railroads_rate_edi_network_error_code,
1358
+ "ret" => :classification_of_race_or_ethnicity,
1359
+ "rfc" => :reference_number_format_code,
1360
+ "ri" => :residency_indicator,
1361
+ "rjc" => :reference_number_justification_code,
1362
+ "rq" => :testing_service_question_code_list,
1363
+ "rss" => :receipt_scheduling_status,
1364
+ "rt" => :request_type,
1365
+ "rtc" => :registration_type_code,
1366
+ "rum" => :refrigeration_unit_operating_mode_code,
1367
+ "rvc" => :reference_number_variation_code,
1368
+ "rx" => :national_council_for_prescription_drug_programs_rejectpayment_codes,
1369
+ "s" => :society_for_worldwide_interbank_financial_telecommunications_swift,
1370
+ "sa" => :student_activity_type_code,
1371
+ "sat" => :stock_actiontechnical_information_code,
1372
+ "sb" => :student_award_code,
1373
+ "sba" => :statistic_bundes_amt_sba_codeactivity_code_from_german_government,
1374
+ "sc" => :source,
1375
+ "sci" => :subsequent_cycle_indicator,
1376
+ "sd" => :international_classification_of_diseases_clinical_modification_icd9cm_secondary_diagnosis,
1377
+ "se" => :sound_code,
1378
+ "sec" => :stock_exchange_code,
1379
+ "set" => :settlement_type,
1380
+ "sf" => :run_type,
1381
+ "sg" => :source_of_deposit_code,
1382
+ "sh" => :source_of_lead_code,
1383
+ "shl" => :safety_hazard_lookup,
1384
+ "shm" => :accident_resulting_change_code,
1385
+ "shn" => :active_mitigation_consideration_code,
1386
+ "sho" => :activity_methods_code,
1387
+ "shp" => :analytical_method_code,
1388
+ "shq" => :atmospheric_stability_class_code,
1389
+ "shr" => :basis_of_estimate_code,
1390
+ "shs" => :certification_code,
1391
+ "sht" => :contributing_factor_code,
1392
+ "shu" => :control_device_type_code,
1393
+ "shv" => :designstandard_code,
1394
+ "shw" => :device_classification_code,
1395
+ "shx" => :discharge_indicator_code,
1396
+ "shy" => :discharge_quantity_range_code,
1397
+ "shz" => :nonreportable_discharge_indicator_code,
1398
+ "si" => :sic_standard_industrial_classificationidentifies_establishments_by_type_of_economic_activity,
1399
+ "sia" => :emergency_response_regulationstatute_code,
1400
+ "sib" => :emission_factor_type_code,
1401
+ "sic" => :emission_release_point_type_code,
1402
+ "sid" => :emission_source_type_code,
1403
+ "sie" => :emission_type_code,
1404
+ "sif" => :emission_unit_type_code,
1405
+ "sig" => :endpoint_code,
1406
+ "sih" => :environment_code,
1407
+ "sii" => :environmental_program_type_code,
1408
+ "sij" => :environmental_receptor_code,
1409
+ "sik" => :facility_category_code,
1410
+ "sil" => :facility_status_code,
1411
+ "sim" => :factor_calculation_method_code,
1412
+ "sin" => :frequency_of_analysis_code,
1413
+ "sio" => :generator_status_code,
1414
+ "sip" => :geometric_type_code,
1415
+ "siq" => :hazardous_waste_form_code,
1416
+ "sir" => :horizontal_datum_code,
1417
+ "sis" => :information_system_code,
1418
+ "sit" => :initiating_event_code,
1419
+ "siu" => :inventory_quantity_range_code,
1420
+ "siv" => :latitudelongitude_source_code,
1421
+ "siw" => :latitudelongitude_verification_code,
1422
+ "six" => :location_description_code,
1423
+ "siy" => :major_hazard_code,
1424
+ "siz" => :manufacturing_code,
1425
+ "sj" => :source_of_injury_code,
1426
+ "sja" => :material_classification_code,
1427
+ "sjb" => :material_code,
1428
+ "sjc" => :maximum_achievable_control_technology_code,
1429
+ "sjd" => :method_of_collection_code,
1430
+ "sje" => :mitigation_system_code,
1431
+ "sjf" => :model_used_code,
1432
+ "sjg" => :monitoringdetection_system_code,
1433
+ "sjh" => :monitoring_location_code,
1434
+ "sji" => :nongenerating_waste_code,
1435
+ "sjj" => :offsite_availability_code,
1436
+ "sjk" => :offsite_impact_code,
1437
+ "sjl" => :onsite_impact_code,
1438
+ "sjm" => :onsite_process_system_type_code,
1439
+ "sjn" => :origin_code,
1440
+ "sjo" => :parameter_code,
1441
+ "sjp" => :passive_mitigation_consideration_code,
1442
+ "sjq" => :permit_compliance_status_code,
1443
+ "sjr" => :physical_state_code,
1444
+ "sjs" => :point_of_measurement_code,
1445
+ "sjt" => :preservative_code,
1446
+ "sju" => :process_code,
1447
+ "sjv" => :process_control_code,
1448
+ "sjw" => :process_hazard_analysis_update_resulting_change_code,
1449
+ "sjx" => :process_hazards_analysis_technique_code,
1450
+ "sjy" => :public_receptor_code,
1451
+ "sjz" => :range_of_concentration_code,
1452
+ "ska" => :recovery_method_code,
1453
+ "skb" => :recycling_method_code,
1454
+ "skc" => :release_event_code,
1455
+ "skd" => :release_source_code,
1456
+ "ske" => :reliability_indicator_code,
1457
+ "skf" => :rule_effectiveness_method_code,
1458
+ "skg" => :sample_type_code,
1459
+ "skh" => :scenario_code,
1460
+ "ski" => :site_location_code,
1461
+ "skj" => :source_category_code,
1462
+ "skk" => :source_of_waste_generation_code,
1463
+ "skl" => :source_reduction_activity_code,
1464
+ "skm" => :system_type_code,
1465
+ "skn" => :time_period_code,
1466
+ "sko" => :topography_code,
1467
+ "skp" => :transfer_quantity_range_code,
1468
+ "skq" => :type_of_competency_testing_code,
1469
+ "skr" => :type_of_training_code,
1470
+ "sks" => :type_of_waste_management_code,
1471
+ "skt" => :use_code,
1472
+ "sku" => :waste_emanation_code,
1473
+ "skv" => :waste_management_status_code,
1474
+ "skw" => :waste_stream_code,
1475
+ "skx" => :waste_treatment_method_code,
1476
+ "sky" => :wind_direction_code,
1477
+ "skz" => :unit_of_measure_code,
1478
+ "sl" => :secondary_source_of_injury,
1479
+ "sla" => :shelflife_action_code,
1480
+ "sls" => :scheduling_status,
1481
+ "smb" => :statement_basis,
1482
+ "smc" => :special_material_content_code,
1483
+ "smd" => :sample_device,
1484
+ "smi" => :special_material_identification_code,
1485
+ "smt" => :sample_type,
1486
+ "so" => :solicitation_cancellation_reason,
1487
+ "sp" => :standard_occupation_classification_code,
1488
+ "spe" => :special_dating,
1489
+ "sr" => :statistical_administrative_information_code,
1490
+ "srl" => :special_requirement_lookup,
1491
+ "srr" => :supplemental_reduction_reason,
1492
+ "srt" => :storage_report_type,
1493
+ "ss" => :system_status,
1494
+ "ssc" => :supply_status_code,
1495
+ "st" => :special_marketing_type_codeidentifies_a_special_or_one_time_only_marketing_program_or_method,
1496
+ "stc" => :association_of_american_railroads_standard_transportation_commodity_code_master_description_information,
1497
+ "stf" => :forward_and_store_application_error_edit_codes,
1498
+ "sui" => :solicitedunsolicited_indicator,
1499
+ "svc" => :service_code,
1500
+ "swr" => :association_of_american_railroads_switch_release_codes,
1501
+ "t" => :personal_property_and_contents_code,
1502
+ "t00" => :commercial_vehicle_operations_safety_code,
1503
+ "t01" => :data_categories,
1504
+ "t02" => :event_codes,
1505
+ "t03" => :operation_type,
1506
+ "t04" => :accident_parameters,
1507
+ "t05" => :inspection_parameters,
1508
+ "t06" => :driver_parameters,
1509
+ "t07" => :view_parameters,
1510
+ "t08" => :vehicle_parameters,
1511
+ "t09" => :fleet_parameters,
1512
+ "t10" => :query_options,
1513
+ "t11" => :jurisdiction_type,
1514
+ "t12" => :single_state_registration_system_and_operating_authority_credential,
1515
+ "t13" => :commercial_vehicle_operations_insurance,
1516
+ "t14" => :commercial_vehicle_registration,
1517
+ "t15" => :hazardous_materials_credential,
1518
+ "t16" => :oversizeoverweight_credential,
1519
+ "t17" => :commercial_vehicle_tax,
1520
+ "t18" => :commercial_vehicle_title,
1521
+ "t19" => :commercial_drivers_license,
1522
+ "t20" => :commercial_vehicle_type,
1523
+ "t21" => :commercial_vehicle_operations_status_code,
1524
+ "t22" => :safety_and_fitness_electronic_record_systems_subscription_option,
1525
+ "t23" => :commercial_vehicle_operations_commodity_code,
1526
+ "t24" => :commercial_vehicle_operations_hazardous_material_code,
1527
+ "t25" => :safety_and_fitness_electronic_record_systems_error_code,
1528
+ "t26" => :commercial_vehicle_operations_jurisdiction_identifier_code,
1529
+ "t27" => :compliance_review_code,
1530
+ "t28" => :incident_condition_code,
1531
+ "t29" => :incident_related_action_code,
1532
+ "t30" => :incident_location_code,
1533
+ "t31" => :incident_consequence_code,
1534
+ "t32" => :road_characteristic_code,
1535
+ "t33" => :vehicle_occupant_code,
1536
+ "t34" => :package_failure_code,
1537
+ "t35" => :pedestrian_code,
1538
+ "tb" => :association_for_financial_professionals_service_code_and_bank_service_codesixdigit_association_for_financial_professionals_afp_service_code_and_a_proprietary_code_assigned_by_the_vendor,
1539
+ "tc" => :treatment_codes,
1540
+ "tcd" => :collision_industry_electronic_commerce_association_cieca__totals_code_list,
1541
+ "tcl" => :template_characteristic_lookup,
1542
+ "td" => :international_classification_of_diseases_clinical_modification_icd9cm_tertiary_diagnosis,
1543
+ "te" => :association_for_financial_professionals_service_codesixdigit_association_for_financial_professionals_afp_service_code,
1544
+ "tf" => :title_exception_and_requirement_code_list,
1545
+ "tfr" => :tax_or_fee_exemption_reason_code,
1546
+ "tg" => :title_document_code_list,
1547
+ "tl" => :tap_location,
1548
+ "tol" => :template_owner_lookup,
1549
+ "tp" => :tap_type,
1550
+ "tq" => :systemized_nomenclature_of_dentistry_snodent,
1551
+ "tr" => :report_code,
1552
+ "tt" => :natural_gas_transaction_type,
1553
+ "ttl" => :template_type_lookup,
1554
+ "tx" => :followup_code,
1555
+ "ty" => :reportable_event_code,
1556
+ "u" => :residential_and_commercial_room_code,
1557
+ "uer" => :unique_item_tracking_error_reject_code,
1558
+ "ujc" => :urgency_justification_code,
1559
+ "unp" => :unspsc_united_nations_products_and_services_classification_code,
1560
+ "upc" => :unclaimed_property_additions_deletions_and_deductions_codes,
1561
+ "upt" => :unclaimed_property_type_code,
1562
+ "ur" => :event_reappearance_code,
1563
+ "us" => :event_abatement_code,
1564
+ "ut" => :centers_for_medicare_and_medicaid_services_cms_durable_medical_equipment_regional_carrier_dmerc_certificate_of_medical_necessity_cmn_forms,
1565
+ "utc" => :unique_item_tracking_transaction_code,
1566
+ "uu" => :unit_code,
1567
+ "v" => :violation_type_code_list,
1568
+ "val" => :validation_code,
1569
+ "vp" => :collision_industry_electronic_commerce_association_cieca__vehicle_line_item_category_code,
1570
+ "w" => :court_issued_warrant_type_code,
1571
+ "wdl" => :when_discovered_lookup,
1572
+ "wrc" => :automotive_aftermarket_industry_association_aaia_warranty_code,
1573
+ "wsd" => :weapon_system_designator_code,
1574
+ "x" => :vehicle_class,
1575
+ "xd" => :export_declaration,
1576
+ "y" => :rental_charge,
1577
+ "z" => :cancellation_reason,
1578
+ "zz" => :mutually_defined,
1579
+ }
1580
+ }
1581
+ end
1582
+ end
1583
+ end