From e44733f665a94eead157a80af11e2839c880874c Mon Sep 17 00:00:00 2001 From: Yarmo Mackenbach Date: Sun, 1 Sep 2024 12:05:29 +0200 Subject: [PATCH] fix: update schema to allow null URI --- src/schemas.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schemas.js b/src/schemas.js index 19210f5..a4072b5 100644 --- a/src/schemas.js +++ b/src/schemas.js @@ -287,7 +287,7 @@ export const serviceProviderSchema = { }, uri: { description: 'URI or URL for public access to the profile', - type: 'string' + type: ['string', 'null'] }, qr: { description: 'URI or URL associated with the profile usually served as a QR code',