LinkedIn Re-contextualized

My Custom Context
AخA
 
1
{
2
  "@vocab": "http://schema.org/",
3
  "first_name": "givenName",
4
  "last_name": "familyName",
5
  "alias": "alternateName",
6
  "job_title": "jobTitle",
7
  "city": "addressLocality",
8
  "country": "addressCountry"
9
}
Doc From Someone Else
xxxxxxxxxx
9
 
1
{
2
  "firstName": "Benjamin",
3
  "headline": "Invited Expert, W3C",
4
  "id": "Ol-pwbI97V",
5
  "lastName": "Young",
6
  "siteStandardProfileRequest": {
7
    "url": "https://www.linkedin.com/profile/view?id=AAoAAAAAx4oBxNlPOjsrspSms5FMi7Tx0c-EBSk&authType=name&authToken=XFwT&trk=api*a3227641*s3301901*"
8
  }
9
}
Re-contextualized To Match My Terms
xxxxxxxxxx
14
 
1
{
2
  "@context": {
3
    "@vocab": "http://schema.org/",
4
    "first_name": "givenName",
5
    "last_name": "familyName",
6
    "alias": "alternateName",
7
    "job_title": "jobTitle",
8
    "city": "addressLocality",
9
    "country": "addressCountry"
10
  },
11
  "last_name": "Young",
12
  "first_name": "Benjamin",
13
  "job_title": "Invited Expert, W3C"
14
}
Edit in JS Bin