P6_personal_data_processing_legitimate_interest.sparql 476 B

1234567891011
  1. SELECT DISTINCT ?step ?process ?action ?item where {
  2. ?data a ?data_type .
  3. ?data_type rdfs:subClassOf gdprov:PersonalData .
  4. ?step a ?step_type .
  5. ?step_type rdfs:subClassOf gdprov:DataStep .
  6. ?step gdprov:usesData ?data .
  7. ?step gdprov:isPartOfProcess ?process .
  8. ?step ?action ?item .
  9. ?step gdprov:hasLegalBasis gdprtext:LegitimateInterest .
  10. FILTER(regex(str(?action), "http://purl.org/adaptcentre/openscience/ontologies/gdprov#")) .
  11. } ORDER BY ?process ?action