Skip to content

Commit

Permalink
Merge pull request #392 from Concordium/BRO-48-company-id
Browse files Browse the repository at this point in the history
[BRO-48] Enable ZK proof generations with new company identities
  • Loading branch information
Ivan-Mahda authored Sep 13, 2024
2 parents 36b6354 + 29958bd commit f2c66e6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

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

## 8.0.1

Expand Down
20 changes: 20 additions & 0 deletions packages/sdk/src/web3-id/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,26 @@ export const IDENTITY_SUBJECT_SCHEMA: CredentialSchemaSubject = {
title: 'Tax ID Number',
type: 'string',
},
lei: {
title: 'Legal Entity Identifier (LEI)',
type: 'string',
},
legalName: {
title: 'Legal Name',
type: 'string',
},
legalCountry: {
title: 'Legal Country',
type: 'string',
},
businessNumber: {
title: 'Business Number',
type: 'string',
},
registrationAuth: {
title: 'Registration Authority',
type: 'string',
},
},
required: [],
},
Expand Down

0 comments on commit f2c66e6

Please sign in to comment.