diff --git a/src/schemas.js b/src/schemas.js index e70eedf..be826ac 100644 --- a/src/schemas.js +++ b/src/schemas.js @@ -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" } } }