Skip to content
Open
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
6 changes: 6 additions & 0 deletions docs/identity-platform/id-token-claims-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ The following table shows header claims present in ID tokens.

The following table shows the claims that are in most ID tokens by default (except where noted). However, your app can use [optional claims](./optional-claims.md) to request more claims in the ID token. Optional claims can range from the `groups` claim to information about the user's name.

The payload claims should contain the information about "amr" claim as well, just like the access token doc does https://learn.microsoft.com/en-us/entra/identity-platform/access-token-claims-reference#payload-claims
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Avoid using a bare learn.microsoft.com URL here. Use a Markdown link (or angle brackets) and follow the docs convention of removing the /en-us locale segment; since this is a page in the same folder, a relative link to ./access-token-claims-reference.md#payload-claims would be more consistent.

Copilot uses AI. Check for mistakes.
Tests show that V1.0 ID tokens will also contain the "amr" claim, and V2.0 does not.
Comment on lines +39 to +40
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These sentences read like editorial notes ("should contain", "Tests show") and don't actually add the amr claim to the reference. Consider replacing this prose with an amr row in the payload-claims table (including format and a clear note that it's only emitted in v1.0 ID tokens).

Copilot uses AI. Check for mistakes.
<img width="251" height="1167" alt="image" src="https://github.com/user-attachments/assets/7fdc8cd4-94e5-4631-9568-6cb89d21b2c6" />
<img width="330" height="786" alt="image" src="https://github.com/user-attachments/assets/73fe6720-8e9c-43f8-a86f-bda1335b4a5f" />
Comment on lines +41 to +42
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The two screenshots are linked from github.com/user-attachments, which is not a stable or publish-friendly asset location for Microsoft Learn content, and the alt text "image" isn't descriptive for screen readers. Prefer either (1) a short, redacted JSON example in a code block, or (2) adding the images under this repo's media/ and referencing them with meaningful alt text.

Copilot uses AI. Check for mistakes.


| Claim | Format | Description |
|-------|--------|-------------|
|`aud` | String, an App ID GUID | Identifies the intended recipient of the token. In `id_tokens`, the audience is your app's Application ID, assigned to your app in the Azure portal. This value should be validated. The token should be rejected if it fails to match your app's Application ID. |
Expand Down