From a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Menou?= Date: Thu, 8 Dec 2016 10:19:15 +0200 Subject: Release code as open source --- .../src/Text/Edifact/D96A/Simples/S7085.hs | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 specification/src/Text/Edifact/D96A/Simples/S7085.hs (limited to 'specification/src/Text/Edifact/D96A/Simples/S7085.hs') diff --git a/specification/src/Text/Edifact/D96A/Simples/S7085.hs b/specification/src/Text/Edifact/D96A/Simples/S7085.hs new file mode 100644 index 0000000..86922f9 --- /dev/null +++ b/specification/src/Text/Edifact/D96A/Simples/S7085.hs @@ -0,0 +1,55 @@ +{-# LANGUAGE OverloadedStrings #-} + +---- Machine generated code. +---- Output of edi-parser-scaffolder + +module Text.Edifact.D96A.Simples.S7085 + ( simple7085 + ) where + +import Text.Edifact.Parsing +import Text.Edifact.Types (Value) + +-- | Derived from this specification: +-- +-- > * 7085 Nature of cargo, coded +-- > +-- > Desc: Code indicating the type of cargo as a rough classification. +-- > +-- > Repr: an..3 +-- > +-- > 1 Documents +-- > Printed, typed or written matter including leaflets, +-- > pamphlets, certificates etc., which are not subject to +-- > import duties and taxes, restrictions and prohibitions. +-- > 2 Low value non-dutiable consignments +-- > Imported consignments/items/goods in respect of which +-- > Customs duties and other taxes are waived as they are +-- > below a value determined by the Customs administration. +-- > 3 Low value dutiable consignments +-- > Imported consignments/items/goods in respect of which +-- > Customs duties and other taxes are payable are below a +-- > certain amount as determined by the Customs +-- > administration. +-- > 4 High value consignments +-- > Imported consignments/items/goods which are determined as +-- > having a value above a certain amount fixed by the +-- > Customs administration, which may or may not attract +-- > duties and taxes. +-- > + 5 Other non-containerized +-- > Non-containerized cargo which cannot be categorized by +-- > any of the other nature of cargo code. +-- > + 6 Vehicles +-- > Vehicles which are not stowed in containers. +-- > + 7 Roll-on roll-off +-- > Cargo transported or to be transported on roll-on roll- +-- > off vessels and which is transportable on its own wheels +-- > or stowed on special heavy duty trailers. +-- > + 8 Palletized +-- > Non-containerized cargo which is palletized. +-- > + 9 Containerized +-- > Cargo stowed or to be stowed in a container. +-- > + 10 Breakbulk +-- > Non-containerized cargo stowed in vessels' holds. +simple7085 :: Parser Value +simple7085 = simple "7085" (alphaNumeric `upTo` 3) -- cgit v1.2.3