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

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

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

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

omtd:ConstituencyParsing
  skos:inScheme omtd:OperationScheme ;
  a omtd:Operation, owl:NamedIndividual, skos:Concept ;
  rdfs:comment "The task/process of identifying and marking constituents (phrases, governed by a head and including function words and/or modifiers ) in a text or text segment"@en ;
  rdfs:label "Constituency parsing"@en ;
  skos:prefLabel "Constituency parsing"@en ;
  skos:definition "Parsing (from Latin \"\"pars orationis\"\" = parts of speech) is the syntactic analysis of languages. Natural Language Parsing is the syntactic analysis of natural languages, such as Finnish or Chinese. The objective of Natural Language Parsing is to determine parts of sentences (such as verbs, noun phrases, or relative clauses), and the relationships between them (such as subject or object). Unlike parsing of formally defined artificial languages (such as Java or predicate logic), parsing of natural languages presents problems due to ambiguity, and the productive and creative use of language."@en ;
  skos:altLabel "Natural Language Parsing"@en, "Phrase parsing"@en ;
  skos:broader omtd:Parsing .

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

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

