1package Business::EDI::CodeList::HierarchyObjectCodeQualifier;
2
3use base 'Business::EDI::CodeList';
4my $VERSION     = 0.02;
5sub list_number {7173;}
6my $usage       = 'B';
7
8# 7173  Hierarchy object code qualifier                         [B]
9# Desc: Code qualifying an object in a hierarchy.
10# Repr: an..3
11
12my %code_hash = (
13'1' => [ 'Figure',
14    'Hierarchy applying to figures (an illustration showing the components of an item).' ],
15'2' => [ 'Product',
16    'Hierarchy applying to products.' ],
17'3' => [ 'No hierarchy',
18    'No hierarchy to be described.' ],
19'4' => [ 'Data structures',
20    'Objects are related in the hierarchy as data structures.' ],
21'5' => [ 'Sub-assembly',
22    'An item assembled from a number of component parts.' ],
23'6' => [ 'Component part',
24    'Part assembled with other items to produce an assembly.' ],
25'7' => [ 'Technical drawing',
26    'A structured view on how an item is composed.' ],
27'8' => [ 'Financial institution details',
28    'Hierarchy applies to financial institution details information.' ],
29'9' => [ 'Financial data',
30    'Hierarchy applies to financial data information.' ],
31'10' => [ 'Party history',
32    'Hierarchy applies to party history information.' ],
33'11' => [ 'Entity identification',
34    'Hierarchy applies to entity identification information.' ],
35'12' => [ 'Business insurance',
36    'Hierarchy applies to business insurance information.' ],
37'13' => [ 'Credit appraisal',
38    'Hierarchy applies to credit appraisal information.' ],
39'14' => [ 'Location',
40    'Hierarchy applies to location information.' ],
41'15' => [ 'Management details',
42    'Hierarchy applies to management details information.' ],
43'16' => [ 'Operations',
44    'Hierarchy applies to operations information.' ],
45'17' => [ 'Payment handling',
46    'Hierarchy applies to payment handling information.' ],
47'18' => [ 'Public records',
48    'Hierarchy applies to public records information.' ],
49'19' => [ 'Real estate property',
50    'Hierarchy applies to real estate property information.' ],
51'20' => [ 'Related entities',
52    'Hierarchy applies to related entities information.' ],
53'21' => [ 'Data source',
54    'Hierarchy applies to data source information.' ],
55'22' => [ 'Equity holder',
56    'Hierarchy applies to equity holder information.' ],
57'23' => [ 'Summary evaluation',
58    'Hierarchy applies to summary evaluation information.' ],
59'24' => [ 'Report update',
60    'The hierarchy applies to report update information.' ],
61'25' => [ 'Party',
62    'Hierarchy applying to parties.' ],
63'26' => [ 'Central procurement party',
64    'Hierarchy applying to a central procurement party.' ],
65'27' => [ 'Quotation party',
66    'Hierarchy applying to a quotation party.' ],
67'28' => [ 'Operational group',
68    'Hierarchy applying to an operational group.' ],
69'29' => [ 'Juridical group',
70    'Hierarchy applying to a juridical group.' ],
71'30' => [ 'Loan information',
72    'Hierarchy applies to loan information.' ],
73'31' => [ 'Performance',
74    'Hierarchy applies to performance.' ],
75'32' => [ 'Historical performance',
76    'Hierarchy applies to historical performance.' ],
77'33' => [ 'Associated accessory',
78    'The hierarchy applies to associated accessories.' ],
79);
80sub get_codes { return \%code_hash; }
81
821;
83