59 lines
1.8 KiB
JSON
59 lines
1.8 KiB
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"transactionId": {
|
|
"type": "string",
|
|
"description": "Unique identifier of transaction in Simbrella system",
|
|
"example": "T0014"
|
|
},
|
|
"fbnTransactionId": {
|
|
"type": "string",
|
|
"description": "Unique id of the transaction received from FBN in CustomerConsentRequest",
|
|
"example": "20171209232177"
|
|
},
|
|
"customerId": {
|
|
"type": "string",
|
|
"description": "Unique identifier of a user",
|
|
"example": "CN621868"
|
|
},
|
|
"accountId": {
|
|
"type": "string",
|
|
"description": "Specific identifier of a user's account",
|
|
"example": "2017821799"
|
|
},
|
|
"processTime": {
|
|
"type": "string",
|
|
"format": "date-time",
|
|
"description": "Date and time when consent request was processed",
|
|
"example": "2019-10-18 14:26:21.063"
|
|
},
|
|
"consentType": {
|
|
"type": "string",
|
|
"description": "Type of consent: 'Enable' or 'Revoke'",
|
|
"enum": ["Enable", "Revoke"],
|
|
"example": "Revoke"
|
|
},
|
|
"countryId": {
|
|
"type": "string",
|
|
"description": "Set to static value '01'",
|
|
"example": "01"
|
|
},
|
|
"comment": {
|
|
"type": "string",
|
|
"description": "Any additional comment for consent operation",
|
|
"example": "Testing RevokeEnableConsentRequest"
|
|
}
|
|
},
|
|
"required": [
|
|
"transactionId",
|
|
"fbnTransactionId",
|
|
"customerId",
|
|
"accountId",
|
|
"processTime",
|
|
"consentType",
|
|
"countryId"
|
|
],
|
|
"xml": {
|
|
"name": "RevokeEnableConsentRequest"
|
|
}
|
|
} |