aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D01B/Simples/S9015.hs
diff options
context:
space:
mode:
Diffstat (limited to 'specification/src/Text/Edifact/D01B/Simples/S9015.hs')
-rw-r--r--specification/src/Text/Edifact/D01B/Simples/S9015.hs38
1 files changed, 38 insertions, 0 deletions
diff --git a/specification/src/Text/Edifact/D01B/Simples/S9015.hs b/specification/src/Text/Edifact/D01B/Simples/S9015.hs
new file mode 100644
index 0000000..37574cb
--- /dev/null
+++ b/specification/src/Text/Edifact/D01B/Simples/S9015.hs
@@ -0,0 +1,38 @@
1{-# LANGUAGE OverloadedStrings #-}
2
3---- Machine generated code.
4---- Output of edi-parser-scaffolder
5
6module Text.Edifact.D01B.Simples.S9015
7 ( simple9015
8 ) where
9
10import Text.Edifact.Parsing
11import Text.Edifact.Types (Value)
12
13-- | Derived from this specification:
14--
15-- > 9015 Status category code [B]
16-- >
17-- > Desc: Code specifying the category of a status.
18-- >
19-- > Repr: an..3
20-- >
21-- > 1 Transport
22-- > Status type is related to transport.
23-- >
24-- > 2 Order administration
25-- > Status type is related to order administration.
26-- >
27-- > 3 Inspection result
28-- > To specify the result of an inspection.
29-- >
30-- > 4 Publication issue claim
31-- > The status reported is related to a publication issue
32-- > claim.
33-- >
34-- > 5 Legal category
35-- > Status category is of, related to or concerned with the
36-- > law.
37simple9015 :: Parser Value
38simple9015 = simple "9015" (alphaNumeric `upTo` 3)