aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D96A/Composites/C224.hs
blob: a352d7e4d27f369d2f307613ad96c1dde4e29f58 (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
{-# LANGUAGE OverloadedStrings #-}

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

module Text.Edifact.D96A.Composites.C224
  ( -- * Definition
    compositeC224
    -- * Dependencies
  , simple1131
  , simple3055
  , simple8154
  , simple8155
  ) where

import           Text.Edifact.D96A.Simples (simple1131, simple3055, simple8154,
                                            simple8155)

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

-- | Derived from this specification:
--
-- >       C224  EQUIPMENT SIZE AND TYPE
-- >
-- >       Desc: Code and/or name identifying size and type of equipment
-- >             used in transport. Code preferred.
-- >
-- > 010   8155   Equipment size and type identification        C  an..10
-- > 020   1131   Code list qualifier                           C  an..3
-- > 030   3055   Code list responsible agency, coded           C  an..3
-- > 040   8154   Equipment size and type                       C  an..35
--
-- Dependencies: 'simple1131', 'simple3055', 'simple8154', 'simple8155'.
compositeC224 :: Parser Value
compositeC224 =
  composite "C224"
    [ "010" .@ optional  simple8155
    , "020" .@ optional  simple1131
    , "030" .@ optional  simple3055
    , "040" .@ optional  simple8154
    ]