Login.gov · Schema
Login.gov ID Token Claims
Decoded payload of the Login.gov OIDC id_token JWT (signed RS256).
GovernmentFederalGSAIdentityAuthenticationSSOOIDCSAMLIAL2AAL2
Properties
| Name | Type | Description |
|---|---|---|
| iss | string | Issuer URL of the Login.gov IdP. |
| aud | string | The relying party's client_id. |
| sub | string | Stable per-RP user UUID v4. |
| nonce | string | Echo of the nonce parameter from the authorization request. |
| acr | string | Authentication Context Class Reference granted, e.g. an acr_values entry. |
| jti | string | Unique JWT identifier. |
| at_hash | string | |
| c_hash | string | |
| exp | integer | Expiration (Unix Epoch seconds). |
| iat | integer | Issued at (Unix Epoch seconds). |
| nbf | integer | Not-before (Unix Epoch seconds). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/login-gov/main/json-schema/login-gov-id-token-schema.json",
"title": "Login.gov ID Token Claims",
"description": "Decoded payload of the Login.gov OIDC id_token JWT (signed RS256).",
"type": "object",
"required": ["iss", "aud", "sub", "exp", "iat", "nonce", "jti"],
"properties": {
"iss": {
"type": "string",
"format": "uri",
"description": "Issuer URL of the Login.gov IdP."
},
"aud": {
"type": "string",
"description": "The relying party's client_id."
},
"sub": {
"type": "string",
"format": "uuid",
"description": "Stable per-RP user UUID v4."
},
"nonce": {
"type": "string",
"minLength": 22,
"description": "Echo of the nonce parameter from the authorization request."
},
"acr": {
"type": "string",
"description": "Authentication Context Class Reference granted, e.g. an acr_values entry."
},
"jti": {
"type": "string",
"description": "Unique JWT identifier."
},
"at_hash": { "type": "string" },
"c_hash": { "type": "string" },
"exp": { "type": "integer", "description": "Expiration (Unix Epoch seconds)." },
"iat": { "type": "integer", "description": "Issued at (Unix Epoch seconds)." },
"nbf": { "type": "integer", "description": "Not-before (Unix Epoch seconds)." }
}
}