Grouper returns the following subject attributes:
- name (same as
cn
) - description (same as
cn
) uid
sn
(the person's surname)givenName
(the person's given name)displayName
(the person's preferred name for display)cn
(the person's full name, typically the given name and surname and often including a middle initial if available)- uhOrgAffiliation
- eduPersonAffiliation
- eduPersonOrgDN
- uhScopedHomeOrg
For multi-valued attributes, if more than one value is available for a given attribute, the values will be separated with a delimiter of three vertical bars, “|||”
E.g. eduPersonAffiliation with values “faculty” and “staff” returns “faculty|||staff”
If your code does not read the attributeValues
JSON/XML tag for a subject being returned, you can stop reading here. You probably don't have to worry about this change breaking your code.
...