ament.OntologyBundle.1.0.2.source-code.countProperties.sparql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of OntologyBundle Show documentation
Show all versions of OntologyBundle Show documentation
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
prefix owl:
prefix rdf:
select (count(distinct ?prop) as ?propCount) where {
values ?propType {
rdf:Property
owl:AnnotationProperty
owl:AsymmetricProperty
owl:DatatypeProperty
owl:DeprecatedProperty
owl:FunctionalProperty
owl:InverseFunctionalProperty
owl:IrreflexiveProperty
owl:ObjectProperty
owl:OntologyProperty
owl:ReflexiveProperty
owl:SymmetricProperty
owl:TransitiveProperty
}
?prop a ?propType .
}