Montran · Schema
ComplianceListDetail
Compliance list details
BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT
Properties
| Name | Type | Description |
|---|---|---|
| listId | string | |
| name | string | List name |
| source | string | List source organization |
| status | string | |
| entryCount | integer | Number of entries in the list |
| lastUpdated | string | When the list was last updated |
| channels | array | Channels configured to use this list |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ComplianceListDetail",
"title": "ComplianceListDetail",
"type": "object",
"description": "Compliance list details",
"properties": {
"listId": {
"type": "string"
},
"name": {
"type": "string",
"description": "List name"
},
"source": {
"type": "string",
"description": "List source organization",
"enum": [
"OFAC",
"EU",
"OFSI",
"UN",
"LLOYDS_MIU",
"CUSTOM"
]
},
"status": {
"type": "string",
"enum": [
"active",
"inactive"
]
},
"entryCount": {
"type": "integer",
"description": "Number of entries in the list"
},
"lastUpdated": {
"type": "string",
"format": "date-time",
"description": "When the list was last updated"
},
"channels": {
"type": "array",
"description": "Channels configured to use this list",
"items": {
"type": "string"
}
}
}
}