Charge plan deleted
Event generated when a charge plan is deleted
Type: object
Domain: lending
Event: charge_plan_delete
Version: 1
|
org_id required
Title: The org identifier
Description: This field identifies the organization of the charge plan.
Type: string
Example:
89e56522-726a-453e-ba6d-796b03245128
name required
Title: The charge plan name
Description: This field identifies the name of the charge plan.
Type: string
Example:
Acquisition tax
code required
Title: The charge plan code
Description: This field identifies the code of the charge plan.
Type: string
Example:
TAC2022
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"title": "Charge plan deleted",
"description": "Event generated when a charge plan is deleted",
"required": [
"org_id",
"name",
"code"
],
"properties": {
"org_id": {
"$id": "#/properties/org_id",
"type": "string",
"title": "The org identifier",
"description": "This field identifies the organization of the charge plan.",
"examples": [
"89e56522-726a-453e-ba6d-796b03245128"
]
},
"name": {
"$id": "#/properties/name",
"type": "string",
"title": "The charge plan name",
"description": "This field identifies the name of the charge plan.",
"examples": [
"Acquisition tax"
]
},
"code": {
"$id": "#/properties/code",
"type": "string",
"title": "The charge plan code",
"description": "This field identifies the code of the charge plan.",
"examples": [
"TAC2022"
]
}
}
}
{
"org_id": "89e56522-726a-453e-ba6d-796b03245128",
"name": "Acquisition tax",
"code": "TAC2022"
}
Updated 23 days ago