Claim
In identity and access management, a claim is a statement about a user or other subject, such as their email address, name, or group membership, that an identity provider asserts to be true. Claims are typically carried inside tokens or assertions and used by applications to make decisions about a user. Note that the general-purpose meanings of 'claim' in law, insurance, and everyday language are unrelated to the IAM sense described here.
A claim is a name-value pair asserting a piece of information about a subject (such as an end user, service, or device), issued and vouched for by an identity provider or authorization server. In practice, claims populate the payload of tokens and assertions, for example, claims within a JWT (such as sub, iss, aud, exp, and identity attributes) or attribute statements within a SAML 2.0 assertion. The presence of a claim reflects what the issuer asserts, not independently verified truth; a relying party typically validates the containing token's signature and issuer before trusting its claims, and a signed token guarantees integrity and authenticity of claims but not their confidentiality unless the token is also encrypted. The specific claims available, their names, and their semantics depend on the protocol, profile, and deployment configuration (for example, OIDC Core standard claims versus custom claims). Distinguishing which claims appear in an ID token versus an access token is out of scope for this base definition.
Why it matters
Claims are the fundamental unit of information that flows between identity providers and the applications that rely on them. When a relying party makes an access decision, showing a user their account, granting entry to a resource, or routing them to the right tenant, it is almost always acting on claims delivered inside a token or assertion. Because so much downstream behavior hinges on these name-value pairs, the accuracy, provenance, and integrity of claims directly shape the security posture of a federated environment.
The central caution is that a claim represents what an issuer asserts, not an independently verified fact. A relying party that trusts claims without first validating the containing token, its signature, issuer, audience, and expiry, can be misled by forged or replayed tokens. It is equally important to remember that signing a token guarantees the integrity and authenticity of its claims but does not make them confidential; claims in a signed-but-unencrypted JWT are readable by anyone who obtains the token. Treating a signed token as though it were also encrypted is a common and consequential misunderstanding.
The term 'claim' also carries unrelated everyday meanings, an insurance claim, a legal cause of action, or a general assertion of a right, that share no technical relationship with the IAM sense. Practitioners writing policy, documentation, or audit criteria should be explicit that they mean the identity-attribute sense to avoid confusion with these general-purpose usages.
Who it's relevant to
Inside Claim
Common questions
Answers to the questions practitioners most commonly ask about Claim.
