]> git.immae.eu Git - github/fretlink/edi-parser.git/blob - specification/src/Text/Edifact/D96A/Composites/C235.hs
Release code as open source
[github/fretlink/edi-parser.git] / specification / src / Text / Edifact / D96A / Composites / C235.hs
1 {-# LANGUAGE OverloadedStrings #-}
2
3 ---- Machine generated code.
4 ---- Output of edi-parser-scaffolder
5
6 module Text.Edifact.D96A.Composites.C235
7 ( -- * Definition
8 compositeC235
9 -- * Dependencies
10 , simple8158
11 , simple8186
12 ) where
13
14 import Text.Edifact.D96A.Simples (simple8158, simple8186)
15
16 import Text.Edifact.Parsing
17 import Text.Edifact.Types (Value)
18
19 -- | Derived from this specification:
20 --
21 -- > C235 HAZARD IDENTIFICATION
22 -- >
23 -- > Desc: Identification of the Orange placard required on the means
24 -- > of transport.
25 -- >
26 -- > 010 8158 Hazard identification number, upper part C an..4
27 -- > 020 8186 Substance identification number, lower part C an4
28 --
29 -- Dependencies: 'simple8158', 'simple8186'.
30 compositeC235 :: Parser Value
31 compositeC235 =
32 composite "C235"
33 [ "010" .@ optional simple8158
34 , "020" .@ optional simple8186
35 ]