Created
October 13, 2025 07:54
-
-
Save manico/a288454fd781cad6e4f62ef9616e95a9 to your computer and use it in GitHub Desktop.
Games Retail Regulatory Tenant Setting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "regulatory": { | |
| "fields": [ | |
| { | |
| "name": "jmb", | |
| "translationKey": "jmbg", | |
| "dataType": "string", | |
| "required": true | |
| }, | |
| { | |
| "name": "passport_number", | |
| "translationKey": "passportNumber", | |
| "dataType": "string", | |
| "required": true | |
| }, | |
| { | |
| "name": "identification_document_country", | |
| "translationKey": "documentCountry", | |
| "dataType": "string", | |
| "dataValues": [ | |
| { | |
| "label": "AFG", | |
| "value": "AFG" | |
| }, | |
| { | |
| "label": "ALB", | |
| "value": "ALB" | |
| } | |
| ], | |
| "required": true | |
| }, | |
| { | |
| "name": "identification_document_type", | |
| "translationKey": "documentType", | |
| "dataType": "string", | |
| "dataValues": [ | |
| { | |
| "translationKey": "idCard", | |
| "value": "ID card" | |
| }, | |
| { | |
| "translationKey": "passport", | |
| "value": "Passport" | |
| } | |
| ], | |
| "required": true | |
| } | |
| ], | |
| "triggers": [ | |
| { | |
| "type": "payment", | |
| "currency": "EUR", | |
| "check": "gte", | |
| "value": 2000 | |
| }, | |
| { | |
| "type": "payout", | |
| "currency": "EUR", | |
| "check": "gte", | |
| "value": 2000 | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment