#created by hand by Mari Carmen Suarez-Figueroa (UPM-OEG) for 3GP example file: version 4
@prefix :        <http://www.w3.org/ns/ma-ont#> .
@prefix ma-ont:  <http://www.w3.org/ns/ma-ont#> .
@prefix dc:      <http://purl.org/dc/elements/1.1/> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .
@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

[]    a       owl:Ontology ;
      owl:imports <http://www.w3.org/ns/ma-ont> .

:format1
      a       owl:NamedIndividual , :Thing ;
      rdfs:label "video/3gpp"^^xsd:string .

<http://www.w3.org/ns/ma-ont#MAWGdancingmonkey.3gp>
      a       :MediaResource , owl:NamedIndividual ;
      :averageBitRate "88"^^xsd:decimal ;
      :description "Technical documents set to the blues"^^rdfs:Literal ;
      :duration 6.12 ;
      :frameHeight 240 ;
      :frameRate "15"^^xsd:decimal ;
      :frameWidth 320 ;
      :hasCompression :compression1 ;
      :hasFormat :format1 ;
      :numberOfTracks 2 ;
      :samplingRate 0.008 .

:compression1
      a       owl:NamedIndividual , :Thing ;
      rdfs:label "avc1"^^xsd:string .
