@prefix : <http://www.w3.org/ns/ma-ont#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

<http://www.ebu.ch/metadata/cs/ebu_ContentGenreCS.xml#3.1.1.10.3> rdfs:label "Film" .

<http://www.foo.com/movie.mov#opening> a <http://www.w3.org/ns/ma-ont#MediaFragment> .

<http://www.foo.com/movie.mov#t=15,45> a <http://www.w3.org/ns/ma-ont#MediaFragment> .

<http://www.foo.com/movie.mov> a <http://www.w3.org/ns/ma-ont#MediaResource>;
    :averageBitRate "128"^^<http://www.w3.org/2001/XMLSchema#decimal>;
    :createdIn [ a <http://www.w3.org/ns/ma-ont#Location>;
            :locationLatitude "139.770004"^^<http://www.w3.org/2001/XMLSchema#decimal>;
            :locationLongitude "35.669998"^^<http://www.w3.org/2001/XMLSchema#decimal>;
            :locationName "My house" ];
    :description "This was some really bizarre band I listened to as a young lad."^^<http://www.w3.org/2001/XMLSchema#string>;
    :duration "185"^^<http://www.w3.org/2001/XMLSchema#decimal>;
    :frameHeight 200;
    :frameRate "25.0"^^<http://www.w3.org/2001/XMLSchema#decimal>;
    :frameWidth 300;
    :hasCompression [ rdfs:label "video/quicktime"^^<http://www.w3.org/2001/XMLSchema#string> ];
    :hasContributor [ a <http://www.w3.org/ns/ma-ont#Person>;
            rdfs:label "band member 1" ];
    :hasCreator [ a <http://www.w3.org/ns/ma-ont#Person>;
            rdfs:label "band member 2" ];
    :hasFormat [ rdfs:label "video/quicktime"^^<http://www.w3.org/2001/XMLSchema#string> ];
    :hasFragment <http://www.foo.com/movie.mov#t=15,45>;
    :hasGenre <http://www.ebu.ch/metadata/cs/ebu_ContentGenreCS.xml#3.1.1.10.3>;
    :hasKeyword [ rdfs:label "fluffy" ],
        [ rdfs:label "kitty" ],
        [ rdfs:label "cat" ],
        [ rdfs:label "big dog" ],
        [ rdfs:label "yarn" ];
    :hasLanguage [ rdfs:label "en"^^<http://www.w3.org/2001/XMLSchema#string> ];
    :hasNamedFragment <http://www.foo.com/movie.mov#opening>;
    :hasPolicy [ rdfs:label "Creative Commons Attribution 3.0 United States License" ];
    :hasPublisher [ a <http://www.w3.org/ns/ma-ont#Organisation>;
            rdfs:label "W3 Pictures Inc." ];
    :hasRating [ a <http://www.w3.org/ns/ma-ont#Rating>;
            :IsRatingOf <http://www.foo.com/movie.mov>;
            :hasRatingSystem [ rdfs:label "higherBetter" ];
            :ratingScaleMax "10.0"^^<http://www.w3.org/2001/XMLSchema#decimal>;
            :ratingScaleMin "1.0"^^<http://www.w3.org/2001/XMLSchema#decimal>;
            :ratingValue "3.5"^^<http://www.w3.org/2001/XMLSchema#decimal> ];
    :hasTargetAudience [ a <http://www.w3.org/ns/ma-ont#TargetAudience>;
            :hasClassification [ rdfs:label "adult" ] ];
    :isCopyrightedBy [ a <http://www.w3.org/ns/ma-ont#Organisation>;
            rdfs:label "2005 FooBar Media"^^<http://www.w3.org/2001/XMLSchema#string> ];
    :isMemberOf [ a <http://www.w3.org/ns/ma-ont#Collection>;
            :collectionName "Cool song by an artist";
            :hasMember <http://www.foo.com/movie.mov> ];
    :locator "http://www.foo.com/movie.mov"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
    :numberOfTracks 2;
    :samplingRate "44.1"^^<http://www.w3.org/2001/XMLSchema#decimal>;
    :title "The Judy's -- The Moo Song"^^<http://www.w3.org/2001/XMLSchema#string> .

[] a <http://www.w3.org/2002/07/owl#Ontology>;
    owl:imports <http://www.w3.org/ns/ma-ont> .

