Skip to content

Instantly share code, notes, and snippets.

@mamund
Last active August 29, 2015 14:04
Show Gist options
  • Save mamund/82d1e9e611065a5b8df0 to your computer and use it in GitHub Desktop.
Save mamund/82d1e9e611065a5b8df0 to your computer and use it in GitHub Desktop.
message extensions
{
"url" : "http://api.example.com/1",
"givenName" : "Mike",
"familyname" : "Amundsen",
"email" : "mca@amundsen.com",
"phone" : "123-456-7890"
}
{
"url" : "http://api.example.com/1",
"givenName" : "Mike",
"familyname" : "Amundsen",
"email" : "mca@amundsen.com",
"phone" : "123-456-7890",
"ext" : [
{"name" : "workPhone", "value" : "234-567-8901"},
{"name" : "workEmail", "value" : "mike.amundsen@example.com"}
]
}
{
"id" : "q1w32e3r4",
"url" : "http://api.example.com/1",
"person" : {
"givenName" : "Mike",
"familyname" : "Amundsen",
"email" : "mca@amundsen.com",
"phone" : "123-456-7890"
},
"address" : {
"street1" : "123 Main",
"street2" : "Apt #1",
"city" : "Byteville",
"stateRegion" : "MD",
"postalCode" : "12345"
}
}
{
"id" : "q1w32e3r4",
"url" : "http://api.example.com/1",
"givenName" : "Mike",
"familyname" : "Amundsen",
"email" : "mca@amundsen.com",
"phone" : "123-456-7890",
"street1" : "123 Main",
"street2" : "Apt #1",
"city" : "Byteville",
"stateRegion" : "MD",
"postalCode" : "12345"
}
givenName=Mike&familyName=Amundsen&phone=123-456-7890
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment