#created by hand by Martin Höffernig (Joanneum Research) for DMS-1 example file : version 1.0
@prefix :        <http://mawg_smpte_example#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix p1:      <http://www.w3.org/ns/ma-ont#> .
@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#> .

<http://mawg_smpte_example>
      a       owl:Ontology ;
      owl:imports <http://www.w3.org/ns/ma-ont> .

<urn:uuid:36a87260-1102-11df-8a39-0800200c9a66>
      a       p1:MediaResource ;
      p1:copyright "All rights reserved." ;
      p1:createdIn
              [ a       p1:Location ;
                p1:hasLocationAltitude
                        2800.0 ;
                p1:locationLatitude -90.0 ;
                p1:locationLongitude
                        0.0 ;
                p1:locationName "south pole"
              ] ;
      p1:creationDate "1994"^^xsd:gYear ;
      p1:description "This is the synopsis of the story." ;
      p1:duration 5402.88 ;
      p1:features
              [ a       p1:Person ;
                rdfs:label "John Doe"
              ] ;
      p1:frameHeight 576 ;
      p1:frameRate 25.0 ;
      p1:frameWidth 720 ;
      p1:hasCompression
              [ rdfs:label "AVC"
              ] ;
      p1:hasCreator
              [ a       p1:Person ;
                rdfs:label "Jim Foo"
              ] ;
      p1:hasFormat
              [ rdfs:label "video/mp4"
              ] ;
      p1:hasFragment
              [ a       p1:AudioTrack ;
                p1:averageBitRate 128000.0
              ] ;
      p1:hasFragment
              [ a       p1:VideoTrack ;
                p1:averageBitRate 5000000.0
              ] ;
      p1:hasGenre
              [ rdfs:label "Horror"
              ] ;
      p1:hasKeyword
              [ rdfs:label "about"
              ] ;
      p1:hasLanguage
              [ rdfs:label "en-us"
              ] ;
      p1:hasPolicy <http://creativecommons.org/licenses/by-nc-nd/3.0> ;
      p1:hasPublisher
              [ a       p1:Organisation ;
                rdfs:label "W3 Pictures Inc."
              ] ;
      p1:hasRating
              [ a       p1:Rating ;
                p1:ratingValue 99.0
              ] ;
      p1:hasRelatedResource
              <http://docs.company.com/scripts/123.pdf> ;
      p1:hasTargetAudience
              [ a       p1:TargetAudience ;
                p1:hasClassification
                        [ rdfs:label "US"
                        ] ;
                p1:hasClassificationSystem
                        [ rdfs:label "Region Classification"
                        ]
              ] ;
      p1:hasTargetAudience
              [ a       p1:TargetAudience ;
                p1:hasClassification
                        [ rdfs:label "u"
                        ] ;
                p1:hasClassificationSystem
                        [ rdfs:label "Age Classification"
                        ]
              ] ;
      p1:isMemberOf
              [ a       p1:Collection ;
                p1:collectionName "The 99 Example Series"
              ] ;
      p1:locator "http://somewhere.com/othermaterial.mov"^^xsd:anyURI ;
      p1:numberOfTracks 2 ;
      p1:samplingRate 44100.0 ;
      p1:title "Sample Programme" .
