Last active
December 16, 2015 21:49
-
-
Save MrDHat/5502008 to your computer and use it in GitHub Desktop.
Firefox OS Contacts PiCL Sample Data Format
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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": "[email protected]", | |
"type": "work", | |
"primary": "true" | |
}, | |
{ | |
"value": "[email protected]", | |
"type": "home" | |
}, | |
{ | |
"value": "[email protected]", | |
"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