Loan booking error occurred
Event generated when a loan booking fails.
Type: object
Domain: lending
Event: loan_booking_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_simulation_id required
Title: The simulation identifier
Description: This field identifies the simulation.
Type: string
Example:
afedc8b0-86b2-41ca-87a3-3481df17261b
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 booking error occurred",
"description": "Event generated when a loan booking fails.",
"required": [
"org_id",
"loan_simulation_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_simulation_id": {
"$id": "#/properties/loan_simulation_id",
"type": "string",
"title": "The simulation identifier",
"description": "This field identifies the simulation.",
"examples": [
"afedc8b0-86b2-41ca-87a3-3481df17261b"
]
},
"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_simulation_id": "afedc8b0-86b2-41ca-87a3-3481df17261b",
"account_id": 104336697,
"external_id": "cca6041c-b57d-44cf-a203-eeea22723878"
}
Updated 24 days ago