mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 14:59: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: {
|
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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue