Skip to content

Commit

Permalink
Merge pull request DocumindHQ#2 from DocumindHQ/issue-1
Browse files Browse the repository at this point in the history
Fixes DocumindHQ#1 - Incorrect extraction result
  • Loading branch information
Tammilore authored Nov 18, 2024
2 parents d911217 + 5761b32 commit 8b246c8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,34 +158,34 @@ Here’s an example of what the extracted result might look like:
"pages": 1,
"data": {
"accountNumber": "100002345",
"openingBalance": $3200,
"openingBalance": 3200,
"transactions": [
{
"date": "2021-05-12",
"creditAmount": null,
"debitAmount": $100,
"debitAmount": 100,
"description": "transfer to Tom"
},
{
"date": "2021-05-12",
"creditAmount": $50,
"creditAmount": 50,
"debitAmount": null,
"description": "For lunch the other day"
},
{
"date": "2021-05-13",
"creditAmount": $20,
"creditAmount": 20,
"debitAmount": null,
"description": "Refund for voucher"
},
{
"date": "2021-05-13",
"creditAmount": null,
"debitAmount": $750,
"debitAmount": 750,
"description": "May's rent"
}
],
"closingBalance": $2420
"closingBalance": 2420
},
"fileName": "bank_statement.pdf",
}
Expand Down

0 comments on commit 8b246c8

Please sign in to comment.