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: {
type: 'object',
properties: {
name: {
type: 'string',
description: 'Account name to display in the user interface'
profileName: {
type: "string",
description: "Account name to display in the user interface"
},
url: {
type: ['string', 'null'],
description: 'URL to link to in the user interface'
profileUrl: {
type: ["string", "null"],
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: {
type: ['string', 'null'],
description: 'Name of the service provider to display in the user interface'
type: ["string", "null"],
description: "Name of the service provider to display in the user interface"
},
serviceProviderId: {
type: ['string', 'null'],
description: 'Id of the service provider'
type: ["string", "null"],
description: "Id of the service provider"
}
}
}