How do I refer to a SHACL rule file in a Fuseki configuration?

256 Views Asked by At

I want Fuseki sparql endpoint to infer new triples using SHACL rules in a file "rules.ttl".

From documentation in https://jena.apache.org/documentation/shacl/index.html

<#serviceInMemoryShacl> rdf:type fuseki:Service ;
    rdfs:label                   "Dataset with SHACL validation" ;
    fuseki:name                  "ds" ;
    fuseki:serviceReadWriteGraphStore "" ;
    fuseki:endpoint [ fuseki:operation fuseki:shacl ; fuseki:name "shacl" ] ;
    fuseki:dataset <#dataset> ;

Is there some place in the syntax above to refer to the rules.ttl file?

0

There are 0 best solutions below