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

ament.OntologyBundle.1.0.2.source-code.replaceBlankUnionDomainAndRange.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 owl: 

delete {
	?s ?p ?unionOrIntersectionCls .
	?unionOrIntersectionCls a owl:Class ;
		?unionOrIntersectionOf ?clsList .
} insert {
	?s ?p ?newUnionOrIntersectionCls .
	?newUnionOrIntersectionCls a owl:Class ;
		?unionOrIntersectionOf ?clsList .
} where {
	values ?unionOrIntersectionOf {
		owl:unionOf
		owl:intersectionOf
	}

	?s ?p ?unionOrIntersectionCls .
	?unionOrIntersectionCls ?unionOrIntersectionOf ?clsList .
	optional { ?unionOrIntersectionCls a owl:Class . }
	filter ( isBlank(?unionOrIntersectionCls) && !isBlank(?clsList) )
	bind (?_fillNS as ?fillNS)
	bind ( concat(str(?unionOrIntersectionOf), "\n", str(?clsList)) as ?toHash )
	bind ( iri(concat(str(?fillNS), "z", sha256(?toHash))) as ?newUnionOrIntersectionCls )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy