Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.01 KB | None | 0 0
  1. @prefix foaf: <http://www.xmlns.com/foaf/0.1/>.
  2. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
  3. @prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
  4. @prefix sc: <http://www.schema.org/>.
  5. @prefix dbr: <http://www.dbpedia.org/resource/>.
  6. @prefix dbo: <http://www.dbpedia.org/ontology/>.
  7. @prefix wiki: <https://en.wikipedia.org/wiki/>.
  8. @prefix vcard: <http://www.w3.org/2006/vcard/ns#>.
  9.  
  10. dbr:Charles_Dickens
  11. a foaf:Person;
  12. dbo:birthDate "1812-02-07"^^xsd:date;
  13. dbo:deathDate "1870-06-09"^^xsd:date;
  14. dbo:pseudonym "Boz."^^xsd:string;
  15. dbo:occupation wiki:Writer;
  16. dbo:birthPlace wiki:Portsmouth.
  17.  
  18. wiki:Writer
  19. sc:author wiki:A_Christmas_Carol.
  20.  
  21. wiki:A_Christmas_Carol
  22. a sc:book;
  23. sc:datePublished "1843-12-19"^^xsd:date;
  24. sc:BookFormatType dbr:Paperback;
  25. foaf:homepage <https://www.amazon.com/Christmas-Carol-Illustrated-Classic/dp/1948132303>.
  26.  
  27. wiki:Portsmouth
  28. a sc:City;
  29. dbo:country wiki:England.
  30.  
  31.  
  32. wiki:England
  33. a vcard:country-name;
  34. dbo:capital "London"^^xsd:string;
  35. foaf:homepage <https://www.gov.uk/>.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement