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

skos:Concept a owl:Class .
omtd:AuthoringSupport
  rdfs:label "Authoring support"@en ;
  skos:prefLabel "Authoring support"@en ;
  a owl:NamedIndividual, omtd:Operation, skos:Concept ;
  skos:narrower omtd:SpellChecking .

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

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

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

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

omtd:SpellChecking
  rdfs:comment "The task/process of checking the accuracy of spelling of a word (and usually correcting it) according to the accepted form"@en, "Techniques for the identification of spelling or typing errors in textual documents, which may be applied interactively during the creation of the document, or off-line for existing documents. Spelling correction is an extension in which for each assumed error one or several hypothetical corrections are suggested."@en ;
  skos:inScheme omtd:OperationScheme ;
  a omtd:Operation, skos:Concept, owl:NamedIndividual ;
  skos:broader omtd:AuthoringSupport ;
  rdfs:label "Spell checking"@en ;
  skos:prefLabel "Spell checking"@en ;
  skos:altLabel "Spelling correction"@en .

