1package Business::EDI::CodeList::RequirementOrConditionDescriptionIdentifier;
2
3use base 'Business::EDI::CodeList';
4my $VERSION     = 0.02;
5sub list_number {7295;}
6my $usage       = 'B';
7
8# 7295  Requirement or condition description identifier         [B]
9# Desc: Code specifying a requirement or condition.
10# Repr: an..17
11
12my %code_hash = (
13'1' => [ 'Service provider determined service',
14    'The service was determined by the service provider.' ],
15'2' => [ 'All X-rays specifically requested',
16    'All X-rays specifically requested.' ],
17'3' => [ 'Not for comparison',
18    'Not for comparison.' ],
19'4' => [ 'Contiguous body area service with different set-up',
20    'The service on contiguous body area that required different set-up.' ],
21'5' => [ 'Non-contiguous body areas service',
22    'The service was conducted on non-contiguous body areas.' ],
23'6' => [ 'Three hours or more between services',
24    'Three hours or more between the services.' ],
25'7' => [ 'Left body part service',
26    'Service was conducted on the left part of the body.' ],
27'8' => [ 'Lost referral',
28    'The referral has been lost.' ],
29'9' => [ 'Necessary emergency and/or immediate treatment',
30    'Treatment was necessary as it was an emergency and/or immediately required.' ],
31'10' => [ 'Second visit in one day',
32    'Second visit in one day.' ],
33'11' => [ 'Separate procedure',
34    'The procedure is separate.' ],
35'12' => [ 'Not usual medical after-care',
36    'Post treatment medical care which differs from the usual post treatment medical care.' ],
37'13' => [ 'Right body part service',
38    'Service was conducted on the right part of the body.' ],
39);
40sub get_codes { return \%code_hash; }
41
421;
43