We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Subject fields such as Locality and Organization so we can create VCs a did like this:
Locality
Organization
{ "issuer": "did:x509:0:sha256:1b0961059b841654875d24545d0b93b37fd8a50c406a10a89702498f7e544b50::subject:O:De%20Regenboog:L:Hengelo::san:othername:2.16.528.1.1007.99.2110-1-900030787-S-90000380-00.000-11223344", "credentialSubject": { "subject:O": "De Regenboog", "subject:L": "Hengelo", "san:otherName": "2.16.528.1.1007.99.2110-1-900030787-S-90000380-00.000-11223344" } }
The text was updated successfully, but these errors were encountered:
The policyName/policyValue for the example above is:
subject,O:De%20Regenboog:L:Hengelo
subject
O:De%20Regenboog:L:Hengelo
Meaning the value string would have to be split to sub-key/values
Sorry, something went wrong.
DID Syntax:
method-specific-id = ... ("::" policy-name ":" policy-value)
Voor subject policy:
policy-name = "subject" policy-value = key ":" value *(":" key ":" value)
Vertaald naar een credential:
"credentialSubject": { $policy-name:$key: $value }
of nested:
"credentialSubject": { $policy-name: { $key: $value } }
No branches or pull requests
Add support for Subject fields such as
Locality
andOrganization
so we can create VCs a did like this:The text was updated successfully, but these errors were encountered: