HCLSIG/SWANSIOC/Actions/SWANPRISM/PRISMExamples

From W3C Wiki

PRISM Examples

Article from a magazine

The following is an example - about an article from a magazine http://tinyurl.com/yjmz6ls - extracted from the PRISM introductory document.


<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xml:lang="en-US"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:prism="http://prismstandard.org/namespaces/basic/2.0/">
    <dc:identifier>100340926</dc:identifier>
    <prism:issueIdentifier>1000710</prism:issueIdentifier>
    <prism:originPlatform platform=”print/ >
    <dc:title>The Real Running Mates</dc:title>
    <dc:creator>Karen Tumulty</dc:creator>
    <dc:contributor prism:role="Reporter" prism:place="New York">
        With reporting by Nancy Gibbs
    </dc:contributor>
    <prism:publicationName>Time</prism:publicationName>
    <prism:coverDate>2007-09-24</prism:coverDate>
    <prism:coverDisplayDate>September 24, 2007</prism:coverDisplayDate>
    <prism:volume>170</prism:volume>
    <prism:number>13</prism:number>
    <dc:subject>POLITICS</dc:subject>
    <prism:person>Elizabeth Edwards</prism:person>
    <prism:person>Hillary Clinton</prism:person>
    <prism:genre>coverStory</prism:genre>
    <prism:wordCount>4188</prism:wordCount>
</rdf:RDF>


The code is including metadata about the content of the article: subject (with value taken from a controlled vocabulary), genre, persons...


    <dc:subject>POLITICS</dc:subject>
    <prism:person>Elizabeth Edwards</prism:person>
    <prism:person>Hillary Clinton</prism:person>
    <prism:genre>coverStory</prism:genre>

Photograph and Rights


<rdf:Description rdf:about="http://wanderlust.com/2000/08/Corfu.jpg">
   <dc:identifier rdf:resource="http://wanderlust.com/content/2357845"/>
   <dc:description>Photograph taken at 6:00 am on Corfu with two models</dc:description>
   <dc:title>Walking on the Beach in Corfu</dc:title>
   <dc:creator>John Peterson</dc:creator>
   <dc:contributor>Sally Smith, illumination</dc:contributor>
   <dc:format>image/jpeg</dc:format>
</rdf:Description>

<rdf:Description rdf:about="http://wanderlust.com/2000/08/Corfu.jpg">
   <dc:rights rdf:resource=“http://PhillyPhantasyPhotos.com/terms/Contract39283.doc”/>
</rdf:Description>

or

<rdf:Description rdf:about="http://wanderlust.com/2000/08/Corfu.jpg">
   <dc:identifier rdf:resource="http://wanderlust.com/content/2357845"/>
   <dc:description>Photograph taken at 6:00 am on Corfu with two models</dc:description>
   <dc:title>Walking on the Beach in Corfu</dc:title>
   <dc:creator>John Peterson</dc:creator>
   <dc:contributor>Sally Smith, illumination</dc:contributor>
   <dc:format>image/jpeg</dc:format>
   <pur:copyright>Copyright 2001, Wanderlust Publications. All rights reserved.</pur:copyright>
   <pur:agreement rdf:resource=”agreement/2357845"/>
   <pur:rightsAgent>Phantasy Photos, Philadelphia</pur:rightsAgent>
</rdf:Description>