Advertisement
Guest User

ann

a guest
Apr 8th, 2020
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.62 KB | None | 0 0
  1. @prefix ex: <http://annexample.org/#> .
  2. @prefix foaf: <http://xmlns.com/foaf/0.1/> .
  3. @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
  4. @prefix dc: <http://purl.org/dc/terms/> .
  5. @prefix wd: <http://www.wikidata.org/entity/> .
  6.  
  7. @prefix company: <http://annexample.org/company/> .
  8.  
  9.  
  10. ex:ann
  11.     a foaf: Employee;
  12.     foaf:worksFor ex:raytheon;
  13.     schema:employeeEmail "ann.hoang@raytheon.com" ;
  14.     schema:dateOfBirth "1988-09-05"^^xsd:date ;
  15.     schema:dateOfHire "2020-06-06"^^xsd:date ;
  16.     schema:jobTitle "Senior AI Research Scientist" ;
  17.    
  18. company:raytheon
  19.     foaf:locatesIn ex:arlington;
  20.     schema:addressLine1 "1100 Wilson Blvd" ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement