Authentication / Tokensintermediate

JWT Payload JSON Example

A clean JWT claim set showing subject, issuer, expiry, and scoped permissions.

Real-world use case: Use this for auth docs, token debugging, and sample claim design.
1{
2 "iss": "https://auth.example.com",
3 "sub": "usr_8f41",
4 "aud": "regimify-web",
5 "exp": 1773302400,
6 "iat": 1773298800,
7 "scope": [
8 "profile:read",
9 "orders:read"
10 ]
11}

Where this shape shows up in production

JWT docs
Token debuggers
Authorization middleware

Related examples