[fix]: request schems

This commit is contained in:
VivianDee
2025-07-30 05:24:02 +01:00
parent 038c5323b0
commit 33ee8a286b
11 changed files with 51 additions and 47 deletions
@@ -2,10 +2,10 @@
"type": "object",
"required": ["requestId", "affiliateCode", "customerId", "accountId", "debtId"],
"properties": {
"requestId": { "type": "string" },
"affiliateCode": { "type": "string" },
"customerId": { "type": "string" },
"accountId": { "type": "string" },
"debtId": { "type": "integer" }
"requestId": { "type": "string", "example": "req-12345" },
"affiliateCode": { "type": "string", "example": "aff-67890" },
"customerId": { "type": "string", "example": "cust-54321" },
"accountId": { "type": "string", "example": "acc-98765" },
"debtId": { "type": "integer", "example": 123456 }
}
}