# Example in DPV (RDFS+SKOS)
# Method 1: Ambiguous regarding independence of Collect and Use
ex:ActivityA a dpv:Process ;
    dpv:hasProcessing ex:Collect, ex:Use .

# Method 2: Accuracy regarding combination of Collect and Use
ex:CollectAndUse a dpv:Processing ;
    # rdfs:subClassOf dpv:Collect, dpv:Use ; # -- RDFS+SKOS permits this
    skos:broader ex:Collect, ex:Use ;
    skos:prefLabel "Collect and Use data using User Device" .
ex:Activity a dpv:Process ;
    dpv:hasProcessing ex:CollectAndUse . # -- property range is correct

# Example in DPV-OWL
ex:CollectAndUse rdfs:subClassOf dpv:Collect, dpv:Use ;
    skos:prefLabel "Collect and Use data using User Device" .
ex:Activity a dpv:Process ;
    # dpv:hasProcessing ex:CollectAndUse  # -- property range is incorrect
    dpv:hasProcessing ex:CU1 . # hence, an instance is needed for OWL2
ex:CU1 a ex:CollectAndUse .
