Skip to content

Commit

Permalink
Remove null'ing of context inside cnf.
Browse files Browse the repository at this point in the history
  • Loading branch information
msporny committed Sep 11, 2023
1 parent bf0b605 commit d5c7a02
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions contexts/credentials/v2
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,17 @@
},
"cnf": {
"@id": "https://www.iana.org/assignments/jwt#cnf",
"@context": [
null,
{
"@protected": true,
"kid": {
"@id": "https://www.iana.org/assignments/jwt#kid",
"@type": "@id"
},
"jwk": {
"@id": "https://www.iana.org/assignments/jwt#jwk",
"@type": "@json"
}
"@context": {
"@protected": true,
"kid": {
"@id": "https://www.iana.org/assignments/jwt#kid",
"@type": "@id"
},
"jwk": {
"@id": "https://www.iana.org/assignments/jwt#jwk",
"@type": "@json"
}
]
}
},
"_sd_alg": {
"@id": "https://www.iana.org/assignments/jwt#_sd_alg"
Expand Down

0 comments on commit d5c7a02

Please sign in to comment.