From 0d692b720c132bdb5844284e6a695657bad6c777 Mon Sep 17 00:00:00 2001 From: Luc Wollants Date: Thu, 17 Oct 2024 11:10:27 +0200 Subject: [PATCH] Fix image regex and allow jpg --- common-string-uri-image.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common-string-uri-image.json b/common-string-uri-image.json index faa6911..abb0b51 100644 --- a/common-string-uri-image.json +++ b/common-string-uri-image.json @@ -2,7 +2,7 @@ "title": "uri", "type": "string", "format": "uri", - "pattern": "^http(s?):([/|.|\\w|\\s|-])*\\.(?:jpeg|jpeg|gif|png)$", + "pattern": "^http(s?):([/|.|\\w|\\s|-])*\\.(?:jpeg|jpg|gif|png)$", "examples": [ "https://www.example.com/sample.jpeg" ],