diff --git a/schemas/LoanStatusResponse.json b/schemas/LoanStatusResponse.json index d749d3b..f6b4496 100644 --- a/schemas/LoanStatusResponse.json +++ b/schemas/LoanStatusResponse.json @@ -2,6 +2,7 @@ "type": "object", "required": [ "customerId", + "transactionId", "loans", "resultCode", "resultDescription" @@ -12,6 +13,11 @@ "description": "Unique identifier of a user", "example": "CN621868" }, + "transactionId": { + "type": "string", + "description": "Unique identifier of transaction. This transaction Id must be consistent across all platforms", + "example": "Tr201712RK9232P115" + }, "loans": { "type": "array", "description": "Array of loan entities. If customer doesn't have a loan, this array will be empty", @@ -47,13 +53,13 @@ "description": "Initial loan amount", "example": 10000.0 }, - "defaultFee": { + "defaultPenaltyFee": { "type": "number", "format": "double", "description": "Penalty fee amount", "example": 0.0 }, - "continiousFee": { + "continuousFee": { "type": "number", "format": "double", "description": "Interest fee charged continuously. First occurs when payment is delayed",