## RDF-Turtle Start ##
@base .
@prefix : <#> .
@prefix rdf: .
@prefix schema: .
@prefix vcard: .
@prefix sn: .
@prefix foaf: .
a schema:WebPage .
:BlogPosting rdf:type schema:BlogPosting .
:BlogPosting schema:accountablePerson "" .
:BlogPosting schema:articleSection "blog" .
:BlogPosting schema:author "Bob DuCharme" .
:BlogPosting schema:copyrightHolder "" .
:BlogPosting schema:copyrightYear "2021" .
:BlogPosting schema:creator "" .
:BlogPosting schema:dateModified "2021-06-27 13:20:00 +0000 UTC"^^schema:Date .
:BlogPosting schema:datePublished "2021-06-27 13:20:00 +0000 UTC"^^schema:Date .
:BlogPosting schema:description "What can this simple standardized model do for you?" .
:BlogPosting schema:headline "What is RDF?" .
:BlogPosting schema:inLanguage "en" .
:BlogPosting schema:keywords "Blog" .
:BlogPosting schema:keywords "JSON-LD" .
:BlogPosting schema:keywords "RDF" .
:BlogPosting schema:keywords "SPARQL" .
:BlogPosting schema:keywords "linkeddata" .
:BlogPosting schema:keywords "semanticweb" .
:BlogPosting schema:mainEntityOfPage .
:BlogPosting schema:name "What is RDF?" .
:BlogPosting schema:publisher "" .
:BlogPosting schema:url .
:BlogPosting schema:wordCount "2128" .
:BlogPosting schema:about sn:emp1, sn:emp2, sn:emp3, sn:emp4.
sn:emp1 a foaf:Person;
foaf:knows sn:emp2, sn:emp3, sn:emp4;
vcard:given-name "Heidi" .
sn:emp1 vcard:family-name "Smith" .
sn:emp1 vcard:title "CEO" .
sn:emp1 sn:hireDate "2015-01-13" .
sn:emp1 sn:completedOrientation "2015-01-30" .
sn:emp2 vcard:given-name "John" .
sn:emp2 vcard:family-name "Smith" .
sn:emp2 sn:hireDate "2015-01-28" .
sn:emp2 vcard:title "Engineer" .
sn:emp2 a foaf:Person;
sn:completedOrientation "2015-01-30" .
sn:emp2 sn:completedOrientation "2015-03-15" .
sn:emp3 vcard:given-name "Francis" .
sn:emp3 vcard:family-name "Jones" .
sn:emp3 a foaf:Person;
sn:hireDate "2015-02-13" .
sn:emp3 vcard:title "Vice President" .
sn:emp4 a foaf:Person;
vcard:given-name "Jane" .
sn:emp4 vcard:family-name "Berger" .
sn:emp4 sn:hireDate "2015-03-10" .
sn:emp4 vcard:title "Sales" .
## RDF-Turtle End ##