Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EDGPATRON-151 Modifying api contract for Post api of LC User registration #131

Merged
merged 10 commits into from
Oct 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading