@prefix ms: <http://w3id.org/meta-share/meta-share/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .

ms:dataMinimisation
  skos:prefLabel "data minimization"@en, "data minimisation"@en-gb ;
  skos:topConceptOf ms:DataProtectionPrincipleTaxonomy ;
  rdfs:label "data minimization"@en, "data minimisation"@en-gb ;
  skos:inScheme ms:DataProtectionPrincipleTaxonomy ;
  a owl:NamedIndividual, skos:Concept, ms:DataProtectionPrinciple ;
  skos:definition "The personal data is adequate, relevant and limited"@en .

skos:Concept a owl:Class .
owl:NamedIndividual
  rdfs:label "Named individual"@en ;
  a owl:Class .

ms:DataProtectionPrinciple
  rdfs:label "Data protection principle"@en ;
  a owl:Class .

ms:DataProtectionPrincipleTaxonomy
  rdfs:label "Data Protection Principle Taxonomy"@en ;
  skos:prefLabel "Data Protection Principle Taxonomy"@en ;
  a owl:NamedIndividual, skos:ConceptScheme ;
  skos:hasTopConcept ms:dataMinimisation .

