.fuseki.ttl 1.2 KB

12345678910111213141516171819202122232425
  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 ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
  6. @prefix : <#> .
  7. [] rdf:type fuseki:Server .
  8. <#service> rdf:type fuseki:Service ;
  9. rdfs:label "Car" ; # Human readable label for dataset
  10. fuseki:name "car" ; # Name of the dataset in the endpoint url
  11. fuseki:serviceReadWriteGraphStore "data" ; # SPARQL Graph store protocol (read and write)
  12. fuseki:endpoint [ fuseki:operation fuseki:query ; fuseki:name "sparql" ] ; # SPARQL query service
  13. fuseki:endpoint [ fuseki:operation fuseki:shacl ; fuseki:name "shacl" ] ; # SHACL query service
  14. fuseki:dataset <#dataset> .
  15. ## In memory TDB with union graph.
  16. <#dataset> rdf:type tdb:DatasetTDB ;
  17. tdb:location "--mem--" ;
  18. # Query timeout on this dataset (1s, 1000 milliseconds)
  19. ja:context [ ja:cxtName "arq:queryTimeout" ; ja:cxtValue "1000" ] ;
  20. # Make the default graph be the union of all named graphs.
  21. tdb:unionDefaultGraph true .