Loan cancellation error occurred
Event generated when a loan cancellation fails.
Type: object
Domain: lending
Event: loan_cancellation_error
Version: 1
|
org_id required
Title: The org identifier
Description: This field identifies the organization that is owner of this loan.
Type: string
Example:
89e56522-726a-453e-ba6d-796b03245128
loan_id required
Title: The loan identifier
Description: This field identifies the id of the loan.
Type: string
Example:
ded913af-abc9-4769-b179-068ed6181ec5
account_id required
Title: The loan account id
Description: This field identifies the account id of the loan.
Type: number
Example:
104336697
external_id required
Title: The loan external id
Description: This field identifies the external id of the loan.
Type: string
Example:
cca6041c-b57d-44cf-a203-eeea22723878
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"title": "Loan cancellation error occurred",
"description": "Event generated when a loan cancellation fails.",
"required": [
"org_id",
"loan_id",
"account_id",
"external_id"
],
"properties": {
"org_id": {
"$id": "#/properties/org_id",
"type": "string",
"title": "The org identifier",
"description": "This field identifies the organization that is owner of this loan.",
"examples": [
"89e56522-726a-453e-ba6d-796b03245128"
]
},
"loan_id": {
"$id": "#/properties/loan_id",
"type": "string",
"title": "The loan identifier",
"description": "This field identifies the id of the loan.",
"examples": [
"ded913af-abc9-4769-b179-068ed6181ec5"
]
},
"account_id": {
"$id": "#/properties/account_id",
"type": "number",
"title": "The loan account id",
"description": "This field identifies the account id of the loan.",
"examples": [
104336697
]
},
"external_id": {
"$id": "#/properties/external_id",
"type": "string",
"title": "The loan external id",
"description": "This field identifies the external id of the loan.",
"examples": [
"cca6041c-b57d-44cf-a203-eeea22723878"
]
}
}
}
{
"org_id": "89e56522-726a-453e-ba6d-796b03245128",
"loan_id": "ded913af-abc9-4769-b179-068ed6181ec5",
"account_id": 104336697,
"external_id": "cca6041c-b57d-44cf-a203-eeea22723878"
}
Updated 23 days ago