@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 .

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 .

omtd:CBOR
  skos:definition "Concise Binary Object Representation (CBOR) data format ; defined as an ISO standard (RFC 8949, https://cbor.io/spec.html)"@en ;
  a dc:MediaType, owl:NamedIndividual, skos:Concept, omtd:DataFormat ;
  skos:broader omtd:BinaryFormat ;
  skos:inScheme omtd:DataFormatScheme ;
  rdfs:label "CBOR"@en ;
  skos:prefLabel "CBOR"@en ;
  rdfs:seeAlso "https://cbor.io/spec.html", "https://www.rfc-editor.org/rfc/rfc8949.html" ;
  skos:altLabel "Concise Binary Object Representation"@en .

omtd:BinaryFormat
  rdfs:label "Binary format"@en ;
  skos:prefLabel "Binary format"@en ;
  a omtd:DataFormat, dc:MediaType, owl:NamedIndividual, skos:Concept ;
  skos:narrower omtd:CBOR .

