diff --git a/_pages/attributes.md b/_pages/attributes.md
index 392f50cd..8edc492c 100644
--- a/_pages/attributes.md
+++ b/_pages/attributes.md
@@ -55,6 +55,23 @@ Requires the `email` scope.
+**All emails** All of the email addresses on the user's account
+ |
+
+![checkmark][checkmark]
+ |
+
+![checkmark][checkmark]
+ |
+
+`all_emails` (array of strings)
+ |
+
+Not implemented
+ |
+
+
+
**IAL** Identity Assurance Level [NIST 800-63-3](https://pages.nist.gov/800-63-3/).
|
diff --git a/_pages/oidc.md b/_pages/oidc.md
index 558eb0bd..8f8e6854 100644
--- a/_pages/oidc.md
+++ b/_pages/oidc.md
@@ -168,6 +168,7 @@ https://idp.int.identitysandbox.gov/openid_connect/authorize?
- `openid`
- `address`
- `email`
+ - `all_emails`
- `phone`
- `profile:birthdate`
- `profile:name`
@@ -384,6 +385,7 @@ Here's an example response:
"birthdate": "1970-01-01",
"email": "test@example.com",
"email_verified": true,
+ "all_emails": ["test@example.com", "test2@example.com"],
"family_name": "Smith",
"given_name": "John",
"iss": "https://idp.int.identitysandbox.gov",
|