fibo2023Q3 / src /etc /vocabulary /subproperties.sparql
wikipunk's picture
add FIBO Q3 2023 release to src
38b6321
raw
history blame contribute delete
967 Bytes
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX fibo-skos: <https://spec.edmcouncil.org/fibo/vocabulary/>
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
CONSTRUCT
{
?vocPropertyIRI skos:broader ?vocParentPropertyIRI
}
WHERE
{
SELECT DISTINCT *
{
?propertyIRI a owl:ObjectProperty
FILTER (isIRI(?propertyIRI))
FILTER (CONTAINS(str(?propertyIRI), 'edmcouncil')) .
BIND (IRI(REPLACE(str(?propertyIRI), "/ontology/", "/vocabulary/")) as ?vocPropertyIRI)
?propertyIRI rdfs:subPropertyOf ?parentPropertyIRI .
?parentPropertyIRI a owl:ObjectProperty
FILTER (isIRI(?parentPropertyIRI))
FILTER (CONTAINS(str(?parentPropertyIRI), 'edmcouncil')) .
BIND (IRI(REPLACE(str(?parentPropertyIRI), "/ontology/", "/vocabulary/")) as ?vocParentPropertyIRI)
}
}