Skip to content

Commit

Permalink
FINERACT-1971: Fix for allowing null default values for LoanAccountDe…
Browse files Browse the repository at this point in the history
…liquencyRangeDataV1 avro schema for installment level delinquency info
  • Loading branch information
galovics committed Jan 9, 2024
1 parent 5d96e8c commit 2fe1b0e
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,15 @@
]
},
{
"default": null,
"name": "installmentDelinquencyBuckets",
"type": {
"type": "array",
"items": "org.apache.fineract.avro.loan.v1.LoanInstallmentDelinquencyBucketDataV1"
}
"type": [
"null",
{
"type": "array",
"items": "org.apache.fineract.avro.loan.v1.LoanInstallmentDelinquencyBucketDataV1"
}
]
}
]
}

0 comments on commit 2fe1b0e

Please sign in to comment.