Meetup + @context

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
7
 
1
{
2
  "link": "http://www.meetup.com/members/19524571",
3
  "name": "Benjamin Young",
4
  "country": "us",
5
  "bio": "aka BigBlueHat -=- Developer, Web, & Open Source Advocate, Invited Expert in the Annotation and Digital Publishing Working Groups at the W3C. Previously an inventor and evangelist for IBM's Cloudant, Couchbase, and also CTO at InnoVenture.",
6
  "city": "Greenville"
7
}
Re-contextualized To Match My Terms
xxxxxxxxxx
15
 
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
  "country": "us",
12
  "city": "Greenville",
13
  "description": "aka BigBlueHat -=- Developer, Web, & Open Source Advocate, Invited Expert in the Annotation and Digital Publishing Working Groups at the W3C. Previously an inventor and evangelist for IBM's Cloudant, Couchbase, and also CTO at InnoVenture.",
14
  "name": "Benjamin Young"
15
}
Edit in JS Bin