@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix sys: <http://www.openrdf.org/config/repository#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sr: <http://www.openrdf.org/config/repository/sail#> .
@prefix sail: <http://www.openrdf.org/config/sail#> .
@prefix myRepo: <http://onto.fel.cvut.cz/ontologies/repositories/> .

myRepo:###REPO_PLACEHOLDER### a sys:Repository ;
  sys:repositoryID "###REPO_PLACEHOLDER###" ;
	rdfs:label "Memory store, no inferencing" ;
  sys:repositoryImpl [
    sys:repositoryType "openrdf:SailRepository" ;
    sr:sailImpl [
          sail:sailType "openrdf:MemoryStore" ;
          ms:persist "true"^^<http://www.w3.org/2001/XMLSchema#boolean>
    ]
  ].
