Skip to content

Commit f2c66e6

Browse files
authored
Merge pull request #392 from Concordium/BRO-48-company-id
[BRO-48] Enable ZK proof generations with new company identities
2 parents 36b6354 + 29958bd commit f2c66e6

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

packages/sdk/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Added
66

77
- Add `legalCountry` as an allowed attribute for set/not-set membership proofs.
8+
- Add attributes `lei`, `legalName`, `legalCountry`, `businessNumber`, and `registrationAuth` to `IDENTITY_SUBJECT_SCHEMA`.
89

910
## 8.0.1
1011

packages/sdk/src/web3-id/types.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,26 @@ export const IDENTITY_SUBJECT_SCHEMA: CredentialSchemaSubject = {
163163
title: 'Tax ID Number',
164164
type: 'string',
165165
},
166+
lei: {
167+
title: 'Legal Entity Identifier (LEI)',
168+
type: 'string',
169+
},
170+
legalName: {
171+
title: 'Legal Name',
172+
type: 'string',
173+
},
174+
legalCountry: {
175+
title: 'Legal Country',
176+
type: 'string',
177+
},
178+
businessNumber: {
179+
title: 'Business Number',
180+
type: 'string',
181+
},
182+
registrationAuth: {
183+
title: 'Registration Authority',
184+
type: 'string',
185+
},
166186
},
167187
required: [],
168188
},

0 commit comments

Comments
 (0)