the mDL’s type. Confirm with the certificate issuer for what docType they are issuing. Some common examples include:
org.iso.18013.5.1.mDL
).org.iso.23220.photoid.1
).org.iso.7367.1.mVRC
).org.micov.vtr.1
).Each namespace corresponds to a group of claims included in the credential. These can be claims that are part of a specific standard, jurisdiction or any other reference. The namespace would usually correspond to the requested docType
.
Credential format of the credential that will be verified. Currently only mobile (mDocs) is supported.
// The following example credential query will request the `birthdate` and `portrait` claims from a `mobile` credential `profile` with `org.iso.18013.5.1.mDL` as a `docType`:
{
"profile": "mobile",
"docType": "org.iso.18013.5.1.mDL",
"nameSpaces": {
"org.iso.18013.5.1": {
"birthdate": {
"intentToRetain": false
},
"portrait": {
"intentToRetain": false
},
"resident_postal_code": {
"intentToRetain": false
}
},
}
}
Generated using TypeDoc
Credential query