From 96983a67dfffa455c8c4c189ddd5fc5d2738ddc2 Mon Sep 17 00:00:00 2001 From: Yarmo Mackenbach Date: Wed, 4 Oct 2023 14:46:40 +0200 Subject: [PATCH] fix: update schemas --- src/schemas.js | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) 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" } } }