ex:SomeProcess a dpv:Process ;
    dpv:hasLegalBasis [
        a dpv:VitalInterestOfNaturalPerson ;
        dpv:hasJustification "what is the interest..."@en ;
        dpv:hasHumanSubject ex:Alice ; # whose vital interest it is
        # Method 1: Vital interest being utilised
        dpv:hasStatus dpv:VitalInterestOngoing ;
    ] .
ex:SomeProcess a dpv:Process ;
    dpv:hasLegalBasis [
        a dpv:VitalInterestOfDataSubject ;
        dpv:hasJustification "what is the interest..."@en ;
        dpv:hasDataSubject ex:Alice ; # whose vital interest it is
        # Method 2: status completed with date
        dpv:hasStatus [
            a dpv:VitalInterestStatus ;
            skos:broader dpv:VitalInterestCompleted ;
            dct:date "2024-12-31"^^xsd:date ;
        ] ;
    ] .
