@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:protoBuf
  rdfs:label "ProtoBuf"@en ;
  skos:prefLabel "ProtoBuf"@en ;
  a omtd:DataFormat, dc:MediaType, owl:NamedIndividual, skos:Concept .

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:protoBuf_Json
  skos:altLabel "Protocol Buffers"@en ;
  a skos:Concept, omtd:DataFormat, owl:NamedIndividual, dc:MediaType ;
  skos:inScheme omtd:DataFormatScheme ;
  omtd:hasMimetype "application/protobuf+json; charset=utf-8" ;
  skos:broader omtd:protoBuf ;
  skos:prefLabel "ProtoBuf/JSON"@en ;
  rdfs:comment "JSON encoding for ProtoBuf"@en ;
  rdfs:label "ProtoBuf/JSON"@en ;
  rdfs:seeAlso "https://protobuf.dev/reference/protobuf/mime-types/" .

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 .

