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

ms:LCRSubclass
  rdfs:label "LCR subclass"@en ;
  a owl:Class .

ms:dictionary
  skos:topConceptOf ms:LCRSubclassTaxonomy ;
  skos:definition "A book or electronic resource that contains a list of words (usually in alphabetical order) and explains their meanings, or gives a word for them in another language and other information (e.g., spelling, pronunciation, etc.)"@en ;
  skos:prefLabel "dictionary"@en ;
  skos:inScheme ms:LCRSubclassTaxonomy ;
  rdfs:label "dictionary"@en ;
  a ms:LCRSubclass, owl:NamedIndividual, skos:Concept .

skos:Concept a owl:Class .
ms:LCRSubclassTaxonomy
  rdfs:label "Taxonomy of Subclasses of Lexical/Conceptual Resources"@en ;
  skos:prefLabel "LCR Subclass Taxonomy"@en ;
  a owl:NamedIndividual, skos:ConceptScheme ;
  skos:hasTopConcept ms:dictionary .

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

