@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 omtd:ModelFunction, owl:NamedIndividual, skos:Concept ;
  skos:narrower omtd:ConstituencyParsing .

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

omtd:ModelFunction
  rdfs:label "Model function"@en ;
  a owl:Class .

omtd:ConstituencyParsing
  skos:scopeNote "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 ;
  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 ;
  a owl:NamedIndividual, skos:Concept, omtd:ModelFunction ;
  skos:prefLabel "Constituency parsing"@en ;
  skos:altLabel "Natural Language Parsing"@en, "Phrase parsing"@en ;
  skos:broader omtd:Parsing ;
  skos:inScheme omtd:ModelFunctionScheme .

omtd:ModelFunctionScheme
  rdfs:label "Model Function Taxonomy"@en ;
  skos:prefLabel "Model Function Taxonomy"@en ;
  a owl:NamedIndividual, skos:ConceptScheme .

