[Openid-specs-ab] Issue #1592: using credential_type as a key in issuer metadata. (openid/connect)

Kristina Yasuda issues-reply at bitbucket.org
Wed Aug 10 20:23:48 UTC 2022


New issue 1592: using credential_type as a key in issuer metadata.
https://bitbucket.org/openid/connect/issues/1592/using-credential_type-as-a-key-in-issuer

Kristina Yasuda:

Opening an issue because there is no corresponding one to a change being made in a PR #240.

It removes an identifier used as a key in the `credentials_supported` object and the types inside formats object, and insted uses type \(also used in scopes\) as a key in the `credentials_supported` object.

From below 

```json
{
  "credentials_supported": {
    "university_degree": {
       "formats": {
          "ldp_vc": {
              "types": ["VerifiableCredential", "UniversityDegreeCredential"]
          }
       }
     }
  }
}
```

to

```json
{
  "UniversityDegreeCredential": {
    "university_degree": {
       "formats": {
          "ldp_vc": {
          }
       }
     }
  }
}
```

‌

‌




More information about the Openid-specs-ab mailing list