ex:PDH a dpv:Process ;
    # method 1: directly specify the measure
    dpv:hasTechnicalMeasure dpv:AccessControlMethod ;
    # method 2: specify the measure with implementation details
    dpv:hasTechnicalMeasure [
        a dpv:TechnicalMeasure ;
        skos:broader dpv:AccessControlMethod ; 
        # same measure can have multiple technical measures involved
        dpv:isImplementedUsingTechnology ex:CorpDataBase ;
    ] .

ex:CorpDataBase a dpv:Technology ;
    a tech:Database ;
    # indicating technology has a technical measure
    dpv:hasTechnicalMeasure dpv:AccessControlMethod ;
    # indicating technology is capable of providing a technical measure
    # in other use-cases
    tech:hasCapability dpv:AccessControlMethod .
