From 84f746009b9fb4e6f0408a8ec133f70736fa4ba7 Mon Sep 17 00:00:00 2001 From: Github Workflow Date: Mon, 22 Jul 2024 07:02:37 +0000 Subject: [PATCH] JSON Schema Update --- config/v3/website_config/receive.json | 19 +++++++++++++++++++ config/v3/website_status/receive.json | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/config/v3/website_config/receive.json b/config/v3/website_config/receive.json index 51156c29..c794b844 100644 --- a/config/v3/website_config/receive.json +++ b/config/v3/website_config/receive.json @@ -68,6 +68,25 @@ "description": "Name of the currency.", "type": "string" }, + "platform": { + "description": "List of cashier platforms supported for this currency. It is categorized by cashier and ramp (on-ramp, off-ramp) platforms.", + "type": "object", + "additionalProperties": false, + "required": [ + "cashier", + "ramp" + ], + "properties": { + "cashier": { + "description": "Supported platforms for the cashier, this is passed to provider attribute of `cashier` call", + "type": "array" + }, + "ramp": { + "description": "Supported platforms for the ramp (on-ramp, off-ramp)", + "type": "array" + } + } + }, "stake_default": { "description": "Default stake value for the currency.", "type": "number", diff --git a/config/v3/website_status/receive.json b/config/v3/website_status/receive.json index f74d4523..69270f19 100644 --- a/config/v3/website_status/receive.json +++ b/config/v3/website_status/receive.json @@ -185,6 +185,25 @@ "description": "Name of the currency.", "type": "string" }, + "platform": { + "description": "List of cashier platforms supported for this currency. It is categorized by cashier and ramp (on-ramp, off-ramp) platforms.", + "type": "object", + "additionalProperties": false, + "required": [ + "cashier", + "ramp" + ], + "properties": { + "cashier": { + "description": "Supported platforms for the cashier, this is passed to provider attribute of `cashier` call", + "type": "array" + }, + "ramp": { + "description": "Supported platforms for the ramp (on-ramp, off-ramp)", + "type": "array" + } + } + }, "stake_default": { "description": "Default stake value for the currency.", "type": "number",