@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 dc: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .

omtd:RdfFormat
  rdfs:label "RDF format"@en ;
  skos:prefLabel "RDF format"@en ;
  a omtd:DataFormat, dc:MediaType, owl:NamedIndividual, skos:Concept ;
  skos:narrower omtd:Obo .

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

omtd:Obo
  skos:definition "Serialization format for ontologies according to the Open Biomedical Ontologies model."@en, "Serialisation format for ontologies according to the Open Biomedical Ontologies model."@en-GB ;
  skos:broader omtd:RdfFormat ;
  a omtd:DataFormat, skos:Concept, dc:MediaType, owl:NamedIndividual ;
  skos:inScheme omtd:DataFormatScheme ;
  rdfs:label "OBO"@en ;
  skos:prefLabel "OBO"@en ;
  rdfs:seeAlso "http://owlcollab.github.io/oboformat/doc/obo-syntax.html" .

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

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 .

