P3_show_consent.sparql 303 B

12345678
  1. SELECT DISTINCT ?step ?action ?consent where {
  2. ?consent a gdprov:ConsentAgreement .
  3. ?StepType rdfs:subClassOf gdprov:ConsentStep .
  4. ?step a ?StepType .
  5. ?step ?action ?consent.
  6. FILTER(regex(str(?action), "http://purl.org/adaptcentre/openscience/ontologies/gdprov#")) .
  7. } ORDER BY ?step ?consent