rsrc_centric_layout.sparql 881 B

1234567891011121314151617181920212223242526
  1. PREFIX dcterms: <http://purl.org/dc/terms/>
  2. PREFIX fcrepo: <http://fedora.info/definitions/fcrepo#>
  3. PREFIX foaf: <http://xmlns.com/foaf/0.1/>
  4. PREFIX ldp: <http://www.w3.org/ns/ldp#>
  5. INSERT DATA {
  6. GRAPH <info:fcsystem/graph/userdata/_main/> {
  7. <info:fcres/> dcterms:title "Repository Root" .
  8. }
  9. GRAPH <info:fcsystem/graph/admin/> {
  10. <info:fcres/> a
  11. fcrepo:RepositoryRoot , fcrepo:Resource , fcrepo:Container ,
  12. ldp:Resource , ldp:Container , ldp:BasicContainer , ldp:RDFSource ;
  13. fcrepo:created "$timestamp"^^xsd:dateTime ;
  14. fcrepo:lastModified "$timestamp"^^xsd:dateTime ;
  15. .
  16. }
  17. GRAPH <info:fcsystem/meta> {
  18. <info:fcsystem/graph/admin/> a <info:fcsystem/AdminGraph> ;
  19. foaf:primaryTopic <info:fcres/> .
  20. <info:fcsystem/graph/userdata/_main/> a <info:fcsystem/UserProvidedGraph> ;
  21. foaf:primaryTopic <info:fcres/> .
  22. }
  23. }