From 8130d056262c002c23022ba6731dc5984f4430c2 Mon Sep 17 00:00:00 2001 From: CircleCI Date: Mon, 18 Dec 2023 02:24:45 +0000 Subject: [PATCH] JSON Schema Update --- config/v3/profit_table/receive.json | 34 ++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/config/v3/profit_table/receive.json b/config/v3/profit_table/receive.json index 5921b088..151bf811 100644 --- a/config/v3/profit_table/receive.json +++ b/config/v3/profit_table/receive.json @@ -46,15 +46,35 @@ 4867502908 ] }, + "contract_type": { + "description": "[Optional] The contract type for the transaction if description is set to 1.", + "type": "string", + "examples": [ + "ASIANU", + "CALL" + ] + }, + "deal_cancellation_duration": { + "description": "[Optional] Duration set for deal cancellation for Multiplier contracts in synthetic indices if description is set to 1.", + "type": "string" + }, "duration_type": { - "description": "The duration type of the contract.", + "description": "[Optional] The duration type of the contract if description is set to 1.", "type": [ "null", "string" ] }, + "growth_rate": { + "description": "[Optional] The growth rate for Accumulators contract if description is set to 1.", + "type": "string" + }, "longcode": { - "description": "The description of contract purchased if description is set to 1", + "description": "[Optional] The description of contract purchased if description is set to 1", + "type": "string" + }, + "multiplier": { + "description": "[Optional] The multiplier for Multiplier contracts if description is set to 1.", "type": "string" }, "payout": { @@ -77,7 +97,7 @@ ] }, "shortcode": { - "description": "Compact description of the contract purchased if description is set to 1", + "description": "[Optional] Compact description of the contract purchased if description is set to 1", "type": "string" }, "transaction_id": { @@ -86,6 +106,14 @@ "examples": [ 10867502908 ] + }, + "underlying_symbol": { + "description": "[Optional] Symbol code if description is set to 1", + "type": "string", + "examples": [ + "R_50", + "frxEURUSD" + ] } } }