@prefix :       <http://base/#> .
@prefix fuseki: <http://jena.apache.org/fuseki#> .
@prefix ja:     <http://jena.hpl.hp.com/2005/11/Assembler#> .
@prefix rdfs:   <http://www.w3.org/2000/01/rdf-schema#> .
@prefix tdb2:   <http://jena.apache.org/2016/tdb#> .
@prefix text:   <http://jena.apache.org/text#> .
@prefix skos:   <http://www.w3.org/2004/02/skos/core#> .

:service_tdb_all a fuseki:Service ;
    fuseki:name    "ontologies" ;
    rdfs:label     "Ontologies dataset" ;
    fuseki:dataset :text_dataset ;

    # endpoint /ontologies/
    # SPARQL Query Language and SPARQL Graph Store HTTP Protocol (read)
    fuseki:endpoint [
        fuseki:operation fuseki:query
    ] ;
    fuseki:endpoint [
        fuseki:operation fuseki:gsp-r
    ] ;

    # endpoint /ontologies/query
    # SPARQL Query Language
    fuseki:endpoint [
        fuseki:name      "query" ;
        fuseki:operation fuseki:query
    ] ;

    # endpoint /ontologies/sparql
    # SPARQL Query Language
    fuseki:endpoint [
        fuseki:name      "sparql" ;
        fuseki:operation fuseki:query
    ] ;

    # endpoint /ontologies/get
    # SPARQL Graph Store HTTP Protocol (read)
    fuseki:endpoint [
        fuseki:name      "get" ;
        fuseki:operation fuseki:gsp-r
    ] .

:text_dataset a text:TextDataset ;
    text:dataset :tdb2_dataset ;
    text:index   :indexLucene .

:tdb2_dataset a tdb2:DatasetTDB2 ;
    tdb2:location "/database/databases/ontologies/tdb2" .

:indexLucene a text:TextIndexLucene ;
    text:directory <file:/database/databases/ontologies/lucene> ;
    text:entityMap :entMap .

:entMap a text:EntityMap ;
    text:defaultField "rdfsLabel" ;
    text:entityField  "uri" ;
    text:uidField     "uid" ;
    text:langField    "lang" ;
    text:graphField   "graph" ;
    text:map (
        [
            text:field     "rdfsLabel" ;
            text:predicate rdfs:label
        ]
        [
            text:field     "skosAltLabel" ;
            text:predicate skos:altLabel
        ]
    ) .