You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem description
Currently the phoneNumber is not validated against a pattern.
Possible evolution
Add the following pattern to "phoneNumber":
pattern: '^\+?[0-9]{5,15}$'
NumberVerificationRequestBody:
type: objectdescription: Payload to verify the phone number.minProperties: 1maxProperties: 1properties:
phoneNumber:
description: A phone number belonging to the user in **E.164 format (starting with country code)**. Optionally prefixed with '+'.type: stringexample: '+346661113334'pattern: '^\+?[0-9]{5,15}$'(...)
The text was updated successfully, but these errors were encountered:
Problem description
Currently the phoneNumber is not validated against a pattern.
Possible evolution
Add the following pattern to "phoneNumber":
The text was updated successfully, but these errors were encountered: