mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 06:49:29 -07:00
fix: update schemas
This commit is contained in:
parent
d8c7ed8e8a
commit
96983a67df
1 changed files with 14 additions and 10 deletions
|
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue