From 88569d9da9f686bbd0d34fc1e535b0887f8fe638 Mon Sep 17 00:00:00 2001 From: Ankit R Gadiya Date: Wed, 25 Sep 2024 19:58:11 +0530 Subject: [PATCH] fix(usergroup): remove emailID validation --- riocli/jsonschema/schemas/usergroup-schema.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/riocli/jsonschema/schemas/usergroup-schema.yaml b/riocli/jsonschema/schemas/usergroup-schema.yaml index 0faf912c..febb170e 100644 --- a/riocli/jsonschema/schemas/usergroup-schema.yaml +++ b/riocli/jsonschema/schemas/usergroup-schema.yaml @@ -70,7 +70,7 @@ definitions: guid: $ref: "#/definitions/uuid" emailID: - $ref: "#/definitions/email" + type: string oneOf: - required: @@ -113,7 +113,3 @@ definitions: uuid: type: string pattern: "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$" - - email: - type: string - pattern: "^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+.[a-zA-Z0-9]{2,}$"