aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D01B/Segments/SEQ.hs
blob: daacc6abcd4d55920cb38c793fbb48de66c95f82 (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
{-# LANGUAGE OverloadedStrings #-}

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

module Text.Edifact.D01B.Segments.SEQ
  ( -- * Definition
    segmentSEQ
    -- * Dependencies
  , compositeC286
  , simple1229
  ) where

import           Text.Edifact.D01B.Composites (compositeC286)
import           Text.Edifact.D01B.Simples    (simple1229)

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

-- | Derived from this specification:
--
-- >        SEQ  SEQUENCE DETAILS
-- >
-- >        Function: To provide details relating to the sequence.
-- >
-- > 010    1229 ACTION REQUEST/NOTIFICATION DESCRIPTION
-- >             CODE                                       C    1 an..3
-- >
-- > 020    C286 SEQUENCE INFORMATION                       C    1
-- >        1050  Sequence position identifier              M      an..10
-- >        1159  Sequence identifier source code           C      an..3
-- >        1131  Code list identification code             C      an..17
-- >        3055  Code list responsible agency code         C      an..3
--
-- Dependencies: 'compositeC286', 'simple1229'.
segmentSEQ :: Parser Value
segmentSEQ =
  segment "SEQ"
    [ "010" .@ optional  simple1229
    , "020" .@ optional  compositeC286
    ]