From 3f7b094311d9b34d3522e7a63d43865fffa4e106 Mon Sep 17 00:00:00 2001 From: CircleCI Date: Thu, 25 Apr 2024 11:18:03 +0000 Subject: [PATCH] JSON Schema Update --- config/v3/get_account_status/receive.json | 95 +++++++++++++++++++++++ 1 file changed, 95 insertions(+) diff --git a/config/v3/get_account_status/receive.json b/config/v3/get_account_status/receive.json index f6246296..51b0bb05 100644 --- a/config/v3/get_account_status/receive.json +++ b/config/v3/get_account_status/receive.json @@ -204,6 +204,101 @@ "expired", "suspected" ] + }, + "verified_jurisdiction": { + "description": "This represents the current status of authentication for each mt5 jurisdiction.", + "type": "object", + "additionalProperties": false, + "properties": { + "bvi": { + "description": "This represents whether the client is allowed or not to create an account under this jurisdiction", + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + "dsl": { + "description": "This represents whether the client is allowed or not to create an account under this jurisdiction", + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + "iom": { + "description": "This represents whether the client is allowed or not to create an account under this jurisdiction", + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + "labuan": { + "description": "This represents whether the client is allowed or not to create an account under this jurisdiction", + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + "malta": { + "description": "This represents whether the client is allowed or not to create an account under this jurisdiction", + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + "maltainvest": { + "description": "This represents whether the client is allowed or not to create an account under this jurisdiction", + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + "samoa": { + "description": "This represents whether the client is allowed or not to create an account under this jurisdiction", + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + "samoa-virtual": { + "description": "This represents whether the client is allowed or not to create an account under this jurisdiction", + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + "svg": { + "description": "This represents whether the client is allowed or not to create an account under this jurisdiction", + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + "vanuatu": { + "description": "This represents whether the client is allowed or not to create an account under this jurisdiction", + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + "virtual": { + "description": "This represents whether the client is allowed or not to create an account under this jurisdiction", + "type": "integer", + "enum": [ + 0, + 1 + ] + } + } } } },