%META:TOPICPARENT{name="VirtTipsAndTricksIsPropertyOfSyntaxInTurtle"}% ---+ Sample Resource Content in Turtle Format # Prefix declarations for use in compact URIs (CURIes) @prefix foaf: . @prefix dcterms: . @prefix dbpedia: . @prefix wdrs: . @prefix owl: . @prefix rel: . @prefix rdfs: . @prefix dc: . @prefix : <#> . # The last @prefix (":") enables relative CURIes, denoting # entities within this document, such as -- # :Alice == http://{document-URL}#Alice # :London == http://{document-URL}#London :Alice foaf:age 38 ; foaf:name "Alice" ; :child :Bob , :Charlie ; is :child of :Edna , :Fred ; foaf:near :London ; is dcterms:creator of [ dcterms:title "My life" ; dcterms:date "1999" ] . :London owl:sameAs dbpedia:London ; rdfs:label "London" . :child rdfs:label "Child Property or Attribute" ; owl:equivalentProperty rel:childOf . # Triples that make this document an effective starting point for # Linked Data Follow-Your-Nose (FYN). ("<>" denotes *this* document.) :Alice wdrs:describedby <> . :child wdrs:describedby <> . :London wdrs:describedby <> . <> a foaf:Document . <> dc:title "Linked Data Deployment using an Amazon S3 Bucket and a Turtle content based Document" . <> foaf:maker . <> foaf:topic :Alice . <> foaf:topic :London . <> foaf:topic :child . ---++ Related * Extended [[VirtRDFGraphsSecurity][fine-grained scenarios]] using RDF GRAPH Security * Loading Turtle resource(s) using: * [[VirtTipsAndTricksIsPropertyOfSyntaxInTurtleLOAD][SPARQL 1.1 LOAD feature]] * [[VirtTipsAndTricksIsPropertyOfSyntaxInTurtleConductor][Virtuoso Conductor]] * [[VirtTipsAndTricksIsPropertyOfSyntaxInTurtleSponger][Virtuoso Sponger]] * [[VirtTipsAndTricksIsPropertyOfSyntaxInTurtleCMD][Command-line Turtle Loader]] * [[VirtTipsAndTricksIsPropertyOfSyntaxInTurtle][Using {is property of} for inverse relations in Turtle]] * [[VirtTipsAndTricksGuide][Virtuoso Tips and Tricks Collection]] * [[http://docs.openlinksw.com/virtuoso/rdfsparql.html][Virtuoso Documentation]]