SWIFT MT940 bank statement format JS parser
https://github.com/a-fas/mt940js library without rounding amount
This if fork ofmt940js is a SWIFT mt940 bank statement format parser for javascript (ES2015). Takes in text of mt940 file, puts out array of parsed statements and transactions. See examples below.
Installation
npm install mt940js
API and usage
Main parser class - Parser
- parses input text (e.g. read from a file) into array of statements (a file may contain one or more). Each output statement contains a set of attributes, describing opening balance, statement number, etc and also an array of transactions.
Example
const mt940js = require('mt940js');
const parser = new mt940js.Parser();
const statements = parser.parse(fs.readFileSync('./some_path', 'utf8'));
for (let s of statements) {
console.log(s.number.statement, s.statementDate);
for (let t of s.transactions) {
console.log(t.amount, t.currency);
}
}
Statement
-
transactionReference
{string} - tag 20 reference -
relatedReference
{string} - tag 21 reference, optional -
accountIdentification
{string} - tag 25 own bank account identification -
number.statement
{string} - tag 28 main statement number -
number.sequence
{string} - tag 28 statement sub number (sequence), optional -
number.section
{string} - tag 28 statement sub sub number (present on some banks), optional -
openingBalanceDate
{Date} - tag 60 statement opening date -
closingBalanceDate
{Date} - tag 62 statement closing date -
closingAvailableBalanceDate
{Date} - tag 64 closing available balance date, default = closing date -
forwardAvailableBalanceDate
{Date} - tag 65 forward available balance date, default = closing available date -
statementDate
{Date} - abstraction for statement date =closingBalanceDate
-
currency
{string} - statement currency (USD, EUR ...) -
openingBalance
{Number} - beginning balance of the statement (with sign, based on debit/credit mark) -
closingBalance
{Number} - ending balance of the statement (with sign, based on debit/credit mark) -
closingAvailableBalance
{Number} - tag 64 closing available balance, default = closing balance -
forwardAvailableBalance
{Number} - tag 65 forward available balance, default = closing available -
informationToAccountOwner
{string} - additional statement level information -
transactions
{array} - collection of transactions -
messageBlocks
{object} - statement message blocks, if present (EXPERIMENTAL)
Each Transaction contains data of tag 61 (and tag 86 for details)
-
date
{Date} - transaction date -
amount
{Number} - transaction amount (with sign, Credit+, Debit-) -
reversal
{Boolean} - transaction is a reversal -
currency
{string} - transaction currency (copy of statement currency) -
details
{string} - content of relevant 86 tag(s), may be multiline (\n
separated) -
transactionType
{string} - MT940 transaction type code (e.g. NTRF ...) -
reference
{string} - payment reference field -
entryDate
{Date} - entry date field, optional -
fundsCode
{string} - funds code field, optional -
bankReference
{string} - bank reference, optional -
extraDetails
{string} - extra details (supplementary details), optional -
structuredDetails
{Object} - structured details if detected, in for of{ subtag: value }
e.g.{ '20': '123456' }
-
nonSwift
{string} - optional, content of NS tag which happened in the context of transaction (after tags 61 or 86), can be multiline (separated by\n
)
Each statement is validated for:
- all strictly required tags
- opening/closing balance currency is the same
- opening balance + turnover = closing balance
Invocation
The Parser
has just one method - parse(data, withTags = false)
- which will convert raw mt940 string to an array of statements described above. The optional withTags
parameter would preserve parsed tags to an additional tags
attribute of a statement (for any additional further analysis).
Support for field 86 structure
Currently the library supports the following tag formats:
-
'<sep>DD'
, where<sep>
can be'>'
or'?'
-
'/TAG/value'
, whereTAG
is 2 to 4 uppercase chars.
Example:
'>20some details >30more data'
or
'/ORDP/Smith Corp'
The parser attempts to detect if field 86 contains tags like these and, if yes, adds structuredDetails
attribute to a statement line. Tag digits are not interpreted as they are not standardized among different banks. Parsing 86 structure can be force disabled by passing { no86Structure: true }
to the constructor.
// let incoming file contain one line with 86 field:
// '>20some details>30more data'
const statements = ... // parsing here
for (let s of statements) {
for (let t of s.transactions) {
console.log(t.structuredDetails);
// { '20': 'some details',
// '30': 'more data' }
}
}
Middlewares
Currently experimental, may change
The library support post processing middlewares which is called before returning parsed result. To append a middleware call usePostParse
passing fn(statement, next)
. Middlewares are called in the order of appending. Middlewares modify statement object directly. Beware that input data may contain several statements, middlewares are called over each of them one by one.
const parser = new Parser();
parser.usePostParse((s, next) => {
s.hasOverdraft = (s.closingBalance < 0);
next();
});
Contribution
Contribution is welcomed :)
TODO
- pre parsing middlewares
- parsing structure of block messages
Author
License
The code is licensed under Apache-2.0 License. Please see LICENSE for details.
Credits
Inspired by https://github.com/WoLpH/mt940