# A Basic Semantic Web, deployed using Linked Data Principles # ## Turtle Start ## @prefix : <#> . @prefix doc: . @prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix foaf: . @prefix schema: . [ a :Document; :identifiedBy doc:A ; foaf:primaryTopic :e1 ; schema:name "Document A" ] :linked_to [ a :Document; :identifiedBy doc:B ; foaf:primaryTopic :e2 ; schema:name "Document B" ] . :e1 a foaf:Person ; foaf:name "Person Entity 1" . :e2 a foaf:Person ; foaf:name "Person Entity 2" . :Document owl:equivalentClass foaf:Document. foaf:name a rdf:Property; a owl:AnnotationProperty ; owl:equivalentProperty schema:name . :identifiedBy a rdf:Property ; owl:equivalentProperty schema:identifier . :linked_to a rdf:Property ; a owl:ObjectProperty ; rdfs:subPropertyOf schema:relatedLink . ## Turtle End ##