From d6ff35874d437c2642ec9fb80b7b10707f5b72d7 Mon Sep 17 00:00:00 2001 From: Vignesh <125984866+Vignesh-kalyanasundaram@users.noreply.github.com> Date: Tue, 15 Oct 2024 14:57:37 +0530 Subject: [PATCH] EDGPATRON-151 Modifying api contract for Post api of LC User registration (#131) * EDGPATRON-151 Modifying api contract for Post api of LC User registration --- ramls/staging_user.json | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/ramls/staging_user.json b/ramls/staging_user.json index 207a916..98bcc85 100644 --- a/ramls/staging_user.json +++ b/ramls/staging_user.json @@ -5,15 +5,13 @@ "type": "object", "properties": { "isEmailVerified": { - "description": "A flag to determine if a patron is activated/email verification completed.", - "type": "boolean", - "default": false + "description": "A boolean flag that indicates whether the patron has completed email verification. If this value is not provided when creating a new record, it will default to false. However, for Kiosk user registrations, this value should be sent true.", + "type": "boolean" }, "status": { - "description": "Status of the patron, whether TIER-1 or TIER-2.", + "description": "Represents the patron's tier status, which can be either TIER-1 or TIER-2. If this value is not provided when creating a new record, the default status will be set to TIER-1.", "type": "string", - "enum": ["TIER-1", "TIER-2"], - "default": "TIER-1" + "enum": ["TIER-1", "TIER-2"] }, "generalInfo": { "type": "object",