Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion _includes/snippets/oidc/user-info/response.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"email": "test@example.com",
"email_verified": true,
"all_emails": ["test@example.com", "test2@example.com"],
"locale": "en",
"family_name": "Smith",
"given_name": "John",
"iss": "https://idp.int.identitysandbox.gov",
Expand All @@ -25,4 +26,4 @@
{% endcapture %}
<div markdown="1" data-example="response" class="markdown">
{{ code | markdownify }}
</div>
</div>
19 changes: 18 additions & 1 deletion _pages/attributes.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: User attributes
lead: >
Login.gov user accounts are either identity proofed or self-asserted.
Login.gov user accounts are either identity proofed or self-asserted.
---

Here are the possible attributes that can be requested at a given IAL. This table contains the available user attributes, the IAL they are associated with, and how they can be accessed in OpenID Connect (OIDC) and SAML.
Expand Down Expand Up @@ -81,6 +81,23 @@ Requires the `email` scope.
</tr>
<tr>
<td markdown="1">
**Locale**<br />The user's language preference.
</td>
<td>
{{ checkmark }}
</td>
<td>
{{ checkmark }}
</td>
<td markdown="1">
`locale` (string, ISO 639-1 language code)
</td>
<td markdown="1">
`locale` (string, ISO 639-1 language code)
</td>
</tr>
<tr>
<td markdown="1">
**IAL**<br />Identity Assurance Level [NIST 800-63-3](https://pages.nist.gov/800-63-3/).
</td>
<td>
Expand Down
1 change: 1 addition & 0 deletions _pages/oidc/authorization.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Possible values are:
- `address`
- `email`
- `all_emails`
- `locale`
- `phone`
- `profile:birthdate`
- `profile:name`
Expand Down
1 change: 1 addition & 0 deletions _pages/oidc/authorization/pkce.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ Possible values are:
- `address`
- `email`
- `all_emails`
- `locale`
- `phone`
- `profile:birthdate`
- `profile:name`
Expand Down
Loading