Improved Parsing of Numbers and Dates (EDI Converter Release 2.14.4)
We’re pleased to announce the release 2.14.4 of our EDI Converter.
This release provides a more complete support for parsing and converting 835 and 837 transactions.
Most notably, it introduces objects to support provider-level adjustments (PLB segment) in 835.
It also provides support for outpatient and inpatient adjudication information in 835 and 837 (MOA and MIA segments).
We’ve also improved the internal logic of our EDI parser. You no longer need to explicitly provide the splitTran parameter. The parser now automatically splits large 835/837/834 transactions using CLP/CLM/INS segments; for all other transactions, the parser will parse the entire transaction.
New JSON Objects
- PLB codes
- Update CARC codes
- split tran is now automatic
- progress-chunk-size
- Control segments are now picked up
- Got rid of sender/receiver in transaction
- PLB
- BHT01: 835 type
- REF*EV (receiver identifier when different from Payee) Additional ID
- BPR01 : Transaction type
- TRN04: Supplemental Code, same with BPR11
- BPR:
- 05: format
- 7
- 9
- BPR10: Originating Company Identifier
- BPR11: Supplemental code
- 13
- MIA/MOA (835 and 837)
- Logic for payer ID
- insured_subscriber instead of subscriber
- relationship type id not set to SELF by default
This release improves conversion of X12 data types, including more intuitive conversion error messages.
We also fixed several bugs related to parsing 810 transactions and a few others.
How to Upgrade
API Docker container
Update the image tag to repo.datainsight.health/ediconvert:2.11 and pull the new image.
The latest docker-compose file is always available in our GitHub repo.
To see the version number, invoke the about endpoint, e.g., curl http://localhost:5080/api/about.
CLI tool
- Download the new version from this link, unzip.
- Replace the content of your existing installation with the files from the new version, including
libandconffolders. Do not delete your license file. - Run
ediconvert -Vto view the version number; the output should contain theediconvert 2.11.3line.
EDI Parser for Java
Update the version number of the “edi” dependency in your build.gradle or pom.xml:
implementation "hdi:edi:2.11.3"