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

skos:Concept a owl:Class .
omtd:AnnotationFormat
  rdfs:label "Annotation format"@en ;
  skos:prefLabel "Annotation format"@en ;
  a omtd:DataFormat, dc:MediaType, owl:NamedIndividual, skos:Concept ;
  skos:narrower omtd:WebAnnotationFormat .

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

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

omtd:WebAnnotationFormat
  skos:broader omtd:AnnotationFormat, omtd:Json ;
  skos:prefLabel "Web annotation format"@en ;
  rdfs:seeAlso "https://www.w3.org/TR/annotation-model/" ;
  a dc:MediaType, owl:NamedIndividual, omtd:DataFormat, skos:Concept ;
  skos:definition "A structured model and format to enable annotations to be shared and reused across different hardware and software platforms."@en ;
  rdfs:label "Web annotation format"@en ;
  skos:inScheme omtd:DataFormatScheme .

omtd:Json
  rdfs:label "JSON"@en ;
  skos:prefLabel "JSON"@en ;
  a omtd:DataFormat, dc:MediaType, owl:NamedIndividual, skos:Concept ;
  skos:narrower omtd:WebAnnotationFormat .

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 .

