This is an automated email from the ASF dual-hosted git repository.
arnold pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git
The following commit(s) were added to refs/heads/develop by this push:
new 2fe1b0e7d FINERACT-1971: Fix for allowing null default values for
LoanAccountDeliquencyRangeDataV1 avro schema for installment level delinquency
info
2fe1b0e7d is described below
commit 2fe1b0e7d3e0c89070bb37a9e354dead4131c69d
Author: Arnold Galovics <[email protected]>
AuthorDate: Mon Jan 8 13:46:35 2024 +0100
FINERACT-1971: Fix for allowing null default values for
LoanAccountDeliquencyRangeDataV1 avro schema for installment level delinquency
info
---
.../main/avro/loan/v1/LoanAccountDelinquencyRangeDataV1.avsc | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git
a/fineract-avro-schemas/src/main/avro/loan/v1/LoanAccountDelinquencyRangeDataV1.avsc
b/fineract-avro-schemas/src/main/avro/loan/v1/LoanAccountDelinquencyRangeDataV1.avsc
index 95d504c54..53fca4268 100644
---
a/fineract-avro-schemas/src/main/avro/loan/v1/LoanAccountDelinquencyRangeDataV1.avsc
+++
b/fineract-avro-schemas/src/main/avro/loan/v1/LoanAccountDelinquencyRangeDataV1.avsc
@@ -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"
+ }
+ ]
}
]
}