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

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:storageLimitation
  skos:topConceptOf ms:DataProtectionPrincipleTaxonomy ;
  skos:definition "The personal data is kept for no longer than is necessary for the purposes of processing"@en ;
  skos:prefLabel "storage limitation"@en ;
  skos:inScheme ms:DataProtectionPrincipleTaxonomy ;
  rdfs:label "storage limitation"@en ;
  a ms:DataProtectionPrinciple, owl:NamedIndividual, skos:Concept .

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

