14 lines
430 B
JSON
14 lines
430 B
JSON
{
|
|
"type": "object",
|
|
"required": ["requestId", "affiliateCode", "debtId", "principal", "interest", "penalty", "collectAmount"],
|
|
"properties": {
|
|
"requestId": { "type": "string" },
|
|
"affiliateCode": { "type": "string" },
|
|
"debtId": { "type": "integer" },
|
|
"principal": { "type": "number" },
|
|
"interest": { "type": "number" },
|
|
"penalty": { "type": "number" },
|
|
"collectAmount": { "type": "number" }
|
|
}
|
|
}
|