aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D01B/Simples/S7085.hs
diff options
context:
space:
mode:
Diffstat (limited to 'specification/src/Text/Edifact/D01B/Simples/S7085.hs')
-rw-r--r--specification/src/Text/Edifact/D01B/Simples/S7085.hs103
1 files changed, 103 insertions, 0 deletions
diff --git a/specification/src/Text/Edifact/D01B/Simples/S7085.hs b/specification/src/Text/Edifact/D01B/Simples/S7085.hs
new file mode 100644
index 0000000..15d9caa
--- /dev/null
+++ b/specification/src/Text/Edifact/D01B/Simples/S7085.hs
@@ -0,0 +1,103 @@
1{-# LANGUAGE OverloadedStrings #-}
2
3---- Machine generated code.
4---- Output of edi-parser-scaffolder
5
6module Text.Edifact.D01B.Simples.S7085
7 ( simple7085
8 ) where
9
10import Text.Edifact.Parsing
11import Text.Edifact.Types (Value)
12
13-- | Derived from this specification:
14--
15-- > 7085 Cargo type classification code [B]
16-- >
17-- > Desc: Code specifying the classification of a type of cargo.
18-- >
19-- > Repr: an..3
20-- >
21-- > 1 Documents
22-- > Printed, typed or written matter including leaflets,
23-- > pamphlets, certificates etc., which are not subject to
24-- > import duties and taxes, restrictions and prohibitions.
25-- >
26-- > 2 Low value non-dutiable consignments
27-- > Imported consignments/items/goods in respect of which
28-- > Customs duties and other taxes are waived as they are
29-- > below a value determined by the Customs administration.
30-- >
31-- > 3 Low value dutiable consignments
32-- > Imported consignments/items/goods in respect of which
33-- > Customs duties and other taxes are payable are below a
34-- > certain amount as determined by the Customs
35-- > administration.
36-- >
37-- > 4 High value consignments
38-- > Imported consignments/items/goods which are determined
39-- > as having a value above a certain amount fixed by the
40-- > Customs administration, which may or may not attract
41-- > duties and taxes.
42-- >
43-- > 5 Other non-containerized
44-- > Non-containerized cargo which cannot be categorized by
45-- > any of the other nature of cargo code.
46-- >
47-- > 6 Vehicles
48-- > Vehicles which are not stowed in containers.
49-- >
50-- > 7 Roll-on roll-off
51-- > Cargo transported or to be transported on roll-on roll-
52-- > off vessels and which is transportable on its own wheels
53-- > or stowed on special heavy duty trailers.
54-- >
55-- > 8 Palletized
56-- > Non-containerized cargo which is palletized.
57-- >
58-- > 9 Containerized
59-- > Cargo stowed or to be stowed in a container.
60-- >
61-- > 10 Breakbulk
62-- > Non-containerized cargo stowed in vessels' holds.
63-- >
64-- > 11 Hazardous cargo
65-- > Cargo with dangerous properties, according to
66-- > appropriate dangerous goods regulations.
67-- >
68-- > 12 General cargo
69-- > Cargo of a general nature, not otherwise specified.
70-- >
71-- > 13 Liquid cargo
72-- > Cargo in liquid form.
73-- >
74-- > 14 Temperature controlled cargo
75-- > Cargo transported under specified temperature
76-- > conditions.
77-- >
78-- > 15 Environmental pollutant cargo
79-- > Cargo is an environmental pollutant.
80-- >
81-- > 16 Not-hazardous cargo
82-- > Cargo which is not hazardous.
83-- >
84-- > 17 Diplomatic
85-- > Cargo transported under diplomatic conditions.
86-- >
87-- > 18 Military
88-- > Cargo for military purposes.
89-- >
90-- > 19 Obnoxious
91-- > Cargo that is objectionable to human senses.
92-- >
93-- > 20 Out of gauge
94-- > Cargo that has at least one non-standard dimension.
95-- >
96-- > 21 Household goods and personal effects
97-- > Cargo consisting of household goods and personal
98-- > effects.
99-- >
100-- > 22 Frozen cargo
101-- > Cargo of frozen products.
102simple7085 :: Parser Value
103simple7085 = simple "7085" (alphaNumeric `upTo` 3)