From 68ca7f32f9d3864abcc951fcd707c0af2aecee5f Mon Sep 17 00:00:00 2001 From: CircleCI Date: Fri, 29 Mar 2024 11:19:26 +0000 Subject: [PATCH] JSON Schema Update --- config/v3/get_account_status/receive.json | 8 ++++++++ config/v3/kyc_auth_status/receive.json | 16 ++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/config/v3/get_account_status/receive.json b/config/v3/get_account_status/receive.json index 2c831957..f6246296 100644 --- a/config/v3/get_account_status/receive.json +++ b/config/v3/get_account_status/receive.json @@ -237,6 +237,14 @@ "type": "string" } }, + "report_available": { + "description": "Indicate if the verification report was returned by the provider", + "type": "integer", + "enum": [ + 0, + 1 + ] + }, "reported_properties": { "description": "Shows the latest document properties detected and reported by IDVS", "type": "object" diff --git a/config/v3/kyc_auth_status/receive.json b/config/v3/kyc_auth_status/receive.json index 6d29ea3d..3621e3c4 100644 --- a/config/v3/kyc_auth_status/receive.json +++ b/config/v3/kyc_auth_status/receive.json @@ -70,6 +70,14 @@ "items": { "type": "string" } + }, + "report_available": { + "description": "Indicate if the verification report was returned by the provider (IDV only).", + "type": "integer", + "enum": [ + 0, + 1 + ] } } }, @@ -200,6 +208,14 @@ "items": { "type": "string" } + }, + "report_available": { + "description": "Indicate if the verification report was returned by the provider (IDV only).", + "type": "integer", + "enum": [ + 0, + 1 + ] } } },