All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sttl.pperror.main.rq Maven / Gradle / Ivy

Go to download

Corese is a Semantic Web Factory (triple store and SPARQL endpoint) implementing RDF, RDFS, SPARQL 1.1 Query and Update.

There is a newer version: 4.6.1
Show newest version
template st:main(?in) {
    ?res  
}
where {

  #bind (unnest(st:errors(?in)) as ?e)
  values ?e { unnest(st:errors(?in)) }
  filter strstarts(?e, st:)
  bind (strafter(?e, st:) as ?str)
  bind (strbefore(?str, "/") as ?type)
  bind (strafter(?str, "/")  as ?desc)
    
values (?type ?uri) {
    ("owlel" st:mainEL)
    ("owlql" st:mainQL)
    ("owlrl" st:mainRL)
    ("owltc" st:mainOWL)
} 

 bind ( st:call-template(?uri, ?desc)  as ?res)
 
 filter (strlen(?res) > 0)


} 




© 2015 - 2025 Weber Informatics LLC | Privacy Policy