EDIFACT D.01B (2001) Standard Definitions - 4 Message Types
npm install @ediflow/edifact-d01b> EDIFACT D.01B (2001) Standard Definitions



EDIFACT D.01B ⢠4 Message Types ⢠MIT Licensed ⢠Free
---
This package contains EDIFACT D.01B (2001) standard definitions for use with @ediflow/core.
Includes:
- Message structures (4 message types)
- Segment definitions
- Element definitions
- Composite definitions
- Code lists
Version: D.01B (2001) - Intermediate EDIFACT standard
---
``bashInstall core library (required)
npm install @ediflow/core
---
š Supported Message Types (4)
| Message Type | Description | Use Case |
|--------------|-------------|----------|
| IFCSUM | Forwarding & Consolidation Summary | Freight forwarding |
| IFTMIN | Forwarding & Transport Message | Transport instructions |
| IFTSTA | Transport Status Message | Shipment tracking |
| INVOIC | Invoice | Billing documents |
---
š Usage Example
`typescript
import { DIContainer } from '@ediflow/core';const container = DIContainer.getInstance();
const parseUseCase = container.resolve('ParseEDIUseCase');
const validateUseCase = container.resolve('ValidateMessageUseCase');
// Parse EDIFACT message
const parsed = parseUseCase.execute({
message: edifactString,
standard: 'EDIFACT'
});
// Validate against D.01B structure
const validation = validateUseCase.execute({
message: parsed.message,
messageType: 'IFTMIN',
version: 'D01B',
repositoryPath: './node_modules/@ediflow/edifact-d01b/data'
});
if (validation.success) {
console.log('ā
Valid D.01B IFTMIN message!');
}
`---
š Package Contents
`
@ediflow/edifact-d01b/
āāā data/
āāā codes/ # Code lists
āāā composites.json # Composite elements
āāā elements.json # Data elements
āāā messages/ # Message structures (4 types)
ā āāā IFCSUM.json
ā āāā IFTMIN.json
ā āāā IFTSTA.json
ā āāā INVOIC.json
āāā segments.json # Segment definitions
`Package Size: ~0.36 MB
---
šÆ When to Use D.01B
Use D.01B if:
- ā
Trading partner requires D.01B specifically
- ā
Legacy system integration (2001-2010 era)
- ā
Transportation & logistics focus
- ā
Freight forwarding industry
Consider other versions if:
- š D.20B - Latest standard (2020) - More message types
- š D.12A - Comprehensive (196 message types)
- š D.96A - Older standard (1996) - 7 message types
---
š¦ Related Packages
@ediflow/core - Core library (REQUIRED)@ediflow/edifact-d96a - D.96A (1996) - 7 messages
- @ediflow/edifact-d20b - D.20B (2020) - 7 messages
- @ediflow/edifact-d12a` - D.12A (2012) - 196 messages---
- Quick Start Guide
- Main README
- Architecture
---
Data corrections or additional message types? We welcome contributions!
- Report issues
- Contribute
---
MIT License - see LICENSE
---
- GitHub: ediflow-lib/core
- NPM: @ediflow/edifact-d01b
- Core Package: @ediflow/core
---
Made with ā¤ļø for the EDI community