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

omtd:QuestionAnswering
  skos:prefLabel "Question Answering"@en ;
  a skos:Concept, owl:NamedIndividual, omtd:Operation ;
  skos:altLabel "Answer Extraction"@en, "Textual Question Answering"@en, "QA"@en, "AE"@en ;
  rdfs:comment "The task/process where computer systems try to automatically answer questions posed by users in the form of natural language"@en ;
  rdfs:label "Question Answering"@en ;
  skos:definition "Question answering or Answer extraction (AE) aims at retrieving those exact passages of a document that directly answer a given user question. AE is more ambitious than information retrieval and information extraction in that the retrieval results are short phrases, not entire documents, and in that the queries may be arbitrarily specific. It is less ambitious than full-fledged question answering in that the answers are not generated from a knowledge base but looked up in the text of documents."@en ;
  skos:broader omtd:KnowledgeDiscovery, omtd:InformationExtraction ;
  skos:inScheme omtd:OperationScheme .

skos:Concept a owl:Class .
omtd:InformationExtraction
  rdfs:label "Information Extraction"@en ;
  skos:prefLabel "Information Extraction"@en ;
  a owl:NamedIndividual, omtd:Operation, skos:Concept ;
  skos:narrower omtd:QuestionAnswering .

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

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

omtd:KnowledgeDiscovery
  rdfs:label "Knowledge Discovery"@en ;
  skos:prefLabel "Knowledge Discovery"@en ;
  a owl:NamedIndividual, omtd:Operation, skos:Concept ;
  skos:narrower omtd:QuestionAnswering .

omtd:InformationExtractionAndInformationRetrievalCollection
  a owl:NamedIndividual, omtd:Operation, skos:Collection ;
  skos:prefLabel "Information Extraction and Information Retrieval Collection"@en ;
  skos:member omtd:QuestionAnswering .

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

