Skip to content

Commit

Permalink
EDGPATRON-151 Modifying api contract for Post api of LC User registra…
Browse files Browse the repository at this point in the history
…tion (#131)

* EDGPATRON-151 Modifying api contract for Post api of LC User registration
  • Loading branch information
Vignesh-kalyanasundaram authored Oct 15, 2024
1 parent d6364ba commit d6ff358
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions ramls/staging_user.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit d6ff358

Please sign in to comment.