fix: update schema to allow null URI

This commit is contained in:
Yarmo Mackenbach 2024-09-01 12:05:29 +02:00
parent 6a88db460d
commit e44733f665
No known key found for this signature in database
GPG key ID: C248C28D432560ED

View file

@ -287,7 +287,7 @@ export const serviceProviderSchema = {
}, },
uri: { uri: {
description: 'URI or URL for public access to the profile', description: 'URI or URL for public access to the profile',
type: 'string' type: ['string', 'null']
}, },
qr: { qr: {
description: 'URI or URL associated with the profile usually served as a QR code', description: 'URI or URL associated with the profile usually served as a QR code',