config.ttl 1.5 KB

1234567891011121314151617181920212223242526272829
  1. @prefix fuseki: <http://jena.apache.org/fuseki#> .
  2. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  3. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  4. @prefix tdb: <http://jena.hpl.hp.com/2008/tdb#> .
  5. @prefix tdb2: <http://jena.apache.org/2016/tdb#> .
  6. @prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
  7. @prefix : <#> .
  8. [] rdf:type fuseki:Server .
  9. <#service> rdf:type fuseki:Service ;
  10. rdfs:label "SystemDesignOntology2Layers" ; # Human readable label for dataset
  11. fuseki:name "SystemDesignOntology2Layers" ; # Name of the dataset in the endpoint url
  12. fuseki:serviceReadWriteGraphStore "SystemDesignOntology2Layers" ; # SPARQL Graph store protocol (read and write)
  13. fuseki:endpoint [ fuseki:operation fuseki:query ; fuseki:name "sparql" ] ; # SPARQL query service
  14. fuseki:endpoint [ fuseki:operation fuseki:shacl ; fuseki:name "shacl" ] ; # SHACL query service
  15. # Joeri: I added these, because the enactment service expects a single endpoint for query and update:
  16. fuseki:endpoint [ fuseki:operation fuseki:update ];
  17. fuseki:endpoint [ fuseki:operation fuseki:query ];
  18. fuseki:dataset <#dataset> .
  19. <#dataset> rdf:type tdb2:DatasetTDB2 ;
  20. tdb2:location "run/databases/DB2" ;
  21. ja:context [ ja:cxtName "arq:queryTimeout" ; ja:cxtValue "1000" ] ;
  22. # Make the default graph be the union of all named graphs.
  23. tdb2:unionDefaultGraph true ;