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

omtd:Parsing
  rdfs:label "Parsing"@en ;
  skos:prefLabel "Parsing"@en ;
  a owl:NamedIndividual, omtd:Operation, skos:Concept ;
  skos:narrower omtd:DeepParsing .

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

omtd:DeepParsing
  rdfs:comment "The  task/process of building complete parse trees for a sentence [adapted from https://stackoverflow.com/questions/37020577/shallow-parsing-vs-deep-parsing-in-stanford-corenlp-java]"@en ;
  skos:prefLabel "Deep parsing"@en ;
  skos:inScheme omtd:OperationScheme ;
  skos:broader omtd:Parsing ;
  rdfs:label "Deep parsing"@en ;
  a owl:NamedIndividual, omtd:Operation, skos:Concept .

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

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

