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

ament.OntologyBundle.1.0.2.source-code.deleteOntologyNodes.update Maven / Gradle / Ivy

Go to download

A Gradle plugin to package (or bundle) an OWL ontology in a jar to make it easy to use in Java-based software projects. Copyright © 2023, 2024 RTX BBN Technologies

There is a newer version: 1.0.3
Show newest version
prefix dct:  
prefix foaf: 
prefix owl:  

delete {
	?ont ?p ?o ;
		dct:creator ?agent ;
		foaf:maker ?maker .
	?agent a foaf:Agent ;
		foaf:name ?name .
	?maker foaf:name ?name ;
		foaf:homepage ?homepage .
} where {
	?ont a owl:Ontology ;
		?p ?o .

	optional {
		?ont dct:creator ?agent .
		?agent a foaf:Agent ;
			foaf:name ?name .
	}

	optional {
		?ont foaf:maker ?maker .
		optional { ?maker foaf:name ?name . }
		optional { ?maker foaf:homepage ?homepage . }
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy