Added
URLs and Photos
profileUrl MUST also show up as a repeated urls field
New repeated photos field, thumbnailUrl MUST also show up as photos field
- Changed gender to a string value (from an enum value),
"gender": "male",
e.g
"email": [
{
"value":
"joseph-04@plaxo.com",
"primary":
"true",
},
- Changed Origination structure
To include type
e.g
"organization":
[
{
"name":
"Burns Worldwide",
"title":
"Head Bee Guy",
"type":
"job",
}
],
- Changed enum back to value Key pair
represntation
e.g
"drinker": { "value": "yes",
"key": "yes" },
- Standardize that all responses SHALL have the same structure, namely: a set of
response meta-data fields and a collection of entries
e.g
{"totalResults":1,"startIndex":1,"itemsPerPage":1,"sorted":false,"filtered":false
"entry":[{"id":"myspace.com:26000010","nickname":"shaka","profileUrl":"http:\/\/www.myspace.com\/shakasarah ","thumbnailUrl":"http:\/\/a229.ac-images.myspacecdn.com\/images01\/118\/s_3dcfafe8145a40fc46edacfebe7eaa94.jpg"}]}
Person Collection Changes
- Included four basic profile fields
id,nickName,profileUrl,thumbnailUrl
- Included new query parameters sortBy, sortOrder={order} , with
values ascending or asc (default) and descending or desc
Sorting on id and nickName
- Included new query parameter filterBy( top|online|app)
- Included new query parameter startsWith
e.g
filterBy = nickName&startsWith = ‘J’
(it will filters list with all dispayName starts with ‘j’ or ‘j’)
- Included new query parameter updatedSince to get those friends whose profiles and updated since given
date