exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

main.typ (1234B)


      1 #import "@taler-exchange/_cover_:0.0.0": form
      2 
      3 #form((
      4   "FILE_NUMBER": "42",
      5   "is_active": true,
      6   "to_investigate": false,
      7   "properties": (
      8     "pep": false,
      9     "sanctioned": false,
     10     "high_risk": true,
     11     "business_domain": "Financial services",
     12     "is_frozen": false,
     13     "was_reported": false,
     14     "custom_field": "Custom value"
     15   ),
     16   "rules": (
     17     "expiration_time": ("t_s": 1764967786),  // Fri Dec 5 20:49:46 UTC 2025
     18     "rules": (
     19       (
     20         "operation_type": "WITHDRAW",
     21         "rule_name": "large_withdrawal",
     22         "threshold": "EUR:10000",
     23         "timeframe": ("d_us": 86400000000),
     24         "measures": ("kyc_review"),
     25         "display_priority": 10,
     26         "exposed": true
     27       ),
     28       (
     29         "operation_type": "DEPOSIT",
     30         "rule_name": "suspicious_deposit",
     31         "threshold": "EUR:50000",
     32         "timeframe": ("d_us": 604800000000),
     33         "measures": ("verboten"),
     34         "display_priority": 20,
     35         "exposed": false
     36       ),
     37       (
     38         "operation_type": "BALANCE",
     39         "threshold": "EUR:5000",
     40         "timeframe": ("d_us": 3600000000),
     41         "measures": ("aml_check", "manager_approval"),
     42         "display_priority": 5,
     43         "exposed": true
     44       )
     45     )
     46   )
     47 ))