@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 omtd: <http://w3id.org/meta-share/omtd-share/> .

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

omtd:MorphologicalAnalysis
  skos:altLabel "General morphological analyisis"@en ;
  skos:broader omtd:LinguisticAnalysis ;
  skos:prefLabel "Morphological analysis"@en ;
  skos:definition "The technologies for or the process of tracing the inflectional, derivational, and compounding processes in the formation of a given word in order to determine properties such as stem form, part-of-speech and inflectional information. As a crucial preprocessing step, morphological analysis is used in virtually all fields of natural language processing."@en ;
  rdfs:label "Morphological analysis"@en ;
  a omtd:Operation, owl:NamedIndividual, skos:Concept ;
  rdfs:comment "The analysis of the structure of words and their relations to other words as regards their form and derivation"@en ;
  skos:inScheme omtd:OperationScheme .

omtd:Operation
  rdfs:label "Operation"@en ;
  a owl:Class .

omtd:LinguisticAnalysis
  rdfs:label "Linguistic analysis"@en ;
  skos:prefLabel "Linguistic analysis"@en ;
  a owl:NamedIndividual, omtd:Operation, skos:Concept ;
  skos:narrower omtd:MorphologicalAnalysis .

omtd:TextProcessingCollection
  a owl:NamedIndividual, omtd:Operation, skos:Collection ;
  skos:prefLabel "Text Processing Collection"@en ;
  skos:member omtd:MorphologicalAnalysis .

omtd:OperationScheme
  rdfs:label "Operation Taxonomy"@en ;
  skos:prefLabel "Operation Taxonomy"@en ;
  a owl:NamedIndividual, skos:ConceptScheme .

