rbedi 0.0.0 → 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/edi +897 -0
- data/lib/rbedi/codes/aaa.rb +437 -0
- data/lib/rbedi/codes/ak1.rb +278 -0
- data/lib/rbedi/codes/ak2.rb +336 -0
- data/lib/rbedi/codes/ak9.rb +55 -0
- data/lib/rbedi/codes/bht.rb +706 -0
- data/lib/rbedi/codes/codeset.rb +27 -0
- data/lib/rbedi/codes/dmg.rb +1583 -0
- data/lib/rbedi/codes/dtp.rb +1342 -0
- data/lib/rbedi/codes/eb.rb +1511 -0
- data/lib/rbedi/codes/eq.rb +286 -0
- data/lib/rbedi/codes/ge.rb +14 -0
- data/lib/rbedi/codes/gs.rb +287 -0
- data/lib/rbedi/codes/hl.rb +273 -0
- data/lib/rbedi/codes/iea.rb +14 -0
- data/lib/rbedi/codes/ik3.rb +32 -0
- data/lib/rbedi/codes/ik4.rb +37 -0
- data/lib/rbedi/codes/ik5.rb +56 -0
- data/lib/rbedi/codes/isa.rb +137 -0
- data/lib/rbedi/codes/le.rb +13 -0
- data/lib/rbedi/codes/ls.rb +13 -0
- data/lib/rbedi/codes/msg.rb +25 -0
- data/lib/rbedi/codes/n3.rb +14 -0
- data/lib/rbedi/codes/n4.rb +706 -0
- data/lib/rbedi/codes/nm1.rb +1916 -0
- data/lib/rbedi/codes/per.rb +308 -0
- data/lib/rbedi/codes/ref.rb +1749 -0
- data/lib/rbedi/codes/se.rb +14 -0
- data/lib/rbedi/codes/segment_names.rb +44 -0
- data/lib/rbedi/codes/st.rb +336 -0
- data/lib/rbedi/codes/trn.rb +22 -0
- data/lib/rbedi/codes.rb +8 -0
- data/lib/rbedi/edi_date_time.rb +69 -0
- data/lib/rbedi/functional_group.rb +52 -0
- data/lib/rbedi/non_existent_element_error.rb +4 -0
- data/lib/rbedi/parser.rb +102 -0
- data/lib/rbedi/segment.rb +114 -0
- data/lib/rbedi/transaction_envelope.rb +77 -0
- data/lib/rbedi/transaction_set.rb +40 -0
- data/lib/rbedi.rb +20 -4
- metadata +79 -10
@@ -0,0 +1,1342 @@
|
|
1
|
+
module RBEDI
|
2
|
+
module Codes
|
3
|
+
module DTP
|
4
|
+
extend CodeSet
|
5
|
+
|
6
|
+
SEGMENT_POSITIONS = {
|
7
|
+
1 => :date_time_qualifier,
|
8
|
+
2 => :date_time_period_format_qualifier,
|
9
|
+
3 => :date_time_period
|
10
|
+
}
|
11
|
+
|
12
|
+
CODES = {
|
13
|
+
1 => {
|
14
|
+
"001" => :cancel_after,
|
15
|
+
"002" => :delivery_requested,
|
16
|
+
"003" => :invoice,
|
17
|
+
"004" => :purchase_order,
|
18
|
+
"005" => :sailing,
|
19
|
+
"006" => :sold,
|
20
|
+
"007" => :effective,
|
21
|
+
"008" => :purchase_order_received,
|
22
|
+
"009" => :process,
|
23
|
+
"010" => :requested_ship,
|
24
|
+
"011" => :shipped,
|
25
|
+
"012" => :terms_discount_due,
|
26
|
+
"013" => :terms_net_due,
|
27
|
+
"014" => :deferred_payment,
|
28
|
+
"015" => :promotion_start,
|
29
|
+
"016" => :promotion_end,
|
30
|
+
"017" => :estimated_delivery,
|
31
|
+
"018" => :available,
|
32
|
+
"019" => :unloaded,
|
33
|
+
"020" => :check,
|
34
|
+
"021" => :charge_back,
|
35
|
+
"022" => :freight_bill,
|
36
|
+
"023" => :promotion_order__start,
|
37
|
+
"024" => :promotion_order__end,
|
38
|
+
"025" => :promotion_ship__start,
|
39
|
+
"026" => :promotion_ship__end,
|
40
|
+
"027" => :promotion_requested_delivery__start,
|
41
|
+
"028" => :promotion_requested_delivery__end,
|
42
|
+
"029" => :promotion_performance__start,
|
43
|
+
"030" => :promotion_performance__end,
|
44
|
+
"031" => :promotion_invoice_performance__start,
|
45
|
+
"032" => :promotion_invoice_performance__end,
|
46
|
+
"033" => :promotion_floor_stock_protect__start,
|
47
|
+
"034" => :promotion_floor_stock_protect__end,
|
48
|
+
"035" => :delivered,
|
49
|
+
"036" => :expirationdate_coverage_expires,
|
50
|
+
"037" => :ship_not_before,
|
51
|
+
"038" => :ship_no_later,
|
52
|
+
"039" => :ship_week_of,
|
53
|
+
"040" => :status_after_and_including,
|
54
|
+
"041" => :status_prior_and_including,
|
55
|
+
"042" => :superseded,
|
56
|
+
"043" => :publication,
|
57
|
+
"044" => :settlement_date_as_specified_by_the_originator,
|
58
|
+
"045" => :endorsement_date,
|
59
|
+
"046" => :field_failurewhen_a_component_causes_a_system_to_fail_at_a_customer_site,
|
60
|
+
"047" => :functional_testwhen_assembly_was_tested,
|
61
|
+
"048" => :system_testwhen_the_finished_system_was_tested,
|
62
|
+
"049" => :prototype_testwhen_the_prototype_system_or_assembly_was_tested,
|
63
|
+
"050" => :received,
|
64
|
+
"051" => :cumulative_quantity_start,
|
65
|
+
"052" => :cumulative_quantity_end,
|
66
|
+
"053" => :buyers_local,
|
67
|
+
"054" => :sellers_local,
|
68
|
+
"055" => :confirmed,
|
69
|
+
"056" => :estimated_port_of_entry,
|
70
|
+
"057" => :actual_port_of_entry,
|
71
|
+
"058" => :customs_clearance,
|
72
|
+
"059" => :inland_ship,
|
73
|
+
"060" => :engineering_change_level,
|
74
|
+
"061" => :cancel_if_not_delivered_by,
|
75
|
+
"062" => :blueprint,
|
76
|
+
"063" => :do_not_deliver_after,
|
77
|
+
"064" => :do_not_deliver_before,
|
78
|
+
"065" => :first_schedule_delivery,
|
79
|
+
"066" => :first_schedule_ship,
|
80
|
+
"067" => :current_schedule_delivery,
|
81
|
+
"068" => :current_schedule_ship,
|
82
|
+
"069" => :promised_for_delivery,
|
83
|
+
"070" => :scheduled_for_delivery_after_and_including,
|
84
|
+
"071" => :requested_for_delivery_after_and_including,
|
85
|
+
"072" => :promised_for_delivery_after_and_including,
|
86
|
+
"073" => :scheduled_for_delivery_prior_to_and_including,
|
87
|
+
"074" => :requested_for_delivery_prior_to_and_including,
|
88
|
+
"075" => :promised_for_delivery_prior_to_and_including,
|
89
|
+
"076" => :scheduled_for_delivery_week_of,
|
90
|
+
"077" => :requested_for_delivery_week_of,
|
91
|
+
"078" => :promised_for_delivery_week_of,
|
92
|
+
"079" => :promised_for_shipment,
|
93
|
+
"080" => :scheduled_for_shipment_after_and_including,
|
94
|
+
"081" => :requested_for_shipment_after_and_including,
|
95
|
+
"082" => :promised_for_shipment_after_and_including,
|
96
|
+
"083" => :scheduled_for_shipment_prior_to_and_including,
|
97
|
+
"084" => :requested_for_shipment_prior_to_and_including,
|
98
|
+
"085" => :promised_for_shipment_prior_to_and_including,
|
99
|
+
"086" => :scheduled_for_shipment_week_of,
|
100
|
+
"087" => :requested_for_shipment_week_of,
|
101
|
+
"088" => :promised_for_shipment_week_of,
|
102
|
+
"089" => :inquiry,
|
103
|
+
"090" => :report_start,
|
104
|
+
"091" => :report_end,
|
105
|
+
"092" => :contract_effective,
|
106
|
+
"093" => :contract_expiration,
|
107
|
+
"094" => :manufacture,
|
108
|
+
"095" => :bill_of_lading,
|
109
|
+
"096" => :discharge,
|
110
|
+
"097" => :transaction_creation,
|
111
|
+
"098" => :bid_effective,
|
112
|
+
"099" => :bid_open_date_bids_will_be_opened,
|
113
|
+
"100" => :no_shipping_schedule_established_as_of,
|
114
|
+
"101" => :no_production_schedule_established_as_of,
|
115
|
+
"102" => :issue,
|
116
|
+
"103" => :award,
|
117
|
+
"104" => :system_survey,
|
118
|
+
"105" => :quality_rating,
|
119
|
+
"106" => :required_by,
|
120
|
+
"107" => :deposit,
|
121
|
+
"108" => :postmark,
|
122
|
+
"109" => :received_at_lockbox,
|
123
|
+
"110" => :originally_scheduled_ship,
|
124
|
+
"111" => :manifestship_notice,
|
125
|
+
"112" => :buyers_dock,
|
126
|
+
"113" => :sample_required,
|
127
|
+
"114" => :tooling_required,
|
128
|
+
"115" => :sample_available,
|
129
|
+
"116" => :scheduled_interchange_delivery,
|
130
|
+
"118" => :requested_pickup,
|
131
|
+
"119" => :test_performed,
|
132
|
+
"120" => :control_plan,
|
133
|
+
"121" => :feasibility_sign_off,
|
134
|
+
"122" => :failure_mode_effective,
|
135
|
+
"124" => :group_contract_effective,
|
136
|
+
"125" => :group_contract_expiration,
|
137
|
+
"126" => :wholesale_contract_effective,
|
138
|
+
"127" => :wholesale_contract_expiration,
|
139
|
+
"128" => :replacement_effective,
|
140
|
+
"129" => :customer_contract_effective,
|
141
|
+
"130" => :customer_contract_expiration,
|
142
|
+
"131" => :item_contract_effective,
|
143
|
+
"132" => :item_contract_expiration,
|
144
|
+
"133" => :accounts_receivable__statement_date,
|
145
|
+
"134" => :ready_for_inspection,
|
146
|
+
"135" => :booking,
|
147
|
+
"136" => :technical_rating,
|
148
|
+
"137" => :delivery_rating,
|
149
|
+
"138" => :commercial_rating,
|
150
|
+
"139" => :estimated,
|
151
|
+
"140" => :actual,
|
152
|
+
"141" => :assignedwhen_the_service_request_was_supplied_to_the_service_provider_or_agency,
|
153
|
+
"142" => :losswhen_the_insured_experienced_the_theft_damage_or_casualty_to_a_given_property,
|
154
|
+
"143" => :due_date_of_first_payment_to_principal_and_interestthe_date_first_mortgage_payment_on_the_principal_and_interest_on_a_mortgage_loan_is_due,
|
155
|
+
"144" => :estimated_acceptance,
|
156
|
+
"145" => :opening_date,
|
157
|
+
"146" => :closing_date,
|
158
|
+
"147" => :due_date_last_complete_installment_paidthe_date_last_complete_principal_and_interest_mortgage_payment_made_was_due,
|
159
|
+
"148" => :date_of_local_office_approval_of_conveyance_of_damaged_real_estate_propertythe_date_local_office_approves_of_the_transfer_of_damaged_property,
|
160
|
+
"149" => :date_deed_filed_for_recordthe_date_the_formal_document_deed_used_to_transfer_title_to_real_estate_is_filed_for_record_with_the_recording_authority,
|
161
|
+
"150" => :service_period_start,
|
162
|
+
"151" => :service_period_end,
|
163
|
+
"152" => :effective_date_of_changedate_on_which_the_change_went_into_effect,
|
164
|
+
"153" => :service_interruption,
|
165
|
+
"154" => :adjustment_period_start,
|
166
|
+
"155" => :adjustment_period_end,
|
167
|
+
"156" => :allotment_period_start,
|
168
|
+
"157" => :test_period_start,
|
169
|
+
"158" => :test_period_ending,
|
170
|
+
"159" => :bid_price_exception,
|
171
|
+
"160" => :samples_to_be_returned_by,
|
172
|
+
"161" => :loaded_on_vessel,
|
173
|
+
"162" => :pending_archive,
|
174
|
+
"163" => :actual_archive,
|
175
|
+
"164" => :first_issue,
|
176
|
+
"165" => :final_issue,
|
177
|
+
"166" => :message,
|
178
|
+
"167" => :most_recent_revision_or_initial_version,
|
179
|
+
"168" => :release,
|
180
|
+
"169" => :product_availability_date,
|
181
|
+
"170" => :supplemental_issue,
|
182
|
+
"171" => :revision,
|
183
|
+
"172" => :correction,
|
184
|
+
"173" => :week_ending,
|
185
|
+
"174" => :month_ending,
|
186
|
+
"175" => :cancel_if_not_shipped_by,
|
187
|
+
"176" => :expedited_on,
|
188
|
+
"177" => :cancellationdate_on_which_the_coverage_or_service_is_no_longer_in_force,
|
189
|
+
"178" => :hold_as_of,
|
190
|
+
"179" => :hold_as_stock_as_of,
|
191
|
+
"180" => :no_promise_as_of,
|
192
|
+
"181" => :stop_work_as_of,
|
193
|
+
"182" => :will_advise_as_of,
|
194
|
+
"183" => :connection,
|
195
|
+
"184" => :inventory,
|
196
|
+
"185" => :vessel_registry,
|
197
|
+
"186" => :invoice_period_startwhen_the_billing_period_covered_by_an_invoice_begins,
|
198
|
+
"187" => :invoice_period_endwhen_the_billing_period_covered_by_an_invoice_ends,
|
199
|
+
"188" => :credit_advice,
|
200
|
+
"189" => :debit_advice,
|
201
|
+
"190" => :released_to_vessel,
|
202
|
+
"191" => :material_specification,
|
203
|
+
"192" => :delivery_ticket,
|
204
|
+
"193" => :period_start,
|
205
|
+
"194" => :period_end,
|
206
|
+
"195" => :contract_reopen,
|
207
|
+
"196" => :start,
|
208
|
+
"197" => :end,
|
209
|
+
"198" => :completiondate_when_the_activity_was_completed,
|
210
|
+
"199" => :seal,
|
211
|
+
"200" => :assembly_start,
|
212
|
+
"201" => :acceptance,
|
213
|
+
"202" => :master_lease_agreement,
|
214
|
+
"203" => :first_producedthe_date_of_first_production_of_hydrocarbon_from_a_well_for_the_purpose_of_sales_or_onlease_use,
|
215
|
+
"204" => :official_rail_car_interchange_either_actual_or_agreed_upon,
|
216
|
+
"205" => :transmitted,
|
217
|
+
"206" => :status_outside_processorwhen_outside_processor_established_the_status_of_the_material,
|
218
|
+
"207" => :status_commercialwhen_producer_established_the_status_of_the_material,
|
219
|
+
"208" => :lot_number_expiration,
|
220
|
+
"209" => :contract_performance_start,
|
221
|
+
"210" => :contract_performance_delivery,
|
222
|
+
"211" => :service_requestedwhen_warranty_repair_service_was_requested,
|
223
|
+
"212" => :returned_to_customer,
|
224
|
+
"213" => :adjustment_to_bill_dated,
|
225
|
+
"214" => :date_of_repairservice,
|
226
|
+
"215" => :interruption_startwhen_an_interruption_in_the_airplane_fueling_process_began,
|
227
|
+
"216" => :interruption_end,
|
228
|
+
"217" => :spudwhen_drilling_started_for_a_well,
|
229
|
+
"218" => :initial_completionwhen_well_was_originally_completed,
|
230
|
+
"219" => :plugged_and_abandonedwhen_a_well_was_plugged_and_abandoned_after_discontinuing_to_produce,
|
231
|
+
"220" => :penaltyrange_of_penalty_period,
|
232
|
+
"221" => :penalty_begindate_on_which_penalty_period_begins,
|
233
|
+
"222" => :birth,
|
234
|
+
"223" => :birth_certificate,
|
235
|
+
"224" => :adoption,
|
236
|
+
"225" => :christening,
|
237
|
+
"226" => :lease_commencement,
|
238
|
+
"227" => :lease_term_start,
|
239
|
+
"228" => :lease_term_end,
|
240
|
+
"229" => :rent_start,
|
241
|
+
"230" => :installation,
|
242
|
+
"231" => :progress_payment,
|
243
|
+
"232" => :claim_statement_period_start,
|
244
|
+
"233" => :claim_statement_period_end,
|
245
|
+
"234" => :settlement_date,
|
246
|
+
"235" => :delayed_billing_not_delayed_payment,
|
247
|
+
"236" => :lender_credit_check,
|
248
|
+
"237" => :student_signed,
|
249
|
+
"238" => :schedule_releaseplanned_release_date_for_an_item_or_product,
|
250
|
+
"239" => :baselinethe_baseline_or_original_plan_that_progress_is_measured_against,
|
251
|
+
"240" => :baseline_startthe_start_date_of_baseline_or_original_plan,
|
252
|
+
"241" => :baseline_completethe_complete_date_of_the_baseline_or_original_plan,
|
253
|
+
"242" => :actual_startthe_actual_start_date_for_a_task_or_activity,
|
254
|
+
"243" => :actual_completethe_actual_complete_date_for_a_task_or_activity,
|
255
|
+
"244" => :estimated_startthe_revised_plan_or_estimate_of_the_start_date_for_a_task_or_activity,
|
256
|
+
"245" => :estimated_completionthe_revised_plan_or_estimate_of_the_complete_date_for_a_task_or_activity,
|
257
|
+
"246" => :start_no_earlier_thanfixed_start_date_for_a_task_or_activity__cannot_begin_before_this_date,
|
258
|
+
"247" => :start_no_later_thanfixed_start_date_for_a_task_or_activity__cannot_begin_after_this_date,
|
259
|
+
"248" => :finish_no_later_thanfixed_finish_date_for_a_task_or_activity__cannot_end_after_this_date,
|
260
|
+
"249" => :finish_no_earlier_thanfixed_finish_date_for_a_task_or_activity__cannot_end_before_this_date,
|
261
|
+
"250" => :mandatory_or_target_startfixed_start_date__must_begin_on_this_date,
|
262
|
+
"251" => :mandatory_or_target_finishfixed_finish_date__must_finish_on_this_date,
|
263
|
+
"252" => :early_startthe_earliest_date_a_task_or_activity_can_begin,
|
264
|
+
"253" => :early_finishthe_earliest_date_a_task_or_activity_can_end,
|
265
|
+
"254" => :late_startthe_latest_date_a_task_or_activity_can_begin,
|
266
|
+
"255" => :late_finishthe_latest_date_a_task_or_activity_can_end,
|
267
|
+
"256" => :scheduled_startthe_scheduled_start_for_a_task_or_activity_based_on_resource_needs,
|
268
|
+
"257" => :scheduled_finishthe_scheduled_finish_for_a_task_or_activity_based_on_resource_needs,
|
269
|
+
"258" => :original_early_startthe_saved_baseline_or_planned_early_start_before_current_changes,
|
270
|
+
"259" => :original_early_finishthe_saved_baseline_or_planned_early_finish_before_current_changes,
|
271
|
+
"260" => :rest_daya_nonworking_day_such_a_saturday_or_sunday,
|
272
|
+
"261" => :rest_startthe_beginning_of_a_range_for_rest_days_from,
|
273
|
+
"262" => :rest_finishthe_end_of_a_range_of_rest_days_to,
|
274
|
+
"263" => :holidaya_nonworking_day_reserved_for_a_company_or_national_holiday,
|
275
|
+
"264" => :holiday_startthe_beginning_of_a_range_for_holidays_from,
|
276
|
+
"265" => :holiday_finishthe_end_of_a_range_of_holidays_to,
|
277
|
+
"266" => :basethe_start_of_base_date_for_a_calendar_reference__all_dates_fall_after_it,
|
278
|
+
"267" => :timenowthe_current_reporting_period_reference_or_current_status,
|
279
|
+
"268" => :end_date_of_support,
|
280
|
+
"269" => :date_account_matures,
|
281
|
+
"270" => :date_filed,
|
282
|
+
"271" => :penalty_enddate_on_which_penalty_period_ends,
|
283
|
+
"272" => :exit_plant_datedate_at_which_the_product_leaves_the_manufacturing_site,
|
284
|
+
"273" => :latest_on_board_carrier_datelatest_date_on_which_the_cargo_must_be_on_board_the_carrier,
|
285
|
+
"274" => :requested_departure_date,
|
286
|
+
"275" => :approveddate_report_was_approved_by_contractor_representative,
|
287
|
+
"276" => :contract_startthe_start_date_for_a_contract,
|
288
|
+
"277" => :contract_definitionthe_date_the_contract_was_definitized,
|
289
|
+
"278" => :last_item_deliverythe_date_the_last_item_will_be_delivered_to_the_customer,
|
290
|
+
"279" => :contract_completionthe_finish_date_for_a_contract,
|
291
|
+
"280" => :date_course_of_orthodontics_treatment_began_or_is_expected_to_begin,
|
292
|
+
"281" => :over_target_baseline_monththe_date_a_budget_baseline_went_over_the_target_budget_amount,
|
293
|
+
"282" => :previous_reportthe_date_a_previous_report_was_submitted,
|
294
|
+
"283" => :funds_appropriation__startthe_date_that_funds_appropriation_begins,
|
295
|
+
"284" => :funds_appropriation__endthe_date_that_funds_appropriation_ends,
|
296
|
+
"285" => :employment_or_hiredate_on_which_the_subscriber_or_dependent_is_hired,
|
297
|
+
"286" => :retirementdate_on_which_the_subscriber_became_retired,
|
298
|
+
"287" => :medicarerange_of_dates_when_the_subscriber_or_dependent_is_eligible_to_receive_medicare_benefits,
|
299
|
+
"288" => :consolidated_omnibus_budget_reconciliation_act_cobrarange_of_cobra_coverage,
|
300
|
+
"289" => :premium_paid_to_daterange_of_dates_for_which_premium_has_been_paid,
|
301
|
+
"290" => :coordination_of_benefits,
|
302
|
+
"291" => :plan,
|
303
|
+
"292" => :benefit,
|
304
|
+
"293" => :educationrange_of_dates_when_the_subscriber_or_dependent_is_a_student,
|
305
|
+
"294" => :earnings_effective_datedate_on_which_earnings_become_effective_for_applicable_benefits,
|
306
|
+
"295" => :primary_care_providerrange_of_dates_for_which_the_services_of_the_primary_care_provider_are_in_effect,
|
307
|
+
"296" => :initial_disability_period_return_to_work,
|
308
|
+
"297" => :initial_disability_period_last_day_worked,
|
309
|
+
"298" => :latest_absencelatest_occurrence_of_which_the_subscriber_did_not_report_to_work,
|
310
|
+
"299" => :illness,
|
311
|
+
"300" => :enrollment_signature_datedate_subscriber_or_dependent_signed_policy_enrollment_card,
|
312
|
+
"301" => :consolidated_omnibus_budget_reconciliation_act_cobra_qualifying_eventdate_of_the_qualifying_event_which_initiated_cobra_benefits,
|
313
|
+
"302" => :maintenancedate_on_which_the_maintenance_was_performed,
|
314
|
+
"303" => :maintenance_effectivedate_on_which_the_maintenance_is_effective,
|
315
|
+
"304" => :latest_visit_or_consultationdate_subscriber_or_dependent_last_visited_or_consulted_with_a_physician,
|
316
|
+
"305" => :net_credit_service_datedate_assigned_by_the_employer_to_an_employee_who_previously_worked_for_them,
|
317
|
+
"306" => :adjustment_effective_datedate_on_which_the_adjustment_went_into_effect,
|
318
|
+
"307" => :eligibility,
|
319
|
+
"308" => :preaward_survey,
|
320
|
+
"309" => :plan_terminationdate_on_which_the_plan_terminated,
|
321
|
+
"310" => :date_of_closingthe_date_a_property_is_sold,
|
322
|
+
"311" => :latest_receiving_datecutoff_date,
|
323
|
+
"312" => :salary_deferraldate_on_which_the_subscriber_begins_to_defer_a_portion_of_their_salary,
|
324
|
+
"313" => :cyclerange_of_dates_as_they_pertain_to_a_period_of_time,
|
325
|
+
"314" => :disabilityrange_of_dates_on_which_the_physical_or_mental_condition_rendered_the_subscriber_or_dependent_disabled,
|
326
|
+
"315" => :offsetrange_of_dates_for_which_the_subscriber_or_dependent_will_be_receiving_other_income,
|
327
|
+
"316" => :prior_incorrect_date_of_birththe_incorrect_date_of_birth_that_was_previously_transmitted,
|
328
|
+
"317" => :corrected_date_of_birthreplaces_previously_transmitted_incorrect_date_of_birth,
|
329
|
+
"318" => :added,
|
330
|
+
"319" => :failed,
|
331
|
+
"320" => :date_foreclosure_proceedings_institutedthe_date_the_first_legal_action_is_taken_to_terminate_an_owners_interest_in_realty_begins,
|
332
|
+
"321" => :purchaseddate_productextended_coverage_was_purchased,
|
333
|
+
"322" => :put_into_servicedate_product_subassembly_or_replacement_part_was_put_inservice,
|
334
|
+
"323" => :replaced,
|
335
|
+
"324" => :returned,
|
336
|
+
"325" => :disbursement_date,
|
337
|
+
"326" => :guarantee_date,
|
338
|
+
"327" => :quarter_ending,
|
339
|
+
"328" => :changed,
|
340
|
+
"329" => :terminatedany_condition_previously_reported_by_the_carrier_as_preventing_the_completion_of_a_move_or_service_has_been_terminated,
|
341
|
+
"330" => :referral_datethe_date_when_an_educational_official_or_teacher_recommends_that_a_student_be_evaluated_for_placement_in_a_special_education_or_other_program,
|
342
|
+
"331" => :evaluation_datethe_date_on_which_a_student_was_assessed_for_placement_in_a_special_education_or_other_program,
|
343
|
+
"332" => :placement_datethe_date_which_identifies_when_a_student_was_enrolled_in_a_special_education_or_other_program,
|
344
|
+
"333" => :individual_education_plan_iepthe_date_on_which_the_plan_specifying_the_special_education_instruction_and_services_which_a_student_is_to_receive_was_approved,
|
345
|
+
"334" => :reevaluation_datethe_date_on_which_the_students_placement_in_special_education_or_other_programs_will_be_reassessed,
|
346
|
+
"335" => :dismissal_datethe_date_on_which_the_student_exited_from_a_special_education_or_other_program,
|
347
|
+
"336" => :employment_begindate_on_which_the_subscriber_or_dependent_became_employed,
|
348
|
+
"337" => :employment_enddate_on_which_the_subscriber_or_dependent_ceased_to_be_employed,
|
349
|
+
"338" => :medicare_begindate_on_which_medicare_benefits_went_into_effect,
|
350
|
+
"339" => :medicare_enddate_on_which_medicare_benefits_ceased_to_be_in_effect,
|
351
|
+
"340" => :consolidated_omnibus_budget_reconciliation_act_cobra_begindate_on_which_cobra_benefits_begin,
|
352
|
+
"341" => :consolidated_omnibus_budget_reconciliation_act_cobra_enddate_on_which_cobra_benefits_end,
|
353
|
+
"342" => :premium_paid_to_date_begindate_for_which_premium_began_to_be_applied,
|
354
|
+
"343" => :premium_paid_to_date_enddate_for_which_premium_is_paid_through,
|
355
|
+
"344" => :coordination_of_benefits_begindate_on_which_coordination_of_benefits_begin,
|
356
|
+
"345" => :coordination_of_benefits_enddate_on_which_coordination_of_benefits_end,
|
357
|
+
"346" => :plan_begindate_on_which_the_plan_begins,
|
358
|
+
"347" => :plan_enddate_on_which_plan_ends,
|
359
|
+
"348" => :benefit_begindate_on_which_the_subscribers_or_dependents_benefit_begin,
|
360
|
+
"349" => :benefit_enddate_on_which_the_subscribers_or_dependents_benefit_ends,
|
361
|
+
"350" => :education_begindate_on_which_the_subscriber_or_dependent_became_a_student,
|
362
|
+
"351" => :education_enddate_on_which_the_subscriber_or_dependent_ceased_to_be_a_student,
|
363
|
+
"352" => :primary_care_provider_begindate_on_which_the_subscribers_or_dependents_primary_care_provider_became_effective,
|
364
|
+
"353" => :primary_care_provider_enddate_on_which_the_primary_care_providers_service_ended,
|
365
|
+
"354" => :illness_begindate_on_which_illness_began,
|
366
|
+
"355" => :illness_enddate_on_which_illness_ended,
|
367
|
+
"356" => :eligibility_begindate_on_which_eligibility_begins,
|
368
|
+
"357" => :eligibility_enddate_on_which_eligibility_ends,
|
369
|
+
"358" => :cycle_begindate_on_which_the_cycle_begins,
|
370
|
+
"359" => :cycle_enddate_on_which_the_cycle_ends,
|
371
|
+
"360" => :initial_disability_period_startdate_on_which_the_disability_begins,
|
372
|
+
"361" => :initial_disability_period_enddate_on_which_the_disability_ends,
|
373
|
+
"362" => :offset_begindate_subscriber_or_dependent_begins_receiving_other_income,
|
374
|
+
"363" => :offset_enddate_other_income_benefits_cease,
|
375
|
+
"364" => :plan_period_election_begindate_on_which_the_pledged_contribution_begins,
|
376
|
+
"365" => :plan_period_election_enddate_on_which_the_pledged_contribution_ended,
|
377
|
+
"366" => :plan_period_electionrange_of_dates_for_which_the_subscriber_has_pledged_to_contribute_toward_a_benefit,
|
378
|
+
"367" => :due_to_customerdate_an_item_is_due_to_a_customer,
|
379
|
+
"368" => :submittaldate_an_item_was_submitted_to_a_customer,
|
380
|
+
"369" => :estimated_departure_date,
|
381
|
+
"370" => :actual_departure_date,
|
382
|
+
"371" => :estimated_arrival_date,
|
383
|
+
"372" => :actual_arrival_date,
|
384
|
+
"373" => :order_start,
|
385
|
+
"374" => :order_endpoint_after_which_data_can_no_longer_be_used_or_becomes_invalid_for_use,
|
386
|
+
"375" => :delivery_startthe_date_that_deliveries_will_begin,
|
387
|
+
"376" => :delivery_endthe_date_that_deliveries_will_end,
|
388
|
+
"377" => :contract_costs_throughdate_through_which_the_costs_reported_in_the_contractors_request_for_progress_payment_are_current,
|
389
|
+
"378" => :financial_information_submissiondate_of_the_submission_of_contractor_financial_information,
|
390
|
+
"379" => :business_termination,
|
391
|
+
"380" => :applicant_signed,
|
392
|
+
"381" => :cosigner_signed,
|
393
|
+
"382" => :enrollment,
|
394
|
+
"383" => :adjusted_hiredate_of_rehire_is_adjusted_to_give_an_employee_credit_for_prior_years_of_service_after_a_break_in_service_has_occurred,
|
395
|
+
"384" => :credited_servicerange_of_employment_service_used_to_determine_the_amount_of_plan_benefits_due_the_employee,
|
396
|
+
"385" => :credited_service_beginthe_start_date_from_which_an_employees_length_of_service_as_defined_in_the_plan_document_will_be_calculated,
|
397
|
+
"386" => :credited_service_endthe_end_date_to_be_used_in_the_calculation_of_an_employees_length_of_service_as_defined_in_the_plan_document,
|
398
|
+
"387" => :deferred_distributiondate_to_which_the_participant_has_elected_to_defer_the_distribution_of_plan_benefits_for_lump_sum_payments,
|
399
|
+
"388" => :payment_commencementdate_of_the_initial_benefit_payment_for_installment_payments,
|
400
|
+
"389" => :payroll_periodthe_applicable_payroll_date_for_the_financial_transaction,
|
401
|
+
"390" => :payroll_period_beginthe_start_date_of_the_payroll_cycle_for_the_financial_transaction,
|
402
|
+
"391" => :payroll_period_endthe_end_date_of_the_payroll_cycle_for_the_financial_transaction,
|
403
|
+
"392" => :plan_entrydate_the_employees_participation_in_the_plan_is_effective,
|
404
|
+
"393" => :plan_participation_suspensiondate_the_participant_is_suspended_from_the_plan,
|
405
|
+
"394" => :rehiredate_the_participant_is_rehired_after_termination,
|
406
|
+
"395" => :reterminationdate_the_participant_ends_employment_after_being_rehired,
|
407
|
+
"396" => :terminationdate_the_participant_ends_employment,
|
408
|
+
"397" => :valuationthe_date_when_the_participants_total_account_balance_is_calculated,
|
409
|
+
"398" => :vesting_servicerange_of_employment_service_used_to_determine_vesting_for_distribution_of_plan_benefits,
|
410
|
+
"399" => :vesting_service_beginthe_start_date_from_which_an_employees_vesting_percentage_as_defined_in_the_plan_document_will_be_calculated,
|
411
|
+
"400" => :vesting_service_end,
|
412
|
+
"401" => :duplicate_bill,
|
413
|
+
"402" => :adjustment_promised,
|
414
|
+
"403" => :adjustment_processed,
|
415
|
+
"404" => :year_ending,
|
416
|
+
"405" => :productionused_to_identify_dates_and_times_that_operations_or_processes_were_performed,
|
417
|
+
"406" => :material_classificationused_to_identify_dates_and_times_materials_were_classified_or_reclassified,
|
418
|
+
"408" => :weighed,
|
419
|
+
"409" => :date_of_deed_in_lieuthe_date_a_voluntary_conveyance_of_a_property_by_deed_in_lieu_is_recorded,
|
420
|
+
"410" => :date_of_firm_commitmentthe_date_an_obligation_to_ensure_the_mortgage_is_issued,
|
421
|
+
"411" => :expiration_date_of_extension_to_foreclosethe_last_day_of_a_given_time_limit_to_commence_foreclosure,
|
422
|
+
"412" => :date_of_notice_to_conveythe_date_of_the_authorization_to_assign_the_contractual_rights_of_a_mortgage,
|
423
|
+
"413" => :date_of_release_of_bankruptcythe_date_of_release_from_bankruptcy_status,
|
424
|
+
"414" => :optimistic_early_startbest_case_earliest_date_a_task_or_activity_can_begin,
|
425
|
+
"415" => :optimistic_early_finishbest_case_earliest_date_a_task_or_activity_can_end,
|
426
|
+
"416" => :optimistic_late_startbest_case_latest_date_a_task_or_activity_can_begin,
|
427
|
+
"417" => :optimistic_late_finishbest_case_latest_date_a_task_or_activity_can_end,
|
428
|
+
"418" => :most_likely_early_startmost_likely_earliest_date_a_task_or_activity_can_begin,
|
429
|
+
"419" => :most_likely_early_finishmost_likely_earliest_date_a_task_or_activity_can_end,
|
430
|
+
"420" => :most_likely_late_startmost_likely_latest_date_a_task_or_activity_can_begin,
|
431
|
+
"421" => :most_likely_late_finishmost_likely_latest_date_a_task_or_activity_can_end,
|
432
|
+
"422" => :pessimistic_early_startworst_case_earliest_date_a_task_or_activity_can_begin,
|
433
|
+
"423" => :pessimistic_early_finishworst_case_earliest_date_a_task_or_activity_can_end,
|
434
|
+
"424" => :pessimistic_late_startworst_case_latest_date_a_task_or_activity_can_begin,
|
435
|
+
"425" => :pessimistic_late_finishworst_case_latest_date_a_task_or_activity_can_end,
|
436
|
+
"426" => :first_payment_due,
|
437
|
+
"427" => :first_interest_payment_due,
|
438
|
+
"428" => :subsequent_interest_payment_due,
|
439
|
+
"429" => :irregular_interest_payment_due,
|
440
|
+
"430" => :guarantor_received,
|
441
|
+
"431" => :onset_of_current_symptoms_or_illnessdate_first_symptoms_appeared,
|
442
|
+
"432" => :submissiondate_on_which_claim_billing_information_was_sent_to_payer,
|
443
|
+
"433" => :removed,
|
444
|
+
"434" => :statementdate_on_which_billing_document_was_created,
|
445
|
+
"435" => :admissiondate_of_entrance_to_a_health_care_establishment,
|
446
|
+
"436" => :insurance_card,
|
447
|
+
"437" => :spouse_retirementdate_on_which_patients_husband_or_wife_has_retired_from_his_or_her_place_of_employment,
|
448
|
+
"438" => :onset_of_similar_symptoms_or_illnessdate_symptoms_related_to_current_illness_first_appeared,
|
449
|
+
"439" => :accidentdate_mishap_occurred,
|
450
|
+
"440" => :release_of_informationdate_patient_signified_it_was_acceptable_to_distribute_pertinent_information_to_other_parties,
|
451
|
+
"441" => :prior_placementdate_medical_device_was_last_placed_or_arranged,
|
452
|
+
"442" => :date_of_death,
|
453
|
+
"443" => :peer_review_organization_pro_approved_staystart_and_end_date_of_approved_confinement,
|
454
|
+
"444" => :first_visit_or_consultationdate_patient_first_sought_medical_assistance,
|
455
|
+
"445" => :initial_placementdate_medical_device_was_positioned_or_arranged,
|
456
|
+
"446" => :replacementdate_medical_device_was_reinstalled_or_rearranged,
|
457
|
+
"447" => :occurrencedate_on_which_an_event_happened,
|
458
|
+
"448" => :occurrence_spanstart_and_end_date_on_which_a_span_of_events_happened,
|
459
|
+
"449" => :occurrence_span_fromdate_on_which_span_of_events_started,
|
460
|
+
"450" => :occurrence_span_todate_on_which_span_of_events_ended,
|
461
|
+
"451" => :initial_fee_duedate_the_first_of_one_or_more_payments_is_due,
|
462
|
+
"452" => :appliance_placementdate_orthodontic_devices_were_arranged,
|
463
|
+
"453" => :acute_manifestation_of_a_chronic_conditiondate_serious_symptoms_were_exhibited_for_a_long_term_illness,
|
464
|
+
"454" => :initial_treatmentdate_medical_treatment_first_began,
|
465
|
+
"455" => :last_xraydate_of_the_most_recent_xray,
|
466
|
+
"456" => :surgerydate_on_which_operation_was_performed,
|
467
|
+
"457" => :continuous_passive_motion_cpmdate_patient_began_using_a_device_to_provide_uninterrupted_motion_not_produced_by_active_efforts,
|
468
|
+
"458" => :certification,
|
469
|
+
"459" => :nursing_home_fromdate_on_which_patient_entered_nursing_home,
|
470
|
+
"460" => :nursing_home_todate_on_which_patient_was_released_from_nursing_home,
|
471
|
+
"461" => :last_certificationdate_of_the_most_recent_document_attesting_to_a_fact,
|
472
|
+
"462" => :date_of_local_office_approval_of_conveyance_of_occupied_real_estate_propertythe_date_local_office_approves_of_the_transfer_of_an_occupied_property,
|
473
|
+
"463" => :begin_therapydate_treatment_of_physical_or_mental_disorder_started,
|
474
|
+
"464" => :oxygen_therapy_fromdate_treatment_with_oxygen_started,
|
475
|
+
"465" => :oxygen_therapy_todate_treatment_with_oxygen_ceased,
|
476
|
+
"466" => :oxygen_therapybegin_and_end_dates_of_treatment_with_oxygen,
|
477
|
+
"467" => :signaturedate_on_which_the_accompanying_signature_was_received,
|
478
|
+
"468" => :prescription_filldate_on_which_drug_order_was_filled,
|
479
|
+
"469" => :provider_signaturedate_supplier_of_medical_service_signified_the_service_in_question_was_in_fact_provided,
|
480
|
+
"470" => :date_of_local_office_certification_of_conveyance_of_damaged_real_estate_propertythe_date_local_office_approves_of_the_transfer_of_a_damaged_property_or_the_date_of_the_mortgagees_certification_that_adequate_fire_insurance_was_not_obtainable,
|
481
|
+
"471" => :prescriptiondate_on_which_prescription_was_written,
|
482
|
+
"472" => :service,
|
483
|
+
"473" => :medicaid_begindate_patient_became_eligible_for_medicaid_benefits,
|
484
|
+
"474" => :medicaid_enddate_patient_no_longer_eligible_for_medicaid_benefits,
|
485
|
+
"475" => :medicaidstart_and_end_of_effective_period_for_medicaid,
|
486
|
+
"476" => :peer_review_organization_pro_approved_stay_fromdate_start_of_confinement_was_approved,
|
487
|
+
"477" => :peer_review_organization_pro_approved_stay_todate_confinement_approval_ceased,
|
488
|
+
"478" => :prescription_fromstart_of_prescription_period,
|
489
|
+
"479" => :prescription_toend_of_prescription_period,
|
490
|
+
"480" => :arterial_blood_gas_testdate_of_test_to_determine_gas_content_in_blood_circulating_from_the_heart_at_rest_breathing_room_air,
|
491
|
+
"481" => :oxygen_saturation_testdate_on_which_oxygen_saturation_testing_occurred,
|
492
|
+
"482" => :pregnancy_begindate_pregnancy_estimated_to_begin,
|
493
|
+
"483" => :pregnancy_enddate_pregnancy_end_whether_normal_or_abnormal_delivery,
|
494
|
+
"484" => :last_menstrual_period,
|
495
|
+
"485" => :injury_begindate_damage_was_inflicted_to_the_body_by_an_external_source,
|
496
|
+
"486" => :injury_enddate_damage_inflicted_to_the_body_by_an_external_source_ceased,
|
497
|
+
"487" => :nursing_homefacility_for_those_unable_to_care_for_themselves,
|
498
|
+
"488" => :collateral_dependentrange_of_collateral_dependent_coverage,
|
499
|
+
"489" => :collateral_dependent_begindate_on_which_collateral_dependent_coverage_begins,
|
500
|
+
"490" => :collateral_dependent_enddate_on_which_collateral_dependent_coverage_ends,
|
501
|
+
"491" => :sponsored_dependentrange_of_sponsoring_dependent_coverage,
|
502
|
+
"492" => :sponsored_dependent_begindate_on_which_sponsored_dependent_coverage_begins,
|
503
|
+
"493" => :sponsored_dependent_enddate_on_which_sponsored_dependent_coverage_ends,
|
504
|
+
"494" => :deductibledate_for_which_deductible_is_applied,
|
505
|
+
"495" => :outofpocketdate_for_which_out_of_pocket_is_applied,
|
506
|
+
"496" => :contract_audit_date,
|
507
|
+
"497" => :latest_delivery_date_at_pier,
|
508
|
+
"498" => :mortgagee_reported_curtailment_datethe_date_the_mortgagee_failed_to_meet_a_mandatory_time_requirement,
|
509
|
+
"499" => :mortgagee_official_signature_datethe_date_the_mortgagees_representative_signs_the_claim_for_mortgage_insurance_benefits_form,
|
510
|
+
"500" => :resubmissiondate_when_original_transaction_should_be_resubmitted_for_further_consideration,
|
511
|
+
"501" => :expected_replydate_when_response_may_be_expected,
|
512
|
+
"502" => :dropped_to_less_than_half_timedate_on_which_the_student_ceased_to_be_enrolled_at_least_half_time,
|
513
|
+
"503" => :repayment_begindate_on_which_repayment_of_the_loan_begins,
|
514
|
+
"504" => :loan_servicing_transferdate_on_which_the_loan_is_transferred_from_one_servicer_to_another_servicer,
|
515
|
+
"505" => :loan_purchasedate_on_which_the_ownership_of_the_loan_changes,
|
516
|
+
"506" => :last_notificationdate_on_which_the_lender_was_last_notified_of_the_lessthanhalf_time_information,
|
517
|
+
"507" => :extractdate_on_which_the_file_was_extracted_from_the_database,
|
518
|
+
"508" => :extendedthe_extended_date_for_a_performance_requirement,
|
519
|
+
"509" => :servicer_signature_datethe_date_an_authorized_representative_of_the_lender_servicing_the_mortgage_signs_the_claim_for_mortgage_insurance_benefits_form,
|
520
|
+
"510" => :date_packed,
|
521
|
+
"511" => :shelf_life_expiration,
|
522
|
+
"512" => :warranty_expiration,
|
523
|
+
"513" => :overhauled,
|
524
|
+
"514" => :transferred,
|
525
|
+
"515" => :notified,
|
526
|
+
"516" => :discovered,
|
527
|
+
"517" => :inspected,
|
528
|
+
"518" => :voucher_date_of,
|
529
|
+
"519" => :date_bankruptcy_fileddate_of_last_bankruptcy_action,
|
530
|
+
"520" => :date_of_damagethe_date_that_the_property_became_damaged,
|
531
|
+
"521" => :date_hazard_insurance_policy_cancelledthe_date_the_hazard_insurance_policy_was_cancelled,
|
532
|
+
"522" => :expiration_date_to_submit_title_evidencethe_last_day_of_an_approved_extension_to_submit_title_evidence_without_penalty,
|
533
|
+
"523" => :date_of_claimthe_date_the_claim_form_is_prepared,
|
534
|
+
"524" => :date_of_notice_of_referral_for_assignmentthe_date_mortgagors_are_notified_in_writing_that_it_is_their_lenders_opinion_that_they_are_qualified_for_an_assignment_program_and_that_their_defaulted_mortgage_should_be_assigned,
|
535
|
+
"525" => :date_of_notice_of_probable_ineligibility_for_assignmentthe_date_mortgagors_are_notified_in_writing_that_it_is_their_lenders_opinion_that_they_are_not_qualified_for_an_assignment_program_but_they_may_apply_directly_to_the_program_sponsor_for_consideration,
|
536
|
+
"526" => :date_of_foreclosure_noticethe_date_the_mortgagee_notifies_the_mortgage_insurer_that_foreclosure_has_been_initiated,
|
537
|
+
"527" => :expiration_of_foreclosure_timeframethe_last_day_of_an_extension_of_the_time_requirement_to_institute_foreclosure_proceedings_on_an_insured_mortgage,
|
538
|
+
"528" => :date_possessory_action_initiatedthe_date_the_mortgagee_initiates_action_to_take_possession_of_a_property_secured_by_a_mortgage_in_default,
|
539
|
+
"529" => :date_of_possessionthe_date_a_mortgagee_acquires_possession_of_a_property_secured_by_a_mortgage_in_default,
|
540
|
+
"530" => :date_of_last_installment_received,
|
541
|
+
"531" => :date_of_acquisition_of_titlethe_date_the_mortgagee_acquires_good_and_marketable_title_to_a_property_secured_by_a_mortgage_in_default,
|
542
|
+
"532" => :expiration_of_extension_to_conveythe_last_day_of_an_extension_of_the_time_requirement_to_convey_a_property,
|
543
|
+
"533" => :date_of_assignment_approvalthe_date_approval_is_given_to_assign_the_contract_rights_of_a_mortgage,
|
544
|
+
"534" => :date_of_assignment_rejectionthe_date_a_request_to_assign_the_contract_rights_of_a_mortgage_is_rejected,
|
545
|
+
"535" => :curtailment_date_from_advice_of_paymentthe_date_to_which_interest_was_curtailed,
|
546
|
+
"536" => :expiration_of_extension_to_submit_fiscal_datathe_date_of_the_expiration_of_extension_given_to_submit_fiscal_data,
|
547
|
+
"537" => :date_documentation_or_paperwork_or_both_was_sent,
|
548
|
+
"538" => :makegood_commercial_date,
|
549
|
+
"539" => :policy_effective,
|
550
|
+
"540" => :policy_expiration,
|
551
|
+
"541" => :employee_effective_date_of_coverage,
|
552
|
+
"542" => :claim_administrator_notified_of_employee_legal_representation,
|
553
|
+
"543" => :last_premium_paid_date,
|
554
|
+
"544" => :employer_knowledge_of_the_injury,
|
555
|
+
"545" => :claim_administrator_knowledge_of_the_injury,
|
556
|
+
"546" => :date_of_maximum_medical_improvement,
|
557
|
+
"547" => :date_of_loan,
|
558
|
+
"548" => :date_of_advance,
|
559
|
+
"549" => :beginning_lay_datefirst_date_a_vessel_may_call_at_the_port,
|
560
|
+
"550" => :certificate_effective,
|
561
|
+
"551" => :benefit_application_date,
|
562
|
+
"552" => :actual_return_to_work,
|
563
|
+
"553" => :released_return_to_work,
|
564
|
+
"554" => :ending_lay_datedate_by_which_the_vessel_will_call_at_the_port,
|
565
|
+
"555" => :employee_wages_ceased,
|
566
|
+
"556" => :last_salary_increase,
|
567
|
+
"557" => :employee_laid_off,
|
568
|
+
"558" => :injury_or_illness,
|
569
|
+
"559" => :oldest_unpaid_installmentthe_due_date_of_the_oldest_complete_mortgage_payment_that_has_not_been_paid,
|
570
|
+
"560" => :preforeclosure_acceptance_datethe_date_that_the_mortgagor_and_the_mortgagee_accepts_a_preforeclosure_acceptance_plan,
|
571
|
+
"561" => :preforeclosure_sale_closing_datethe_date_that_the_mortgagor_and_the_mortgagee_accept_a_preforeclosure_sales_closing_plan,
|
572
|
+
"562" => :date_of_first_uncured_default,
|
573
|
+
"563" => :date_default_was_cured,
|
574
|
+
"564" => :date_of_first_mortgage_payment,
|
575
|
+
"565" => :date_of_property_inspection,
|
576
|
+
"566" => :date_total_amount_of_delinquency_reported,
|
577
|
+
"567" => :date_outstanding_loan_balance_reported,
|
578
|
+
"568" => :date_foreclosure_sale_scheduled,
|
579
|
+
"569" => :date_foreclosure_held,
|
580
|
+
"570" => :date_redemption_period_ends,
|
581
|
+
"571" => :date_voluntary_conveyance_acceptedthe_date_voluntary_conveyance_of_the_property_by_the_mortgagee_holding_the_defaulted_mortgage_is_accepted_by_the_federal_housing_commissioner,
|
582
|
+
"572" => :date_property_sold,
|
583
|
+
"573" => :date_claim_paid,
|
584
|
+
"574" => :action_begin_datethe_date_a_resolution_action_such_as_scheduling_a_repayment_plan_or_a_delay_action_such_as_chapter_7_bankruptcy_filing_begins,
|
585
|
+
"575" => :projected_action_end_date,
|
586
|
+
"576" => :action_end_date,
|
587
|
+
"577" => :original_maturity_date,
|
588
|
+
"578" => :date_referred_to_attorney_for_foreclosure,
|
589
|
+
"579" => :planned_release,
|
590
|
+
"580" => :actual_release,
|
591
|
+
"581" => :contract_period,
|
592
|
+
"582" => :report_period,
|
593
|
+
"583" => :suspension,
|
594
|
+
"584" => :reinstatement,
|
595
|
+
"585" => :report,
|
596
|
+
"586" => :first_contact,
|
597
|
+
"587" => :projected_foreclosure_sale_date,
|
598
|
+
"589" => :date_assignment_filed_for_recordthe_date_the_transfer_of_the_contract_right_to_real_estate_is_filed_for_record_with_the_recording_authority,
|
599
|
+
"590" => :date_of_appraisalthe_date_the_value_of_a_property_is_assessed,
|
600
|
+
"591" => :expiration_date_of_extension_to_assignthe_last_day_of_a_given_time_limit_to_assign_the_contractual_rights_of_a_mortgage,
|
601
|
+
"592" => :date_of_extension_to_conveythe_last_day_of_a_given_time_limit_to_complete_the_transfer_of_real_property,
|
602
|
+
"593" => :date_hazard_insurance_policy_refusedthe_date_the_insurance_carrier_refused_to_renew_the_policy_on_a_property,
|
603
|
+
"594" => :high_fabrication_release_authorizationthe_date_of_the_purchasers_program_number_that_authorizes_the_highest_amount_of_material_production,
|
604
|
+
"595" => :high_raw_material_authorizationthe_date_of_the_purchasers_program_number_that_authorizes_the_highest_amount_of_raw_material_or_purchased_components_in_their_original_state_to_be_secured_for_production,
|
605
|
+
"596" => :material_change_notice,
|
606
|
+
"597" => :latest_delivery_date_at_rail_ramp,
|
607
|
+
"598" => :rejected,
|
608
|
+
"599" => :repayment_schedule_sent,
|
609
|
+
"600" => :as_of,
|
610
|
+
"601" => :first_submission,
|
611
|
+
"602" => :subsequent_submission,
|
612
|
+
"603" => :renewal,
|
613
|
+
"604" => :withdrawn,
|
614
|
+
"606" => :certification_period_start,
|
615
|
+
"607" => :certification_revision,
|
616
|
+
"608" => :continuous_coverage_dates,
|
617
|
+
"609" => :prearranged_deal_match,
|
618
|
+
"610" => :contingency_end,
|
619
|
+
"611" => :oxygen_therapy_evaluationthe_date_the_patient_was_last_examined_by_the_physician_to_determine_the_need_for_oxygen_therapy,
|
620
|
+
"612" => :shut_inthe_date_when_the_valves_are_closed_or_the_pump_is_stopped_at_the_wellhead,
|
621
|
+
"613" => :allowable_effectivethe_date_the_report_is_effective_for_allowable_purposes,
|
622
|
+
"614" => :first_sales,
|
623
|
+
"615" => :date_acquired,
|
624
|
+
"616" => :interviewer_signed,
|
625
|
+
"617" => :application_logged_date,
|
626
|
+
"618" => :review_date,
|
627
|
+
"619" => :decision_date,
|
628
|
+
"620" => :previously_resided,
|
629
|
+
"621" => :reported,
|
630
|
+
"622" => :checked,
|
631
|
+
"623" => :settled,
|
632
|
+
"624" => :presently_residing,
|
633
|
+
"625" => :employed_in_this_position,
|
634
|
+
"626" => :verified,
|
635
|
+
"627" => :second_admission_datedate_of_second_admission_to_a_health_care_facility_which_occurred_during_the_service_period_of_this_claim,
|
636
|
+
"629" => :account_opened,
|
637
|
+
"630" => :account_closed,
|
638
|
+
"631" => :property_acquired,
|
639
|
+
"632" => :property_built,
|
640
|
+
"633" => :employed_in_this_profession,
|
641
|
+
"634" => :next_review_date,
|
642
|
+
"635" => :initial_contact_date,
|
643
|
+
"636" => :date_of_last_update,
|
644
|
+
"637" => :second_discharge_datedate_of_second_discharge_from_a_health_care_facility_which_occurred_during_the_service_period_of_this_claim,
|
645
|
+
"638" => :date_of_last_draw,
|
646
|
+
"640" => :complaint,
|
647
|
+
"641" => :option,
|
648
|
+
"642" => :solicitation,
|
649
|
+
"643" => :clause,
|
650
|
+
"644" => :meeting,
|
651
|
+
"646" => :rental_period,
|
652
|
+
"647" => :next_pay_increase,
|
653
|
+
"648" => :period_covered_by_source_documents,
|
654
|
+
"649" => :document_due,
|
655
|
+
"650" => :court_notice,
|
656
|
+
"651" => :expected_funding_date,
|
657
|
+
"652" => :assignment_recorded,
|
658
|
+
"653" => :case_reopened,
|
659
|
+
"655" => :previous_court_event,
|
660
|
+
"656" => :last_date_to_object,
|
661
|
+
"657" => :court_event,
|
662
|
+
"658" => :last_date_to_file_a_claim,
|
663
|
+
"659" => :case_converted,
|
664
|
+
"660" => :debt_incurred,
|
665
|
+
"661" => :judgment,
|
666
|
+
"662" => :wages_start,
|
667
|
+
"663" => :wages_end,
|
668
|
+
"664" => :date_through_which_property_taxes_have_been_paid,
|
669
|
+
"665" => :paid_through_date,
|
670
|
+
"666" => :date_paid,
|
671
|
+
"667" => :anesthesia_administration,
|
672
|
+
"668" => :price_protection,
|
673
|
+
"669" => :claim_incurredthe_date_a_debt_or_obligation_arises_or_is_incurred,
|
674
|
+
"670" => :book_entry_delivery,
|
675
|
+
"671" => :rate_adjustment,
|
676
|
+
"672" => :next_installment_due_date,
|
677
|
+
"673" => :daylight_overdraft_timetime_a_fed_wire_is_processed_by_the_federal_reserve,
|
678
|
+
"674" => :presentment_datedate_a_letter_of_credit_is_presented,
|
679
|
+
"675" => :negotiated_extension_datenew_date_to_which_a_letter_of_credit_extension_is_negotiated,
|
680
|
+
"681" => :remittance,
|
681
|
+
"682" => :security_rate_adjustment,
|
682
|
+
"683" => :filing_period,
|
683
|
+
"684" => :review_period_end,
|
684
|
+
"685" => :requested_settlement,
|
685
|
+
"686" => :last_screening,
|
686
|
+
"687" => :confinement,
|
687
|
+
"688" => :arrested,
|
688
|
+
"689" => :convicted,
|
689
|
+
"690" => :interviewed,
|
690
|
+
"691" => :last_visit,
|
691
|
+
"692" => :recovery,
|
692
|
+
"693" => :time_in_us,
|
693
|
+
"694" => :future_periodrange_of_future_activity,
|
694
|
+
"695" => :previous_periodrange_of_previous_activity,
|
695
|
+
"696" => :interest_paid_to,
|
696
|
+
"697" => :date_of_seizure,
|
697
|
+
"699" => :setoffdate_creditor_reduced_claim_by_amount_of_debtors_claim_against_creditor,
|
698
|
+
"700" => :override_date_for_settlement,
|
699
|
+
"701" => :settlement_date_from_interline_settlement_system_iss_only,
|
700
|
+
"702" => :sending_road_time_stamp,
|
701
|
+
"703" => :retransmission_time_stamp,
|
702
|
+
"704" => :delivery_appointment_date_and_timethe_date_and_time_associated_with_an_appointment_number,
|
703
|
+
"705" => :interest_paid_through,
|
704
|
+
"706" => :date_material_usage_suspended,
|
705
|
+
"707" => :last_payment_made,
|
706
|
+
"708" => :past_due,
|
707
|
+
"709" => :analysis_month_ending,
|
708
|
+
"710" => :date_of_specification,
|
709
|
+
"711" => :date_of_standard,
|
710
|
+
"712" => :return_to_work_part_time,
|
711
|
+
"713" => :paidthrough_date_for_salary_continuation,
|
712
|
+
"714" => :paidthrough_date_for_vacation_pay,
|
713
|
+
"715" => :paidthrough_date_for_accrued_sick_pay,
|
714
|
+
"716" => :appraisal_ordered,
|
715
|
+
"717" => :date_of_operation,
|
716
|
+
"718" => :best_time_to_call,
|
717
|
+
"719" => :verbal_report_needed,
|
718
|
+
"720" => :estimated_escrow_closing,
|
719
|
+
"721" => :permit_year,
|
720
|
+
"722" => :remodeling_completed,
|
721
|
+
"723" => :current_month_ending,
|
722
|
+
"724" => :previous_month_ending,
|
723
|
+
"725" => :cycle_to_date,
|
724
|
+
"726" => :year_to_date,
|
725
|
+
"727" => :on_hold,
|
726
|
+
"728" => :off_hold,
|
727
|
+
"729" => :facsimile_due_by,
|
728
|
+
"730" => :reporting_cycle_date,
|
729
|
+
"731" => :last_paid_installment_date,
|
730
|
+
"732" => :claims_madedate_that_determines_liability_coverage_under_a_claims_made_policy,
|
731
|
+
"733" => :date_of_last_payment_received,
|
732
|
+
"734" => :curtailment_date,
|
733
|
+
"736" => :pool_settlement,
|
734
|
+
"737" => :next_interest_change_date,
|
735
|
+
"738" => :most_recent_hemoglobin_or_hematocrit_or_both,
|
736
|
+
"739" => :most_recent_serum_creatine,
|
737
|
+
"740" => :closed,
|
738
|
+
"741" => :therapy,
|
739
|
+
"742" => :implantation,
|
740
|
+
"743" => :explantation,
|
741
|
+
"744" => :date_became_aware,
|
742
|
+
"745" => :first_marketed,
|
743
|
+
"746" => :last_marketed,
|
744
|
+
"747" => :new_due_date_of_first_payment_to_principal_and_interest,
|
745
|
+
"748" => :new_maturity_date,
|
746
|
+
"749" => :current,
|
747
|
+
"750" => :expected_problem_resolutionthe_date_and_time_by_which_resolution_of_a_problem_is_expected_to_occur,
|
748
|
+
"751" => :alternate_problem_resolutionthe_alternate_date_and_time_by_which_resolution_of_a_problem_should_occur_if_the_expected_problem_resolution_date_and_time_cannot_be_met,
|
749
|
+
"752" => :fee_capitalization,
|
750
|
+
"753" => :interest_capitalization,
|
751
|
+
"754" => :next_payment_due,
|
752
|
+
"755" => :conversion_to_repayment,
|
753
|
+
"756" => :end_of_grace,
|
754
|
+
"757" => :school_refund,
|
755
|
+
"758" => :simple_interest_due,
|
756
|
+
"759" => :date_practice_ceased,
|
757
|
+
"760" => :printed,
|
758
|
+
"761" => :date_practice_established,
|
759
|
+
"762" => :drop_action_date,
|
760
|
+
"764" => :most_recent_renewal,
|
761
|
+
"765" => :original,
|
762
|
+
"766" => :outside_auditors_report,
|
763
|
+
"769" => :precertification_date,
|
764
|
+
"770" => :back_on_market,
|
765
|
+
"771" => :status,
|
766
|
+
"772" => :benefit_adjustment_start,
|
767
|
+
"773" => :offmarket,
|
768
|
+
"774" => :tour,
|
769
|
+
"775" => :benefit_adjustment_end,
|
770
|
+
"776" => :listing_received,
|
771
|
+
"777" => :benefit_adjustment_period,
|
772
|
+
"778" => :anticipated_closing,
|
773
|
+
"779" => :last_publication,
|
774
|
+
"780" => :sold_book_publicationpublication_date_of_multiple_listing_book_of_sold_property,
|
775
|
+
"781" => :occupancy,
|
776
|
+
"782" => :contingency,
|
777
|
+
"783" => :percolation_test,
|
778
|
+
"784" => :septic_approval,
|
779
|
+
"785" => :title_transfer,
|
780
|
+
"786" => :open_house,
|
781
|
+
"787" => :benefit_credit_period,
|
782
|
+
"788" => :benefit_transfer_period,
|
783
|
+
"789" => :homestead,
|
784
|
+
"790" => :sanction,
|
785
|
+
"791" => :tail_coverage_beginextension_of_liability_coverage_begin_date,
|
786
|
+
"792" => :tail_coverage_endextension_of_liability_coverage_end_date,
|
787
|
+
"793" => :training_begin,
|
788
|
+
"794" => :training_end,
|
789
|
+
"795" => :verification_received,
|
790
|
+
"796" => :verification_sent,
|
791
|
+
"797" => :state_residency_date,
|
792
|
+
"798" => :effective_date_of_the_routing_file,
|
793
|
+
"799" => :test_data_analysis,
|
794
|
+
"800" => :midpoint_of_performance,
|
795
|
+
"801" => :acquisition_date,
|
796
|
+
"802" => :date_of_action,
|
797
|
+
"803" => :paid_in_full,
|
798
|
+
"804" => :refinance,
|
799
|
+
"805" => :voluntary_termination,
|
800
|
+
"806" => :customer_order,
|
801
|
+
"807" => :stored,
|
802
|
+
"808" => :selected,
|
803
|
+
"809" => :posted,
|
804
|
+
"810" => :document_received,
|
805
|
+
"811" => :rebuilt,
|
806
|
+
"812" => :marriage,
|
807
|
+
"813" => :customs_entry_date,
|
808
|
+
"814" => :payment_due_date,
|
809
|
+
"815" => :maturity_date,
|
810
|
+
"816" => :trade_date,
|
811
|
+
"817" => :gallons_per_minute_gpm_test_performed,
|
812
|
+
"818" => :british_thermal_unit_btu_test_performed,
|
813
|
+
"819" => :last_accounts_filed_at_public_registration_agency,
|
814
|
+
"820" => :real_estate_tax_year,
|
815
|
+
"821" => :final_reconciliation_value_estimate_as_of,
|
816
|
+
"822" => :map,
|
817
|
+
"823" => :opinion,
|
818
|
+
"824" => :version,
|
819
|
+
"825" => :original_due_date,
|
820
|
+
"826" => :incumbency_period,
|
821
|
+
"827" => :audience_deficiency_period,
|
822
|
+
"828" => :aired_date,
|
823
|
+
"830" => :schedule,
|
824
|
+
"831" => :paid_through_date_for_minimum_payment,
|
825
|
+
"832" => :paid_through_date_for_total_payment,
|
826
|
+
"840" => :election,
|
827
|
+
"841" => :engineering_data_list,
|
828
|
+
"842" => :last_production,
|
829
|
+
"843" => :not_before,
|
830
|
+
"844" => :not_after,
|
831
|
+
"845" => :initial_claim,
|
832
|
+
"846" => :benefits_paid,
|
833
|
+
"847" => :wages_earned,
|
834
|
+
"848" => :adjusted_start,
|
835
|
+
"849" => :adjusted_end,
|
836
|
+
"850" => :revised_adjusted_start,
|
837
|
+
"851" => :revised_adjusted_end,
|
838
|
+
"853" => :field_test,
|
839
|
+
"854" => :mortgage_note_date,
|
840
|
+
"855" => :alternative_due_date,
|
841
|
+
"856" => :first_payment_change,
|
842
|
+
"857" => :first_rate_adjustment,
|
843
|
+
"858" => :alternate_base_period,
|
844
|
+
"859" => :prior_notice,
|
845
|
+
"860" => :appointment_effective,
|
846
|
+
"861" => :appointment_expiration,
|
847
|
+
"862" => :company_termination,
|
848
|
+
"863" => :continuing_education_requirement,
|
849
|
+
"864" => :distributor_effective,
|
850
|
+
"865" => :distributor_termination,
|
851
|
+
"866" => :examination,
|
852
|
+
"867" => :incorporation_dissolution,
|
853
|
+
"868" => :last_followup,
|
854
|
+
"869" => :license_effective,
|
855
|
+
"870" => :license_expiration,
|
856
|
+
"871" => :license_renewal,
|
857
|
+
"872" => :license_requested,
|
858
|
+
"873" => :mailed,
|
859
|
+
"874" => :paperwork_mailed,
|
860
|
+
"875" => :previous_employment,
|
861
|
+
"876" => :previous_employment_end,
|
862
|
+
"877" => :previous_employment_start,
|
863
|
+
"878" => :previous_residence,
|
864
|
+
"879" => :previous_residence_end,
|
865
|
+
"880" => :previous_residence_start,
|
866
|
+
"881" => :request,
|
867
|
+
"882" => :resident_license_effective,
|
868
|
+
"883" => :resident_license_expiration,
|
869
|
+
"884" => :state_termination,
|
870
|
+
"885" => :texas_line_termination,
|
871
|
+
"900" => :acceleration,
|
872
|
+
"901" => :adjusted_contestability,
|
873
|
+
"903" => :application_entry,
|
874
|
+
"904" => :approvaloffer,
|
875
|
+
"905" => :automatic_premium_loan,
|
876
|
+
"906" => :collection,
|
877
|
+
"907" => :confinement_end,
|
878
|
+
"908" => :confinement_start,
|
879
|
+
"909" => :contestability,
|
880
|
+
"910" => :flat_extra_end,
|
881
|
+
"911" => :last_activity,
|
882
|
+
"912" => :last_change,
|
883
|
+
"913" => :last_episode,
|
884
|
+
"914" => :last_meal,
|
885
|
+
"915" => :loan,
|
886
|
+
"916" => :application_status,
|
887
|
+
"917" => :maturity,
|
888
|
+
"918" => :medical_information_signature,
|
889
|
+
"919" => :medical_information_system,
|
890
|
+
"920" => :note,
|
891
|
+
"921" => :offer_expiration,
|
892
|
+
"922" => :original_receipt,
|
893
|
+
"923" => :placement,
|
894
|
+
"924" => :placement_period_expiration,
|
895
|
+
"925" => :processing,
|
896
|
+
"926" => :recapture,
|
897
|
+
"927" => :reentry,
|
898
|
+
"928" => :reissue,
|
899
|
+
"930" => :requalification,
|
900
|
+
"931" => :reinsurance_effective,
|
901
|
+
"932" => :reservation_of_facility,
|
902
|
+
"933" => :settlement_status,
|
903
|
+
"934" => :table_rating_end,
|
904
|
+
"935" => :termination_of_facility,
|
905
|
+
"936" => :treatment,
|
906
|
+
"937" => :department_of_labor_wage_determination_date,
|
907
|
+
"938" => :order,
|
908
|
+
"939" => :resolved,
|
909
|
+
"940" => :execution_date,
|
910
|
+
"941" => :capitation_period_start,
|
911
|
+
"942" => :capitation_period_end,
|
912
|
+
"943" => :last_date_for_a_government_agency_to_file_a_claim,
|
913
|
+
"944" => :adjustment_period,
|
914
|
+
"945" => :activity,
|
915
|
+
"946" => :mail_by,
|
916
|
+
"947" => :preparation,
|
917
|
+
"948" => :payment_initiated,
|
918
|
+
"949" => :payment_effective,
|
919
|
+
"950" => :application,
|
920
|
+
"951" => :reclassification,
|
921
|
+
"952" => :reclassification_exit_date,
|
922
|
+
"953" => :postreclassification,
|
923
|
+
"954" => :postreclassification_first_report_card,
|
924
|
+
"955" => :postreclassification_first_semiannual,
|
925
|
+
"956" => :postreclassification_second_semiannual,
|
926
|
+
"957" => :postreclassification_end_of_second_year,
|
927
|
+
"960" => :adjusted_death_benefit,
|
928
|
+
"961" => :anniversary,
|
929
|
+
"962" => :annuitization,
|
930
|
+
"963" => :annuity_commencement_dateexpiration_of_annuity_accumulation_contract,
|
931
|
+
"964" => :bill,
|
932
|
+
"965" => :calendar_anniversaryadjusted_plan_anniversary_date,
|
933
|
+
"966" => :contract_mailed,
|
934
|
+
"967" => :early_withdrawalpre_age_59_withdrawal_from_qualified_plan,
|
935
|
+
"968" => :fiscal_anniversary,
|
936
|
+
"969" => :incomedate_annuity_payments_commence,
|
937
|
+
"970" => :initial_premium,
|
938
|
+
"971" => :initial_premium_effective,
|
939
|
+
"972" => :last_premium_effective,
|
940
|
+
"973" => :minimum_required_distributioninternal_revenue_service_required_latest_distribution_start_date,
|
941
|
+
"974" => :next_anniversary,
|
942
|
+
"975" => :notice,
|
943
|
+
"976" => :notification_of_death,
|
944
|
+
"977" => :partial_annuitization,
|
945
|
+
"978" => :plan_anniversaryanniversary_date_adjusted_to_nearest_business_day,
|
946
|
+
"979" => :policy_surrender,
|
947
|
+
"980" => :prior_contract_anniversary,
|
948
|
+
"981" => :prior_contract_issue,
|
949
|
+
"982" => :signature_received,
|
950
|
+
"983" => :tax,
|
951
|
+
"984" => :benefit_period,
|
952
|
+
"985" => :month_to_date,
|
953
|
+
"986" => :semiannual_ending,
|
954
|
+
"987" => :surrender,
|
955
|
+
"988" => :plan_of_treatment_period,
|
956
|
+
"989" => :prior_hospitalization_dates_related_to_current_services,
|
957
|
+
"990" => :original_name_change,
|
958
|
+
"992" => :date_requested,
|
959
|
+
"993" => :request_for_quotationthe_reference_date_associated_with_a_specifically_numbered_request_for_quotation,
|
960
|
+
"994" => :quotethe_date_on_which_a_price_quote_was_rendered,
|
961
|
+
"995" => :recorded_date,
|
962
|
+
"996" => :required_deliverya_date_on_which_or_before_ordered_goods_or_services_must_be_delivered,
|
963
|
+
"997" => :quote_to_be_received_bya_date_on_which_or_before_a_quote_must_be_received_at_a_location_specified_in_an_rfq,
|
964
|
+
"998" => :continuation_of_pay_start_date,
|
965
|
+
"999" => :document_date,
|
966
|
+
"aa1" => :estimated_point_of_arrival,
|
967
|
+
"aa2" => :estimated_point_of_discharge,
|
968
|
+
"aa3" => :cancel_after_ex_country,
|
969
|
+
"aa4" => :cancel_after_ex_factory,
|
970
|
+
"aa5" => :do_not_ship_before_ex_country,
|
971
|
+
"aa6" => :do_not_ship_before_ex_factory,
|
972
|
+
"aa7" => :final_scheduled_payment,
|
973
|
+
"aa8" => :actual_discharge,
|
974
|
+
"aa9" => :address_period,
|
975
|
+
"aaa" => :arrival_in_country,
|
976
|
+
"aab" => :citation,
|
977
|
+
"aac" => :suspension_effective,
|
978
|
+
"aad" => :crime,
|
979
|
+
"aae" => :discharge__planned,
|
980
|
+
"aaf" => :draft,
|
981
|
+
"aag" => :due_date,
|
982
|
+
"aah" => :event,
|
983
|
+
"aai" => :first_involvement,
|
984
|
+
"aaj" => :guarantee_period,
|
985
|
+
"aak" => :income_increase_period,
|
986
|
+
"aal" => :installment_date,
|
987
|
+
"aam" => :last_civilian_flight,
|
988
|
+
"aan" => :last_flight,
|
989
|
+
"aao" => :last_insurance_medical,
|
990
|
+
"aap" => :last_military_flight,
|
991
|
+
"aaq" => :last_physical,
|
992
|
+
"aar" => :license,
|
993
|
+
"aas" => :medical_certificate,
|
994
|
+
"aat" => :medication,
|
995
|
+
"aau" => :net_worth_date,
|
996
|
+
"aav" => :next_activity,
|
997
|
+
"aaw" => :ownership_change,
|
998
|
+
"aax" => :ownership_period,
|
999
|
+
"aay" => :rate_date,
|
1000
|
+
"aaz" => :requested_contract,
|
1001
|
+
"ab1" => :requested_offer,
|
1002
|
+
"ab2" => :sales_period,
|
1003
|
+
"ab3" => :tax_year,
|
1004
|
+
"ab4" => :time_period,
|
1005
|
+
"ab5" => :travel,
|
1006
|
+
"ab6" => :treatment_end,
|
1007
|
+
"ab7" => :treatment_start,
|
1008
|
+
"ab8" => :trust,
|
1009
|
+
"ab9" => :worst_time_to_call,
|
1010
|
+
"aba" => :registration,
|
1011
|
+
"abb" => :revoked,
|
1012
|
+
"abc" => :estimated_date_of_birth,
|
1013
|
+
"abd" => :last_annual_report,
|
1014
|
+
"abe" => :legal_action_started,
|
1015
|
+
"abf" => :lien,
|
1016
|
+
"abg" => :payment_period,
|
1017
|
+
"abh" => :profit_period,
|
1018
|
+
"abi" => :registered,
|
1019
|
+
"abk" => :consolidateddate_businesses_consolidated_or_merged,
|
1020
|
+
"abl" => :board_of_directors_not_authorized_as_of,
|
1021
|
+
"abm" => :board_of_directors_incomplete_as_of,
|
1022
|
+
"abn" => :manager_not_registered_as_of,
|
1023
|
+
"abo" => :citizenship_change,
|
1024
|
+
"abp" => :participation,
|
1025
|
+
"abq" => :capitalization,
|
1026
|
+
"abr" => :registration_of_board_of_directors,
|
1027
|
+
"abs" => :ceased_operations,
|
1028
|
+
"abt" => :satisfied,
|
1029
|
+
"abu" => :terms_met,
|
1030
|
+
"abv" => :asset_documentation_expiration,
|
1031
|
+
"abw" => :credit_documentation_expiration,
|
1032
|
+
"abx" => :income_documentation_expiration,
|
1033
|
+
"aby" => :product_held_until,
|
1034
|
+
"aca" => :immigration_date,
|
1035
|
+
"acb" => :estimated_immigration_date,
|
1036
|
+
"acc" => :current_disability_period_start,
|
1037
|
+
"acd" => :current_disability_period_end,
|
1038
|
+
"ace" => :current_disability_period_last_day_worked,
|
1039
|
+
"acf" => :benefit_type_gross_weekly_amount_effective,
|
1040
|
+
"acg" => :benefit_type_net_weekly_amount_effective,
|
1041
|
+
"ach" => :benefit_type_period_start,
|
1042
|
+
"aci" => :benefit_type_period_end,
|
1043
|
+
"acj" => :benefit_debit_start,
|
1044
|
+
"ack" => :acknowledgment,
|
1045
|
+
"acl" => :benefit_debit_end,
|
1046
|
+
"acm" => :benefit_credit_start,
|
1047
|
+
"acn" => :benefit_credit_end,
|
1048
|
+
"aco" => :benefit_transfer_start,
|
1049
|
+
"acp" => :benefit_transfer_end,
|
1050
|
+
"acq" => :wage_effective,
|
1051
|
+
"acr" => :full_denial_effective,
|
1052
|
+
"acs" => :full_denial_rescission,
|
1053
|
+
"act" => :payment_issue,
|
1054
|
+
"acu" => :payment_period_start,
|
1055
|
+
"acv" => :payment_period_end,
|
1056
|
+
"acw" => :employer_reported_injury_to_claim_administrator,
|
1057
|
+
"acx" => :survey_year,
|
1058
|
+
"acz" => :controvert_date,
|
1059
|
+
"ada" => :billed_through,
|
1060
|
+
"adb" => :business_control_change,
|
1061
|
+
"adc" => :court_registration,
|
1062
|
+
"add" => :annual_report_duedate_annual_report_will_be_due_with_state,
|
1063
|
+
"ade" => :claim_notification_received,
|
1064
|
+
"adf" => :conversion_privilege_end,
|
1065
|
+
"adg" => :dividend_applied,
|
1066
|
+
"adh" => :inforce,
|
1067
|
+
"adi" => :paidup,
|
1068
|
+
"adj" => :premium_change,
|
1069
|
+
"adk" => :policy_effective_on_or_before,
|
1070
|
+
"adl" => :asset_and_liability_schedule,
|
1071
|
+
"adm" => :annual_report_maileddate_annual_report_was_mailed_when_last_filed_with_state_corporate_authorities,
|
1072
|
+
"adn" => :policy_effective_on_or_after,
|
1073
|
+
"adr" => :annual_report_fileddate_annual_report_last_filed_with_state_corporate_authorities,
|
1074
|
+
"ads" => :audit_period_after_split_date,
|
1075
|
+
"adt" => :audit_period_prior_to_split_date,
|
1076
|
+
"adu" => :exposure_source_period,
|
1077
|
+
"adv" => :subcontractor_period_of_hire,
|
1078
|
+
"adw" => :divorce,
|
1079
|
+
"adx" => :power_of_attorney,
|
1080
|
+
"ady" => :uniform_gifts_to_minors_account_established,
|
1081
|
+
"aea" => :medicare_part_a_eligibility_begin_date,
|
1082
|
+
"aeb" => :medicare_part_a_eligibility_end_date,
|
1083
|
+
"aec" => :medicare_part_a_coverage_effective_date,
|
1084
|
+
"aed" => :medicare_part_a_termination_date,
|
1085
|
+
"aee" => :medicare_part_b_eligibility_begin_date,
|
1086
|
+
"aef" => :medicare_part_b_eligibility_end_date,
|
1087
|
+
"aeg" => :medicare_part_b_coverage_effective_date,
|
1088
|
+
"aeh" => :medicare_part_b_termination_date,
|
1089
|
+
"aei" => :loading_period,
|
1090
|
+
"aek" => :date_on_which_assets_judged_insufficient_to_pay_creditors,
|
1091
|
+
"ael" => :employees_temporarily_laid_off_begin_period,
|
1092
|
+
"aem" => :employees_temporarily_laid_off_end_period,
|
1093
|
+
"aen" => :first_published,
|
1094
|
+
"aeo" => :forecast_period_start,
|
1095
|
+
"aep" => :forecast_period_end,
|
1096
|
+
"aeq" => :investigation_start,
|
1097
|
+
"aer" => :investigation_end,
|
1098
|
+
"aes" => :last_published,
|
1099
|
+
"aet" => :latest_balance_sheet,
|
1100
|
+
"aeu" => :share_price,
|
1101
|
+
"aev" => :stop_distribution,
|
1102
|
+
"aew" => :maximum_credit_datedate_of_highest_credit_provided_to_entity_by_a_vendor,
|
1103
|
+
"aex" => :founding_date,
|
1104
|
+
"aey" => :repayment_plan_start_date,
|
1105
|
+
"ard" => :annual_report_delinquencydate_annual_report_will_be_delinquent_with_state_corporate_authorities,
|
1106
|
+
"awh" => :withheld_date,
|
1107
|
+
"baa" => :compliance_audit,
|
1108
|
+
"bab" => :contractor_safety_performance_evaluation,
|
1109
|
+
"bac" => :contractor_safety_procedures_review,
|
1110
|
+
"bad" => :date_of_equipment_inspection,
|
1111
|
+
"bae" => :date_of_safety_inspection,
|
1112
|
+
"baf" => :employees_participation_plan_review,
|
1113
|
+
"bag" => :expected_completion_of_changes_resulting_from_compliance_audit,
|
1114
|
+
"bah" => :expected_completion_of_changes_resulting_from_process_hazard_analysis,
|
1115
|
+
"bai" => :expected_completion_of_changes_resulting_from_hazard_review,
|
1116
|
+
"baj" => :hazard_review_completion,
|
1117
|
+
"bak" => :hot_work_permit_procedures_review,
|
1118
|
+
"bal" => :investigation,
|
1119
|
+
"bam" => :maintenance_procedures_review,
|
1120
|
+
"ban" => :management_of_change_procedures_review,
|
1121
|
+
"bao" => :operating_procedures_review,
|
1122
|
+
"bap" => :safety_information_review,
|
1123
|
+
"baq" => :training,
|
1124
|
+
"bar" => :training_program_review,
|
1125
|
+
"bip" => :beginning_of_interest_paid_after_claim,
|
1126
|
+
"cad" => :changed_accounting_date,
|
1127
|
+
"ccr" => :customs_cargo_release,
|
1128
|
+
"cdd" => :contract_definitization_date,
|
1129
|
+
"cdt" => :maintenance_comment,
|
1130
|
+
"cea" => :formation,
|
1131
|
+
"ceb" => :continuance,
|
1132
|
+
"cec" => :merger,
|
1133
|
+
"ced" => :year_due,
|
1134
|
+
"cee" => :next_annual_meeting,
|
1135
|
+
"cef" => :end_of_last_fiscal_year,
|
1136
|
+
"ceh" => :year_beginning,
|
1137
|
+
"cej" => :started_doing_business,
|
1138
|
+
"cek" => :sworn_and_subscribed,
|
1139
|
+
"cel" => :calendar_year,
|
1140
|
+
"cem" => :asset,
|
1141
|
+
"cen" => :inactivity,
|
1142
|
+
"ceo" => :high_capital_year,
|
1143
|
+
"clo" => :closing_date_of_first_balance_sheet,
|
1144
|
+
"clu" => :closed_until,
|
1145
|
+
"com" => :compliance,
|
1146
|
+
"con" => :converted_into_holding_company,
|
1147
|
+
"crv" => :claim_revised,
|
1148
|
+
"cur" => :current_list,
|
1149
|
+
"daf" => :account_frozen,
|
1150
|
+
"ddo" => :declaration,
|
1151
|
+
"dee" => :deed_not_available,
|
1152
|
+
"del" => :delete,
|
1153
|
+
"det" => :detrimental_information_received,
|
1154
|
+
"dff" => :deferral,
|
1155
|
+
"dfs" => :departure_from_specification,
|
1156
|
+
"dil" => :deed_in_lieu_dil_approved,
|
1157
|
+
"dip" => :delayed_interest_paid_through,
|
1158
|
+
"dis" => :disposition,
|
1159
|
+
"dlc" => :date_of_last_contact,
|
1160
|
+
"doa" => :date_of_abandonment,
|
1161
|
+
"dod" => :date_of_delinquency,
|
1162
|
+
"doi" => :delivery_order_issued,
|
1163
|
+
"dor" => :repossession,
|
1164
|
+
"dsp" => :disposal,
|
1165
|
+
"dtc" => :deed_and_title_received,
|
1166
|
+
"dtq" => :deed_and_title_requested,
|
1167
|
+
"e01" => :tenure_decision,
|
1168
|
+
"e02" => :most_recent_position_change,
|
1169
|
+
"e03" => :fee_payment,
|
1170
|
+
"e04" => :start_date_for_continuous_employment,
|
1171
|
+
"e05" => :start_date_for_current_position,
|
1172
|
+
"e06" => :start_date_for_original_position,
|
1173
|
+
"e07" => :fiscal_year,
|
1174
|
+
"ecd" => :estimated_construction_date,
|
1175
|
+
"ecf" => :estimated_completion__first_prior_month,
|
1176
|
+
"ecs" => :estimated_completion__second_prior_month,
|
1177
|
+
"ect" => :estimated_completion__third_prior_month,
|
1178
|
+
"eda" => :affirmed,
|
1179
|
+
"edb" => :auction,
|
1180
|
+
"edc" => :authorized,
|
1181
|
+
"edd" => :contribution,
|
1182
|
+
"ede" => :executed,
|
1183
|
+
"edf" => :forgiven,
|
1184
|
+
"edg" => :presented,
|
1185
|
+
"edh" => :legislative_session,
|
1186
|
+
"edi" => :organized,
|
1187
|
+
"edj" => :pledged,
|
1188
|
+
"edk" => :primary_election,
|
1189
|
+
"edl" => :qualified,
|
1190
|
+
"edm" => :refunded,
|
1191
|
+
"edn" => :rescinded,
|
1192
|
+
"edo" => :restructured_from,
|
1193
|
+
"edp" => :vote,
|
1194
|
+
"ekd" => :employer_knowledge_of_the_disability,
|
1195
|
+
"epp" => :estimate_preparation,
|
1196
|
+
"esc" => :estimate_comment,
|
1197
|
+
"esf" => :estimated_start__first_prior_month,
|
1198
|
+
"ess" => :estimated_start__second_prior_month,
|
1199
|
+
"est" => :estimated_start__third_prior_month,
|
1200
|
+
"etp" => :earliest_filing_period,
|
1201
|
+
"exo" => :exposure,
|
1202
|
+
"exp" => :export,
|
1203
|
+
"ffi" => :financial_information,
|
1204
|
+
"ffo" => :first_order,
|
1205
|
+
"fia" => :final_interest_accrual,
|
1206
|
+
"fpe" => :funding_period__end,
|
1207
|
+
"fps" => :funding_period__start,
|
1208
|
+
"grd" => :graduated,
|
1209
|
+
"icf" => :converted_to_electronic_date,
|
1210
|
+
"idg" => :insolvency_discharge_granted,
|
1211
|
+
"ifh" => :initial_federal_housing_authority_claim_payment,
|
1212
|
+
"iii" => :incorporation,
|
1213
|
+
"imp" => :import,
|
1214
|
+
"inc" => :incident,
|
1215
|
+
"int" => :inactive_until,
|
1216
|
+
"ips" => :interest_on_presale_start,
|
1217
|
+
"iva" => :initial_veterans_administration_claim_payment,
|
1218
|
+
"kev" => :key_event_fiscal_year,
|
1219
|
+
"kew" => :key_event_calendar_year,
|
1220
|
+
"lam" => :last_annual_meeting,
|
1221
|
+
"las" => :last_check_for_balance_sheet_update,
|
1222
|
+
"lcc" => :last_capital_changedate_capital_stock_was_last_modified,
|
1223
|
+
"lea" => :letter_of_agreement,
|
1224
|
+
"lel" => :letter_of_liability,
|
1225
|
+
"liq" => :liquidation,
|
1226
|
+
"llp" => :low_period,
|
1227
|
+
"log" => :equipment_log_entry,
|
1228
|
+
"lpc" => :list_price_change,
|
1229
|
+
"lsc" => :legal_structure_change,
|
1230
|
+
"ltp" => :latest_filing_period,
|
1231
|
+
"mrr" => :meter_reading,
|
1232
|
+
"msd" => :latest_material_safety_data_sheet_date,
|
1233
|
+
"nam" => :present_name,
|
1234
|
+
"nfd" => :negotiated_finish,
|
1235
|
+
"nod" => :notice_of_delinquency_nod_received,
|
1236
|
+
"nrg" => :not_registered,
|
1237
|
+
"nsd" => :negotiated_start,
|
1238
|
+
"org" => :original_list,
|
1239
|
+
"pbc" => :present_control,
|
1240
|
+
"pcp" => :primary_coverage_claim_paid,
|
1241
|
+
"pcs" => :primary_coverage_claim_submission,
|
1242
|
+
"pde" => :partial_denial_effective,
|
1243
|
+
"pdr" => :partial_denial_rescission,
|
1244
|
+
"pdv" => :privilege_details_verification,
|
1245
|
+
"pls" => :present_legal_structure,
|
1246
|
+
"ppc" => :pool_policy_claim_submission,
|
1247
|
+
"ppd" => :post_paid_datethe_last_date_a_tax_authority_posted_tax_payments,
|
1248
|
+
"ppp" => :peak_period,
|
1249
|
+
"prd" => :previously_reported_date_of_birth,
|
1250
|
+
"prr" => :presented_to_receivers,
|
1251
|
+
"psa" => :property_sale_approved,
|
1252
|
+
"psc" => :property_sale_closed,
|
1253
|
+
"psf" => :property_sale_confirmation,
|
1254
|
+
"ptd" => :paid_to_date,
|
1255
|
+
"pto" => :plan_to_obsolete,
|
1256
|
+
"rap" => :receiver_appointed,
|
1257
|
+
"res" => :resigned,
|
1258
|
+
"rfd" => :requested_finish,
|
1259
|
+
"rff" => :recovery_finish,
|
1260
|
+
"rfo" => :referred_from,
|
1261
|
+
"rnt" => :rent_survey,
|
1262
|
+
"rrm" => :received_in_the_mail,
|
1263
|
+
"rrt" => :revocation,
|
1264
|
+
"rsd" => :requested_start,
|
1265
|
+
"rss" => :recovery_start,
|
1266
|
+
"rto" => :referred_to,
|
1267
|
+
"scv" => :social_security_claims_verification,
|
1268
|
+
"sdd" => :sole_directorship_date,
|
1269
|
+
"sfh" => :subsequent_federal_housing_authority_claim_payment,
|
1270
|
+
"stn" => :transition,
|
1271
|
+
"sva" => :subsequent_veterans_administration_claim_payment,
|
1272
|
+
"tsr" => :trade_style_registered,
|
1273
|
+
"tss" => :trial_started,
|
1274
|
+
"tst" => :trial_set,
|
1275
|
+
"vat" => :value_added_tax_vat_claims_verification,
|
1276
|
+
"vlu" => :valid_until,
|
1277
|
+
"w01" => :sample_collected,
|
1278
|
+
"w02" => :status_change,
|
1279
|
+
"w03" => :construction_start,
|
1280
|
+
"w05" => :recompletion,
|
1281
|
+
"w06" => :last_logged,
|
1282
|
+
"w07" => :well_log_run,
|
1283
|
+
"w08" => :surface_casing_authority_approval,
|
1284
|
+
"w09" => :reached_total_depth,
|
1285
|
+
"w10" => :spacing_order_unit_assigned,
|
1286
|
+
"w11" => :rig_arrival,
|
1287
|
+
"w12" => :location_exception_order_number_assigned,
|
1288
|
+
"w13" => :sidetracked_wellbore,
|
1289
|
+
"waa" => :time_employee_began_work,
|
1290
|
+
"way" => :waybill,
|
1291
|
+
"yxx" => :programmed_fiscal_year,
|
1292
|
+
"yxy" => :programmed_calendar_year,
|
1293
|
+
"zzz" => :mutually_defined,
|
1294
|
+
},
|
1295
|
+
2 => {
|
1296
|
+
"cc" => :first_two_digits_of_year_expressed_in_format_ccyythe_first_two_characters_in_the_year_ccyy,
|
1297
|
+
"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,
|
1298
|
+
"cm" => :date_in_format_ccyymm,
|
1299
|
+
"cq" => :date_in_format_ccyyqdate_expressed_as_year_year_year_year_eg_1996_and_q_as_quarter_within_that_year,
|
1300
|
+
"cy" => :year_expressed_in_format_ccyy,
|
1301
|
+
"d6" => :date_expressed_in_format_yymmdd,
|
1302
|
+
"d8" => :date_expressed_in_format_ccyymmdd,
|
1303
|
+
"da" => :range_of_dates_within_a_single_month_expressed_in_format_dddd,
|
1304
|
+
"db" => :date_expressed_in_format_mmddccyy,
|
1305
|
+
"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,
|
1306
|
+
"ddt" => :range_of_dates_and_time_expressed_in_ccyymmddccyymmddhhmm,
|
1307
|
+
"dt" => :date_and_time_expressed_in_format_ccyymmddhhmm,
|
1308
|
+
"dtd" => :range_of_dates_and_time_expressed_in_ccyymmddhhmmccyymmdd,
|
1309
|
+
"dts" => :range_of_date_and_time_expressed_in_format_ccyymmddhhmmssccyymmddhhmmss,
|
1310
|
+
"eh" => :last_digit_of_year_and_julian_date_expressed_in_format_yddd,
|
1311
|
+
"ka" => :date_expressed_in_format_yymmmdddate_expressed_as_year_year_month_month_month_day_day_eg_94jan01,
|
1312
|
+
"mcy" => :mmccyy,
|
1313
|
+
"md" => :month_of_year_and_day_of_month_expressed_in_format_mmdd,
|
1314
|
+
"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,
|
1315
|
+
"rd" => :range_of_dates_expressed_in_format_mmddccyymmddccyy,
|
1316
|
+
"rd2" => :range_of_years_expressed_in_format_yyyy,
|
1317
|
+
"rd4" => :range_of_years_expressed_in_format_ccyyccyy,
|
1318
|
+
"rd5" => :range_of_years_and_months_expressed_in_format_ccyymmccyymm,
|
1319
|
+
"rd6" => :range_of_dates_expressed_in_format_yymmddyymmdd,
|
1320
|
+
"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,
|
1321
|
+
"rdm" => :range_of_dates_expressed_in_format_yymmddmmdd,
|
1322
|
+
"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,
|
1323
|
+
"rmd" => :range_of_months_and_days_expressed_in_format_mmddmmdd,
|
1324
|
+
"rmy" => :range_of_years_and_months_expressed_in_format_yymmyymm,
|
1325
|
+
"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,
|
1326
|
+
"rts" => :date_and_time_expressed_in_format_ccyymmddhhmmss,
|
1327
|
+
"tc" => :julian_date_expressed_in_format_ddd,
|
1328
|
+
"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,
|
1329
|
+
"tq" => :date_expressed_in_format_mmyy,
|
1330
|
+
"tr" => :date_and_time_expressed_in_format_ddmmyyhhmm,
|
1331
|
+
"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,
|
1332
|
+
"tt" => :date_expressed_in_format_mmddyy,
|
1333
|
+
"tu" => :date_expressed_in_format_yyddd,
|
1334
|
+
"un" => :unstructured,
|
1335
|
+
"ym" => :year_and_month_expressed_in_format_yymm,
|
1336
|
+
"ymm" => :range_of_year_and_months_expressed_in_ccyymmmmmm_format,
|
1337
|
+
"yy" => :last_two_digits_of_year_expressed_in_format_ccyythe_year_in_the_century_00_to_99,
|
1338
|
+
}
|
1339
|
+
}
|
1340
|
+
end
|
1341
|
+
end
|
1342
|
+
end
|