@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#> .
@prefix omtd: <http://w3id.org/meta-share/omtd-share/> .

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:DialogueModelling
  a owl:NamedIndividual, omtd:Operation, skos:Concept ;
  rdfs:label "Dialogue modelling"@en ;
  skos:broader omtd:LanguageModelling ;
  skos:altLabel "Dialog modeling"@en-us ;
  skos:definition "A Dialogue model is a system that simulates the behavior of dialogue participants. This includes formal models that instantiate linguistic theories of dialogue interaction and statistical models of dialogue behaviors."@en ;
  skos:prefLabel "Dialogue modelling"@en ;
  rdfs:comment "The task/process of building models of dialogues to be used in dialogue systems"@en ;
  skos:inScheme omtd:OperationScheme .

omtd:SupportOperationCollection
  a owl:NamedIndividual, omtd:Operation, skos:Collection ;
  skos:prefLabel "Support operation Collection"@en ;
  skos:member omtd:DialogueModelling .

omtd:LanguageModelling
  rdfs:label "Language Modelling"@en ;
  skos:prefLabel "Language Modelling"@en ;
  a owl:NamedIndividual, omtd:Operation, skos:Concept ;
  skos:narrower omtd:DialogueModelling .

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

