P4_consent_withdrawal.sparql 348 B

1234567891011
  1. SELECT DISTINCT ?step ?process ?action ?item where {
  2. ?step a gdprov:ConsentWithdrawalStep .
  3. OPTIONAL {
  4. ?process a gdprov:Process .
  5. ?step gdprov:isPartOfProcess ?process .
  6. }
  7. OPTIONAL {
  8. ?step ?action ?item .
  9. }
  10. FILTER(regex(str(?action), "http://purl.org/adaptcentre/openscience/ontologies/gdprov#")) .
  11. } ORDER BY ?step ?action