Steven Padfield
Steven Padfield

Reputation: 644

Where is http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name defined?

OASIS owns the http://schemas.xmlsoap.org/ws/2005/05/identity namespace, but I can't find anywhere that defines the "name" claim type. There are other claims like First Name, Last Name, Email Address, etc. but no claim that just refers to Name.

Is there an authoritative location where this claim type is defined? I'm interested in understanding the correct usage of this claim.

Upvotes: 14

Views: 24407

Answers (2)

Chris F Carroll
Chris F Carroll

Reputation: 12370

Perhaps it is a Microsoft-only claim?

https://schemas.xmlsoap.org/ws/2005/05/identity/claims.xsd lists givenname and surname but not name. I've seen systems where name turns out to mean loginname or email.

Upvotes: 0

user4864425
user4864425

Reputation:

The only source I could find right now that mentions the namespace, is the Windows Identity Foundation documentation:

https://msdn.microsoft.com/en-us/library/microsoft.identitymodel.claims.claimtypes_members.aspx

Though I cannot find it at the moment, it seems to me that Microsoft used an official source. I don't think it would otherwise have been implemented.

Just found an interesting thread: Correct usage of the Name Claim (http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name)

Upvotes: 9

Related Questions