-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathintf.ZUGFeRDSubjectCodes.pas
2475 lines (2062 loc) · 55.6 KB
/
intf.ZUGFeRDSubjectCodes.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.}
unit intf.ZUGFeRDSubjectCodes;
interface
uses
System.SysUtils,System.TypInfo
;
type
/// <summary>
/// http://www.stylusstudio.com/edifact/D02A/4451.htm
/// https://www.xrepository.de/details/urn:xoev-de:kosit:codeliste:untdid.4451_4#version
/// </summary>
///
TZUGFeRDSubjectCodes = (
/// <summary>
/// Unknon/ invalid subject code
/// </summary>
Unknown,
/// <summary>
/// Goods item description
/// [7002] Plain language description of the nature of a goods item sufficient to identify it for customs, statistical or transport purposes.
/// </summary>
AAA,
/// <summary>
/// Payment term
/// [4276] Free form description of the conditions of payment between the parties to a transaction.
/// </summary>
AAB,
/// <summary>
/// Dangerous goods additional information
/// [7488] Additional information concerning dangerous substances and/or article in a consignment.
/// </summary>
AAC,
/// <summary>
/// Dangerous goods technical name
/// [7254] Proper shipping name, supplemented as necessary with the correct technical name, by which a dangerous substance or article may be correctly identified, or which is sufficiently informative to permit identification by reference to generally available literature.
/// </summary>
AAD,
/// <summary>
/// Acknowledgement description
/// The content of an acknowledgement.
/// </summary>
AAE,
/// <summary>
/// Rate additional information
/// Specific details applying to rates.
/// </summary>
AAF,
/// <summary>
/// Party instructions
/// Indicates that the segment contains instructions to be passed on to the identified party.
/// </summary>
AAG,
/// <summary>
/// General information
/// The text contains general information.
/// </summary>
AAI,
/// <summary>
/// Additional conditions of sale/purchase
/// Additional conditions specific to this order or project.
/// </summary>
AAJ,
/// <summary>
/// Price conditions
/// Information on the price conditions that are expected or given.
/// </summary>
AAK,
/// <summary>
/// Goods dimensions in characters
/// Expression of a number in characters as length of ten meters.
/// </summary>
AAL,
/// <summary>
/// Equipment re-usage restrictions
/// Technical or commercial reasons why a piece of equipment may not be re-used after the current transport terminates.
/// </summary>
AAM,
/// <summary>
/// Handling restriction
/// Restrictions in handling depending on the technical characteristics of the piece of equipment or on the nature of the goods.
/// </summary>
AAN,
/// <summary>
/// Error description (free text)
/// Error described by a free text.
/// </summary>
AAO,
/// <summary>
/// Response (free text)
/// Free text of the response to a communication.
/// </summary>
AAP,
/// <summary>
/// Package content's description
/// A description of the contents of a package.
/// </summary>
AAQ,
/// <summary>
/// Terms of delivery
/// (4053) Free text of the non Incoterms terms of delivery. For Incoterms, use: 4053.
/// </summary>
AAR,
/// <summary>
/// Bill of lading remarks
/// The remarks printed or to be printed on a bill of lading.
/// </summary>
AAS,
/// <summary>
/// Mode of settlement information
/// Free text information on an IATA Air Waybill to indicate means by which account is to be settled.
/// </summary>
AAT,
/// <summary>
/// Consignment invoice information
/// Information pertaining to the invoice covering the consignment.
/// </summary>
AAU,
/// <summary>
/// Clearance invoice information
/// Information pertaining to the invoice covering clearance of the cargo.
/// </summary>
AAV,
/// <summary>
/// Letter of credit information
/// Information pertaining to the letter of credit.
/// </summary>
AAW,
/// <summary>
/// License information
/// Information pertaining to a license.
/// </summary>
AAX,
/// <summary>
/// Certification statements
/// The text contains certification statements.
/// </summary>
AAY,
/// <summary>
/// Additional export information
/// The text contains additional export information.
/// </summary>
AAZ,
/// <summary>
/// Tariff statements
/// Description of parameters relating to a tariff.
/// </summary>
ABA,
/// <summary>
/// Medical history
/// Historical details of a patients medical events.
/// </summary>
ABB,
/// <summary>
/// Conditions of sale or purchase
/// (4490) (4372) Additional information regarding terms and conditions which apply to the transaction.
/// </summary>
ABC,
/// <summary>
/// Contract document type
/// [4422] Textual representation of the type of contract.
/// </summary>
ABD,
/// <summary>
/// Additional terms and/or conditions (documentary credit)
/// (4260) Additional terms and/or conditions to the documentary credit.
/// </summary>
ABE,
/// <summary>
/// Instructions or information about standby documentary credit
/// Instruction or information about a standby documentary credit.
/// </summary>
ABF,
/// <summary>
/// Instructions or information about partial shipment(s)
/// Instructions or information about partial shipment(s).
/// </summary>
ABG,
/// <summary>
/// Instructions or information about transhipment(s)
/// Instructions or information about transhipment(s).
/// </summary>
ABH,
/// <summary>
/// Additional handling instructions documentary credit
/// Additional handling instructions for a documentary credit.
/// </summary>
ABI,
/// <summary>
/// Domestic routing information
/// Information regarding the domestic routing.
/// </summary>
ABJ,
/// <summary>
/// Chargeable category of equipment
/// Equipment types are coded by category for financial purposes.
/// </summary>
ABK,
/// <summary>
/// Government information
/// Information pertaining to government.
/// </summary>
ABL,
/// <summary>
/// Onward routing information
/// The text contains onward routing information.
/// </summary>
ABM,
/// <summary>
/// Accounting information
/// [4410] The text contains information related to accounting.
/// </summary>
ABN,
/// <summary>
/// Discrepancy information
/// Free text or coded information to indicate a specific discrepancy.
/// </summary>
ABO,
/// <summary>
/// Confirmation instructions
/// Documentary credit confirmation instructions.
/// </summary>
ABP,
/// <summary>
/// Method of issuance
/// Method of issuance of documentary credit.
/// </summary>
ABQ,
/// <summary>
/// Documents delivery instructions
/// Delivery instructions for documents required under a documentary credit.
/// </summary>
ABR,
/// <summary>
/// Additional conditions
/// Additional conditions to the issuance of a documentary credit.
/// </summary>
ABS,
/// <summary>
/// Information/instructions about additional amounts covered
/// Additional amounts information/instruction.
/// </summary>
ABT,
/// <summary>
/// Deferred payment termed additional
/// Additional terms concerning deferred payment.
/// </summary>
ABU,
/// <summary>
/// Acceptance terms additional
/// Additional terms concerning acceptance.
/// </summary>
ABV,
/// <summary>
/// Negotiation terms additional
/// Additional terms concerning negotiation.
/// </summary>
ABW,
/// <summary>
/// Document name and documentary requirements
/// Document name and documentary requirements.
/// </summary>
ABX,
/// <summary>
/// Instructions/information about revolving documentary credit
/// Instructions/information about a revolving documentary credit.
/// </summary>
ABZ,
/// <summary>
/// Documentary requirements
/// Specification of the documentary requirements.
/// </summary>
ACA,
/// <summary>
/// Additional information
/// (4270) The text contains additional information.
/// </summary>
ACB,
/// <summary>
/// Factor assignment clause
/// Assignment based on an agreement between seller and factor.
/// </summary>
ACC,
/// <summary>
/// Reason
/// Reason for a request or response.
/// </summary>
ACD,
/// <summary>
/// Dispute
/// A notice, usually from buyer to seller, that something was found wrong with goods delivered or the services rendered, or with the related invoice.
/// </summary>
ACE,
/// <summary>
/// Additional attribute information
/// The text refers to information about an additional attribute not otherwise specified.
/// </summary>
ACF,
/// <summary>
/// Absence declaration
/// A declaration on the reason of the absence.
/// </summary>
ACG,
/// <summary>
/// Aggregation statement
/// A statement on the way a specific variable or set of variables has been aggregated.
/// </summary>
ACH,
/// <summary>
/// Compilation statement
/// A statement on the compilation status of an array or other set of figures or calculations.
/// </summary>
ACI,
/// <summary>
/// Definitional exception
/// An exception to the agreed definition of a term, concept, formula or other object.
/// </summary>
ACJ,
/// <summary>
/// Privacy statement
/// A statement on the privacy or confidential nature of an object.
/// </summary>
ACK,
/// <summary>
/// Quality statement
/// A statement on the quality of an object.
/// </summary>
ACL,
/// <summary>
/// Statistical description
/// The description of a statistical object such as a value list, concept, or structure definition.
/// </summary>
ACM,
/// <summary>
/// Statistical definition
/// The definition of a statistical object such as a value list, concept, or structure definition.
/// </summary>
ACN,
/// <summary>
/// Statistical name
/// The name of a statistical object such as a value list, concept or structure definition.
/// </summary>
ACO,
/// <summary>
/// Statistical title
/// The title of a statistical object such as a value list, concept, or structure definition.
/// </summary>
ACP,
/// <summary>
/// Off-dimension information
/// Information relating to differences between the actual transport dimensions and the normally applicable dimensions.
/// </summary>
ACQ,
/// <summary>
/// Unexpected stops information
/// Information relating to unexpected stops during a conveyance.
/// </summary>
ACR,
/// <summary>
/// Principles
/// Text subject is principles section of the UN/EDIFACT rules for presentation of standardized message and directories documentation.
/// </summary>
ACS,
/// <summary>
/// Terms and definition
/// Text subject is terms and definition section of the UN/EDIFACT rules for presentation of standardized message and directories documentation.
/// </summary>
ACT,
/// <summary>
/// Segment name
/// Text subject is segment name.
/// </summary>
ACU,
/// <summary>
/// Simple data element name
/// Text subject is name of simple data element.
/// </summary>
ACV,
/// <summary>
/// Scope
/// Text subject is scope section of the UN/EDIFACT rules for presentation of standardized message and directories documentation.
/// </summary>
ACW,
/// <summary>
/// Message type name
/// Text subject is name of message type.
/// </summary>
ACX,
/// <summary>
/// Introduction
/// Text subject is introduction section of the UN/EDIFACT rules for presentation of standardized message and directories documentation.
/// </summary>
ACY,
/// <summary>
/// Glossary
/// Text subject is glossary section of the UN/EDIFACT rules for presentation of standardized message and directories documentation.
/// </summary>
ACZ,
/// <summary>
/// Functional definition
/// Text subject is functional definition section of the UN/EDIFACT rules for presentation of standardized message and directories documentation.
/// </summary>
ADA,
/// <summary>
/// Examples
/// Text subject is examples as given in the example(s) section of the UN/EDIFACT rules for presentation of standardized message and directories documentation.
/// </summary>
ADB,
/// <summary>
/// Cover page
/// Text subject is cover page of the UN/EDIFACT rules for presentation of standardized message and directories documentation.
/// </summary>
ADC,
/// <summary>
/// Dependency (syntax) notes
/// Denotes that the associated text is a dependency (syntax) note.
/// </summary>
ADD,
/// <summary>
/// Code value name
/// Text subject is name of code value.
/// </summary>
ADE,
/// <summary>
/// Code list name
/// Text subject is name of code list.
/// </summary>
ADF,
/// <summary>
/// Clarification of usage
/// Text subject is an explanation of the intended usage of a segment or segment group.
/// </summary>
ADG,
/// <summary>
/// Composite data element name
/// Text subject is name of composite data element.
/// </summary>
ADH,
/// <summary>
/// Field of application
/// Text subject is field of application of the UN/EDIFACT rules for presentation of standardized message and directories documentation.
/// </summary>
ADI,
/// <summary>
/// Type of assets and liabilities
/// Information describing the type of assets and liabilities.
/// </summary>
ADJ,
/// <summary>
/// Promotion information
/// The text contains information about a promotion.
/// </summary>
ADK,
/// <summary>
/// Meter condition
/// Description of the condition of a meter.
/// </summary>
ADL,
/// <summary>
/// Meter reading information
/// Information related to a particular reading of a meter.
/// </summary>
ADM,
/// <summary>
/// Type of transaction reason
/// Information describing the type of the reason of transaction.
/// </summary>
ADN,
/// <summary>
/// Type of survey question
/// Type of survey question.
/// </summary>
ADO,
/// <summary>
/// Carrier's agent counter information
/// Information for use at the counter of the carrier's agent.
/// </summary>
ADP,
/// <summary>
/// Description of work item on equipment
/// Description or code for the operation to be executed on the equipment.
/// </summary>
ADQ,
/// <summary>
/// Message definition
/// Text subject is message definition.
/// </summary>
ADR,
/// <summary>
/// Booked item information
/// Information pertaining to a booked item.
/// </summary>
ADS,
/// <summary>
/// Source of document
/// Text subject is source of document.
/// </summary>
ADT,
/// <summary>
/// Note
/// Text subject is note.
/// </summary>
ADU,
/// <summary>
/// Fixed part of segment clarification text
/// Text subject is fixed part of segment clarification text.
/// </summary>
ADV,
/// <summary>
/// Characteristics of goods
/// Description of the characteristic of goods in addition to the description of the goods.
/// </summary>
ADW,
/// <summary>
/// Additional discharge instructions
/// Special discharge instructions concerning the goods.
/// </summary>
ADX,
/// <summary>
/// Container stripping instructions
/// Instructions regarding the stripping of container(s).
/// </summary>
ADY,
/// <summary>
/// CSC (Container Safety Convention) plate information
/// Information on the CSC (Container Safety Convention) plate that is attached to the container.
/// </summary>
ADZ,
/// <summary>
/// Cargo remarks
/// Additional remarks concerning the cargo.
/// </summary>
AEA,
/// <summary>
/// Temperature control instructions
/// Instruction regarding the temperature control of the cargo.
/// </summary>
AEB,
/// <summary>
/// Text refers to expected data
/// Remarks refer to data that was expected.
/// </summary>
AEC,
/// <summary>
/// Text refers to received data
/// Remarks refer to data that was received.
/// </summary>
AED,
/// <summary>
/// Section clarification text
/// Text subject is section clarification text.
/// </summary>
AEE,
/// <summary>
/// Information to the beneficiary
/// Information given to the beneficiary.
/// </summary>
AEF,
/// <summary>
/// Information to the applicant
/// Information given to the applicant.
/// </summary>
AEG,
/// <summary>
/// Instructions to the beneficiary
/// Instructions made to the beneficiary.
/// </summary>
AEH,
/// <summary>
/// Instructions to the applicant
/// Instructions given to the applicant.
/// </summary>
AEI,
/// <summary>
/// Controlled atmosphere
/// Information about the controlled atmosphere.
/// </summary>
AEJ,
/// <summary>
/// Take off annotation
/// Additional information in plain text to support a take off annotation. Taking off is the process of assessing the quantity work from extracting the measurement from construction documentation.
/// </summary>
AEK,
/// <summary>
/// Price variation narrative
/// Additional information in plain language to support a price variation.
/// </summary>
AEL,
/// <summary>
/// Documentary credit amendment instructions
/// Documentary credit amendment instructions.
/// </summary>
AEM,
/// <summary>
/// Standard method narrative
/// Additional information in plain language to support a standard method.
/// </summary>
AEN,
/// <summary>
/// Project narrative
/// Additional information in plain language to support the project.
/// </summary>
AEO,
/// <summary>
/// Radioactive goods, additional information
/// Additional information related to radioactive goods.
/// </summary>
AEP,
/// <summary>
/// Bank-to-bank information
/// Information given from one bank to another.
/// </summary>
AEQ,
/// <summary>
/// Reimbursement instructions
/// Instructions given for reimbursement purposes.
/// </summary>
AER,
/// <summary>
/// Reason for amending a message
/// Identification of the reason for amending a message.
/// </summary>
AES,
/// <summary>
/// Instructions to the paying and/or accepting and/or negotiating bank
/// Instructions to the paying and/or accepting and/or negotiating bank.
/// </summary>
AET,
/// <summary>
/// Interest instructions
/// Instructions given about the interest.
/// </summary>
AEU,
/// <summary>
/// Agent commission
/// Instructions about agent commission.
/// </summary>
AEV,
/// <summary>
/// Remitting bank instructions
/// Instructions to the remitting bank.
/// </summary>
AEW,
/// <summary>
/// Instructions to the collecting bank
/// Instructions to the bank, other than the remitting bank, involved in processing the collection.
/// </summary>
AEX,
/// <summary>
/// Collection amount instructions
/// Instructions about the collection amount.
/// </summary>
AEY,
/// <summary>
/// Internal auditing information
/// Text relating to internal auditing information.
/// </summary>
AEZ,
/// <summary>
/// Constraint
/// Denotes that the associated text is a constraint.
/// </summary>
AFA,
/// <summary>
/// Comment
/// Denotes that the associated text is a comment.
/// </summary>
AFB,
/// <summary>
/// Semantic note
/// Denotes that the associated text is a semantic note.
/// </summary>
AFC,
/// <summary>
/// Help text
/// Denotes that the associated text is an item of help text.
/// </summary>
AFD,
/// <summary>
/// Legend
/// Denotes that the associated text is a legend.
/// </summary>
AFE,
/// <summary>
/// Batch code structure
/// A description of the structure of a batch code.
/// </summary>
AFF,
/// <summary>
/// Product application
/// A general description of the application of a product.
/// </summary>
AFG,
/// <summary>
/// Customer complaint
/// Complaint of customer.
/// </summary>
AFH,
/// <summary>
/// Probable cause of fault
/// The probable cause of fault.
/// </summary>
AFI,
/// <summary>
/// Defect description
/// Description of the defect.
/// </summary>
AFJ,
/// <summary>
/// Repair description
/// The description of the work performed during the repair.
/// </summary>
AFK,
/// <summary>
/// Review comments
/// Comments relevant to a review.
/// </summary>
AFL,
/// <summary>
/// Title
/// Denotes that the associated text is a title.
/// </summary>
AFM,
/// <summary>
/// Description of amount
/// An amount description in clear text.
/// </summary>
AFN,
/// <summary>
/// Responsibilities
/// Information describing the responsibilities.
/// </summary>
AFO,
/// <summary>
/// Supplier
/// Information concerning suppliers.
/// </summary>
AFP,
/// <summary>
/// Purchase region
/// Information concerning the region(s) where purchases are made.
/// </summary>
AFQ,
/// <summary>
/// Affiliation
/// Information concerning an association of one party with another party(ies).
/// </summary>
AFR,
/// <summary>
/// Borrower
/// Information concerning the borrower.
/// </summary>
AFS,
/// <summary>
/// Line of business
/// Information concerning an entity's line of business.
/// </summary>
AFT,
/// <summary>
/// Financial institution
/// Description of financial institution(s) used by an entity.
/// </summary>
AFU,
/// <summary>
/// Business founder
/// Information about the business founder.
/// </summary>
AFV,
/// <summary>
/// Business history
/// Description of the business history.
/// </summary>
AFW,
/// <summary>
/// Banking arrangements
/// Information concerning the general banking arrangements.
/// </summary>
AFX,
/// <summary>
/// Business origin
/// Description of the business origin.
/// </summary>
AFY,
/// <summary>
/// Brand names' description
/// Description of the entity's brands.
/// </summary>
AFZ,
/// <summary>
/// Business financing details
/// Details about the financing of the business.
/// </summary>
AGA,
/// <summary>
/// Competition
/// Information concerning an entity's competition.
/// </summary>
AGB,
/// <summary>
/// Construction process details
/// Details about the construction process.
/// </summary>
AGC,
/// <summary>
/// Construction specialty
/// Information concerning the line of business of a construction entity.
/// </summary>
AGD,
/// <summary>
/// Contract information
/// Details about contract(s).
/// </summary>
AGE,
/// <summary>
/// Corporate filing
/// Details about a corporate filing.
/// </summary>
AGF,
/// <summary>
/// Customer information