Virtuoso Open-Source Edition

  • Topic
  • Discussion
  • Sample Resource Content in Turtle Format

    # Prefix declarations for use in compact URIs (CURIes)
    
    @prefix     foaf:  <http://xmlns.com/foaf/0.1/>             .
    @prefix  dcterms:  <http://purl.org/dc/terms/>              .
    @prefix  dbpedia:  <http://dbpedia.org/resource/>           .
    @prefix     wdrs:  <http://www.w3.org/2007/05/powder-s#>    .
    @prefix      owl:  <http://www.w3.org/2002/07/owl#>         .
    @prefix      rel:  <http://purl.org/vocab/relationship/>    .
    @prefix     rdfs:  <http://www.w3.org/2000/01/rdf-schema#>  .
    @prefix       dc:  <http://purl.org/dc/elements/1.1/>       .
    @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        <http://kingsley.idehen.net/dataspace/person/kidehen#this>                              .
    <>       foaf:topic        :Alice                                                                                  .
    <>       foaf:topic        :London                                                                                 .
    <>       foaf:topic        :child                                                                                  .
    

    Related