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

skos:Concept a owl:Class .
dc:MediaType
  rdfs:label "Media Type"@en ;
  a owl:Class .

omtd:Conll2012
  a owl:NamedIndividual, dc:MediaType, omtd:DataFormat, skos:Concept ;
  rdfs:label "CoNLL-2012"@en ;
  rdfs:seeAlso "https://dkpro.github.io/dkpro-core/releases/1.8.0/docs/format-reference.html#format-Conll2012" ;
  skos:prefLabel "CoNLL-2012"@en ;
  skos:definition "The CoNLL 2012 format targets semantic role labeling and coreference. Columns are tab-separated. Sentences are separated by a blank new line."@en ;
  omtd:hasMimetype "text/x.org.dkpro.conll-2012" ;
  skos:broader omtd:ConllFormat ;
  skos:inScheme omtd:DataFormatScheme .

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

omtd:ConllFormat
  rdfs:label "CoNLL format"@en ;
  skos:prefLabel "CoNLL format"@en ;
  a omtd:DataFormat, dc:MediaType, owl:NamedIndividual, skos:Concept ;
  skos:narrower omtd:Conll2012 .

omtd:DataFormat
  rdfs:label "Data format"@en ;
  a owl:Class .

omtd:DataFormatScheme
  rdfs:label "Data Format Taxonomy"@en ;
  skos:prefLabel "Data Format Taxonomy"@en ;
  a owl:NamedIndividual, skos:ConceptScheme .

