Skip to content

Instantly share code, notes, and snippets.

@MrDHat
Last active December 16, 2015 21:49
Show Gist options
  • Save MrDHat/5502008 to your computer and use it in GitHub Desktop.
Save MrDHat/5502008 to your computer and use it in GitHub Desktop.
Firefox OS Contacts PiCL Sample Data Format
{
"id": "some_id",
"version": "verson_no",
"timstamp": "timestamp_at_which_product_was_last_modified",
"payload": [
{
"startIndex": 10,
"itemsPerPage": 10,
"totalResults": 12,
"entry": [
{
"id": "123",
"displayName": "Minimal Contact"
},
{
"id": "703887",
"displayName": "Mork Hashimoto",
"name": {
"familyName": "Hashimoto",
"givenName": "Mork"
},
"birthday": "0000-01-16",
"gender": "male",
"drinker": "heavily",
"tags": [
"plaxo guy",
"favorite"
],
"emails": [
{
"value": "mhashimoto-04@plaxo.com",
"type": "work",
"primary": "true"
},
{
"value": "mhashimoto-04@plaxo.com",
"type": "home"
},
{
"value": "mhashimoto@plaxo.com",
"type": "home"
}
],
"phoneNumbers": [
{
"value": "KLONDIKE5",
"type": "work"
},
{
"value": "650-123-4567",
"type": "mobile"
}
],
"addresses": [
{
"type": "home",
"streetAddress": "742 Evergreen Terrace\nSuite 123",
"locality": "Springfield",
"region": "VT",
"postalCode": "12345",
"country": "USA",
"formatted": "742 Evergreen Terrace\nSuite 123\nSpringfield, VT 12345 USA"
}
],
"organizations": [
{
"name": "Burns Worldwide",
"title": "Head Bee Guy"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment