From 8fdef578e6f4dd4c7abd09183f3117c0b99f2c81 Mon Sep 17 00:00:00 2001 From: Wan Qi Chen <495709+wa0x6e@users.noreply.github.com> Date: Tue, 19 Nov 2024 18:48:08 +0700 Subject: [PATCH] fix: add email validation to subscription value type --- src/schemas/subscription.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/schemas/subscription.json b/src/schemas/subscription.json index cafb82861..02217deb7 100644 --- a/src/schemas/subscription.json +++ b/src/schemas/subscription.json @@ -12,6 +12,7 @@ }, "value": { "type": "string", + "format": "email", "title": "value", "maxLength": 256 },