From dcf35630bf8cf5f4a6c96f10a3e74c3b8e9ef732 Mon Sep 17 00:00:00 2001 From: Severin Neumann Date: Wed, 13 Nov 2024 15:03:30 +0100 Subject: [PATCH] Update registry schema to allow any https URL for authors (#5605) --- data/registry-schema.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/registry-schema.json b/data/registry-schema.json index edbedd799c81..c605d190742c 100644 --- a/data/registry-schema.json +++ b/data/registry-schema.json @@ -109,9 +109,9 @@ }, "url": { "type": "string", - "description": "The URL of the author", - "pattern": "^https:\\/\\/github\\.com\\/([a-zA-Z0-9](?:-?[a-zA-Z0-9]){0,38})$", - "errorMessage": "The URL of the author must be a valid GitHub user URL" + "description": "The URL of the author. This can be a website or a GitHub handle URL.", + "format": "uri", + "pattern": "^https://.*$" } }, "if": {