Advertisement
Guest User

dimitri

a guest
Jul 31st, 2014
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "@context": {
  3.         "xsd": "http://www.w3.org/2001/XMLSchema#",
  4.         "foaf": "http://xmlns.com/foaf/0.1/",
  5.         "schema": "http://schema.org/",
  6.         "dbpedia": "http://dbpedia.org/ontology/",
  7.         "givenName": {
  8.             "@id": "foaf:givenName",
  9.             "@type": "xsd:string"
  10.         },
  11.         "additionalName": {
  12.             "@id": "schema:additionalName",
  13.             "@type": "xsd:string"
  14.         },
  15.         "familyName": {
  16.             "@id": "foaf:surName",
  17.             "@type": "xsd:string"
  18.         },
  19.         "name": {
  20.             "@id": "foaf:name",
  21.             "@type": "xsd:string"
  22.         },
  23.         "alternateName": {
  24.             "@id": "schema:alternateName",
  25.             "@type": "xsd:string"
  26.         },
  27.         "jobTitle": {
  28.             "@id": "schema:jobTitle",
  29.             "@type": "xsd:string"
  30.         },
  31.         "birthDate": {
  32.             "@id": "schema:birthDate",
  33.             "@type": "xsd:date"
  34.         },
  35.         "gender": {
  36.             "@id": "schema:gender",
  37.             "@type": "xsd:string"
  38.         },
  39.         "birthLocation": {
  40.             "@id": "dbpedia:birthPlace"
  41.         },
  42.         "homeLocation": {
  43.             "@id": "schema:homeLocation"
  44.         },
  45.         "age": {
  46.             "@id": "foaf:age",
  47.             "@type": "xsd:integer"
  48.         },
  49.         "label": {
  50.             "@id": "schema:name",
  51.             "@type": "xsd:string"
  52.         },
  53.         "facebookUrl": {
  54.             "@id": "foaf:holdsAccount",
  55.             "@type": "@id"
  56.         },
  57.         "twitterUrl": {
  58.             "@id": "foaf:holdsAccount",
  59.             "@type": "@id"
  60.         },
  61.         "linkedinUrl": {
  62.             "@id": "foaf:holdsAccount",
  63.             "@type": "@id"
  64.         }
  65.     },
  66.     "@id": "http://employees.freshheads.com/Dimitri van Hees",
  67.     "@type": "schema:Person",
  68.     "name": "Dimitri van Hees",
  69.     "givenName": "Dimitri",
  70.     "additionalName": "van",
  71.     "familyName": "Hees",
  72.     "alternateName": "Heeswijk",
  73.     "jobTitle": "Technisch architect",
  74.     "birthDate": "1984-03-14",
  75.     "age": 30,
  76.     "gender": "Man",
  77.     "image": null,
  78.     "interests": [
  79.         "Bierdrinken",
  80.         "bierbrouwen",
  81.         "voetbal kijken",
  82.         "carnaval"
  83.     ],
  84.     "sports": [
  85.         "Zaalvoetbal",
  86.         "biljart"
  87.     ],
  88.     "birthLocation": {
  89.         "@id": "http://dbpedia.org/resource/Nijmegen",
  90.         "@type": "schema:City",
  91.         "label": "Nijmegen"
  92.     },
  93.     "homeLocation": {
  94.         "@id": "http://dbpedia.org/resource/Nijmegen",
  95.         "@type": "schema:City",
  96.         "label": "Nijmegen"
  97.     },
  98.     "pet": null,
  99.     "devices": [
  100.         "Microsoft Surface Pro 2",
  101.         "Samsung  Galaxy S3",
  102.         "Dell M6500"
  103.     ],
  104.     "favoriteDrink": "La Trappe Isidor",
  105.     "favoriteSportingClub": "N.E.C. Nijmegen",
  106.     "favoriteLunch": "Tosti, boterham met pindakaas en sambal",
  107.     "favoriteColor": "Oranje",
  108.     "favoriteSoftware": [
  109.         "PHPStorm",
  110.         "PHPMyAdmin",
  111.         "Windows 8"
  112.     ],
  113.     "college": {
  114.         "name": "Tilburg University",
  115.         "study": "Informatie management"
  116.     },
  117.     "inServiceSince": "2007-09-01",
  118.     "facebookUrl": {
  119.         "@id": "https://facebook.com/dvhees",
  120.         "@type": "foaf:OnlineAccount",
  121.         "label": "https://facebook.com/dvhees"
  122.     },
  123.     "twitterUrl": {
  124.         "@id": "https://twitter.com/dvh",
  125.         "@type": "foaf:OnlineAccount",
  126.         "label": "https://twitter.com/dvh"
  127.     },
  128.     "linkedinUrl": {
  129.         "@id": "http://linkedin.com/in/dvanhees",
  130.         "@type": "foaf:OnlineAccount",
  131.         "label": "http://linkedin.com/in/dvanhees"
  132.     }
  133. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement