Skip to content

Commit

Permalink
Correct JSON example - address issue oauth-wg#114
Browse files Browse the repository at this point in the history
Correcting the JSON example to use NumericDate for `iat` and `exp` claims.
  • Loading branch information
gffletch authored Jul 24, 2024
1 parent ea45852 commit 75d2702
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions draft-ietf-oauth-transaction-tokens.md
Original file line number Diff line number Diff line change
Expand Up @@ -413,9 +413,9 @@ The figure below {{figleaftxtokenbody}} shows a non-normative example of the JWT

~~~ json
{
"iat": "1686536226000",
"iat": 1686536226,
"aud": "trust-domain.example",
"exp": "1686536526000",
"exp": 1686536586,
"txn": "97053963-771d-49cc-a4e3-20aad399c312",
"sub": "d084sdrt234fsaw34tr23t",
"rctx": {
Expand Down

0 comments on commit 75d2702

Please sign in to comment.