aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D96A/Simples/S8053.hs
blob: fa3fe00157bde408a53a43d7774b94cc410ff090 (plain) (blame)
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
{-# LANGUAGE OverloadedStrings #-}

---- Machine generated code.
---- Output of edi-parser-scaffolder

module Text.Edifact.D96A.Simples.S8053
  ( simple8053
  ) where

import           Text.Edifact.Parsing
import           Text.Edifact.Types   (Value)

-- | Derived from this specification:
--
-- >   8053  Equipment qualifier
-- >
-- >   Desc: Code identifying type of equipment.
-- >
-- >   Repr: an..3
-- >
-- >    AA     Ground equipment
-- >              Ground equipment being fuelled or serviced.
-- >    AB     Chain
-- >              Chain used in the securing of cargo.
-- >    AD     Temperature recorder
-- >              Temperature recorder to provide a record of the actual
-- >              temperature.
-- >    AE     Body trailer
-- >              The part of the vehicle where the cargo is loaded.
-- >    BL     Blocks
-- >              A piece of equipment that is normally a piece of wood to
-- >              fix cargo (e.g. coils) during transport.
-- >    BPN    Box pallet non exchangeable
-- >              Self explanatory.
-- >    BPY    Box pallet EUR Y non exchangeable
-- >              Self explanatory.
-- >    BR     Barge
-- >              Flat bottomed inland cargo vessel for canals and rivers
-- >              with or without own propulsion for the purpose of
-- >              transported goods. (Synonym: Lighter).
-- >    BX     Boxcar
-- >              Description to be provided.
-- >    CH     Chassis
-- >              A wheeled carriage onto which an ocean container is
-- >              mounted for inland conveyance.
-- >    CN     Container
-- >              Equipment item as defined by ISO for transport. It must
-- >              be of: A) permanent character, strong enough for repeated
-- >              use; B) designed to facilitate the carriage of goods, by
-- >              one or more modes of transport, without intermediate
-- >              reloading; C) fitted with devices for its ready handling,
-- >              particularly.
-- >    DPA    Deadlight (panel)
-- >              Self explanatory.
-- >    EFP    Exchangeable EUR flat pallet
-- >              Self explanatory.
-- >    EYP    Exchangeable EUR Y box pallet
-- >              Self explanatory.
-- >    FPN    Flat pallet EUR non exchangeable
-- >              Self explanatory.
-- >    FPR    Flat pallet (railway property) non exchangeable
-- >              Self explanatory.
-- >    FSU    Forked support
-- >              Self explanatory.
-- >    LAR    Lashing rope
-- >              Self explanatory.
-- >    LU     Load/unload device on equipment
-- >              A mechanical device used in the loading and/or unloading
-- >              of cargo into and from transport equipment.
-- >    MPA    Movable panel
-- >              Self explanatory.
-- >    PA     Pallet
-- >              A platform on which goods can be stacked in order to
-- >              facilitate the movement by a forklift or sling.
-- >    PBP    Identified private box pallet
-- >              Self explanatory.
-- >    PFP    Identified private flat pallet
-- >              Self explanatory.
-- >    PL     Platform
-- >              A piece of equipment normally having a flat surface, or
-- >              prepared for carrying cargo with a specific shape.
-- >    PPA    Protecting panel
-- >              Self explanatory.
-- >    PST    Portable stove
-- >              Self explanatory.
-- >    RF     Flat car
-- >              Description to be provided.
-- >    RG     Reefer generator
-- >              A generator used to control the temperature in
-- >              temperature-controlled transport equipment.
-- >    RGF    Ground facility
-- >              Storage tank or facility capable of receiving shipment of
-- >              goods or commodity.
-- >    RO     Rope
-- >              Rope used in the securing of cargo.
-- >    RR     Rail car
-- >              [8320] Registered identification number of railway wagon
-- >              (CIM 19).
-- >    SCA    Small container category A
-- >              Self explanatory.
-- >    SCB    Small container category B
-- >              Self explanatory.
-- >    SCC    Small container category C
-- >              Self explanatory.
-- >    SFA    Stiffening ring of frame
-- >              Self explanatory.
-- >    SPP    Identified special pallet
-- >              Self explanatory.
-- >    STR    Strap
-- >              Self explanatory.
-- >    SW     Swap body
-- >              Rectangular equipment unit without wheels, which can be
-- >              mounted on a chassis or positioned on legs.
-- >    TE     Trailer
-- >              A vehicle without motive power, designed for the carriage
-- >              of cargo and to be towed by a motor vehicle.
-- >    TP     Tarpaulin
-- >              Waterproof material, e.g. canvas, to spread over cargo to
-- >              protect it from getting wet.
-- >    TS     Tackles
-- >              [8030] Identification marks and numbers of loading tackle
-- >              used (sheets, ropes, chains, etc..), as specified in DCU
-- >              9 to CIM Article 13; and of containers, as specified in
-- >              Articles 5 and 10 of Annex III to CIM (CIM 17).
-- >    TSU    Tarpaulin support
-- >              Self explanatory.
-- >    UL     ULD (Unit load device)
-- >              An aircraft container or pallet.
simple8053 :: Parser Value
simple8053 = simple "8053" (alphaNumeric `upTo` 3)