@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:annotationScheme
  skos:topConceptOf ms:LCRSubclassTaxonomy ;
  skos:definition "A set of elements and values designed to annotate data. It usually consists in a formal representation. It aims to represent a specific level of information, such as morphological features of words, syntactic dependency relations between phrases, discourse level information, etc. It can consist of a flat structure of elements and values (e.g., part-of-speech tags) or it can be more complex with interrelated elements (e.g., specific morphological features to be used for each part-of-speech)."@en ;
  skos:prefLabel "annotation scheme"@en ;
  skos:inScheme ms:LCRSubclassTaxonomy ;
  rdfs:label "annotation scheme"@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:annotationScheme .

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

