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

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

omtd:AlvisEnrichedDocumentFormat
  a dc:MediaType, skos:Concept, owl:NamedIndividual, omtd:DataFormat ;
  rdfs:seeAlso "http://www.lrec-conf.org/proceedings/lrec2006/pdf/742_pdf.pdf" ;
  skos:inScheme omtd:DataFormatScheme ;
  rdfs:label "ALVIS Enriched Document format"@en ;
  skos:broader omtd:AnnotationFormat, omtd:Xml ;
  skos:definition "Format for linguistic annotations of documents used for the ALVIS framework"@en ;
  skos:prefLabel "ALVIS Enriched Document format"@en .

