fix: update schemas

This commit is contained in:
Yarmo Mackenbach 2023-10-04 14:46:40 +02:00
parent d8c7ed8e8a
commit 96983a67df
No known key found for this signature in database
GPG key ID: 3C57D093219103A3

View file

@ -215,21 +215,25 @@ export const claimSchema = {
display: { display: {
type: 'object', type: 'object',
properties: { properties: {
name: { profileName: {
type: 'string', type: "string",
description: 'Account name to display in the user interface' description: "Account name to display in the user interface"
}, },
url: { profileUrl: {
type: ['string', 'null'], type: ["string", "null"],
description: 'URL to link to in the user interface' description: "Profile URL to link to in the user interface"
},
proofUrl: {
type: ["string", "null"],
description: "Proof URL to link to in the user interface"
}, },
serviceProviderName: { serviceProviderName: {
type: ['string', 'null'], type: ["string", "null"],
description: 'Name of the service provider to display in the user interface' description: "Name of the service provider to display in the user interface"
}, },
serviceProviderId: { serviceProviderId: {
type: ['string', 'null'], type: ["string", "null"],
description: 'Id of the service provider' description: "Id of the service provider"
} }
} }
} }