@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:LanguageChecking .

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:LanguageChecking .

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

omtd:LanguageChecking
  skos:altLabel "Proofing"@en ;
  skos:inScheme omtd:OperationScheme ;
  skos:prefLabel "Language checking"@en ;
  a omtd:Operation, skos:Concept, owl:NamedIndividual ;
  rdfs:comment "The task/process of identifying (and usually correcting) grammatical mistakes in a text"@en, "Language Checking comprises technologies used to detect and/or correct erroneous or inconsistent language use in documents. The scope of language checking technology ranges from general error correction, as performed by spell checkers and grammar checkers"@en ;
  rdfs:label "Language checking"@en ;
  skos:broader omtd:AuthoringSupport .

