XML:
<user>
<bio>{one line bio from the user's profile}</bio>
<contacts-count type='integer'>{count of total unique contacts}</contacts-count>
<created-at type='datetime'>{user creation date and time, in UTC}</created-at>
<id type='integer'>{user id}</id>
<kudo-points type='integer'>{total number of kudo points}</kudo-points>
<location>{location from user's profile}</location>
<login>{current login name, note Blellow allows users to change their login name}</login>
<name>{name from user's profile}</name>
<portfolio>{portfolio from user's profile, should be a url but Blellow does not enforce that}</portfolio>
<resume>{resume from user's profile, should be a url but Blellow does not enforce that}</resume>
<skills>{freeform list of skills from the user's profile}</skills>
<profile-pic-path>{url for a user's profile picture/avatar, currently stored on Amazon s3}</profile-pic-path>
</user>
JSON:
{
"user":
{
"name":{name from user's profile},
"portfolio":{portfolio from user's profile, should be a url but Blellow does not enforce that},
"location":{location from user's profile},
"created_at":{user creation date and time, in UTC},
"kudo_points":{total number of kudo points},
"profile_pic_path":{url for a user's profile picture/avatar, currently stored on Amazon s3},
"skills":{freeform list of skills from the user's profile},
"id":{user id},
"resume":{resume from user's profile, should be a url but Blellow does not enforce that},
"contacts_count":{count of total unique contacts},
"bio":{one line bio from the user's profile},
"login":{current login name, note Blellow allows users to change their login name}
}
}