# Example in DPV (RDFS+SKOS)
# AliceCo’s optimisation related to better services for users’ infrastructure
exA:TVServiceOptimisation a dpv:Purpose;
    skos:broader dpv:OptimisationForConsumer ;
    skos:prefLabel "Optimise Service for Users’ Infrastructure" .

# BobCo’s optimisation related to more efficient signals for users’ TV sets
exB:TVSignalOptimisation a dpv:Purpose;
    skos:broader dpv:OptimisationForConsumer ;
    skos:prefLabel "Optimise Signal for Consumer TV Set" .

# Example in DPV-OWL
# the common ancestor is dpv:OptimisationForConsumer ; 
# Using this as context to compare:
# (either manually, or based on data used, etc.)

# 1: BobCo's optimisations are found to be broader than AliceCo's
exA:TVServiceOptimisation skos:broader exB:TVServiceOptimisation .

# 2: BobCo's optimisations are found to be the same as AliceCo's
exA:TVServiceOptimisation skos:exactMatch exB:TVServiceOptimisation .

# 3: BobCo's optimisations are found to be similar to AliceCo's
exA:TVServiceOptimisation skos:closeMatch exB:TVServiceOptimisation .
