@prefix :      <http://www.w3.org/2000/01/rdf-schema#> .
@prefix s:     <http://www.w3.org/2000/01/rdf-schema#> .
@prefix r:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix doc:   <http://www.w3.org/2000/10/swap/pim/doc#> .
@prefix owl:   <http://www.w3.org/2002/07/owl#> .

doc:version  a     r:Property ;
        s:comment  "This version of this document (eg number, date, etc). A string" , "This generic work has a specific version in the\n\tfollwing specific document" ;
        s:domain   doc:Work ;
        s:label    "version" ;
        s:range    doc:Work .

doc:versionOf  a       r:Property ;
        s:comment      "This work is a a specific version of the follwing generic document.\n\t\tOBSOLETE - use its inverse, version." ;
        s:domain       doc:Work ;
        s:range        doc:Work ;
        owl:inverseOf  doc:version .

doc:mayControl  a  r:Property ;
        s:comment  "This may change that access control for that" ;
        s:domain   <http://www.w3.org/2000/10/swap/pim/contact#SocialEntity> ;
        s:label    "may control" ;
        s:range    doc:Work .

doc:derivedFrom  a  r:Property ;
        s:comment  "A work wholey or partly used in the creation of this one." ;
        s:domain   doc:Work ;
        s:label    "derived from" ;
        s:range    doc:Work .

doc:ipr  a         r:Property ;
        s:comment  "Terms and intellectual property rights licensing conditions." ;
        s:domain   doc:Work ;
        s:label    "rights" ;
        s:range    doc:Work .

doc:Work  a        s:Class ;
        s:comment  "An abstract information thing of value, typically intellectual property" ;
        s:label    "work" .

<http://www.w3.org/2000/10/swap/pim/doc>
        doc:creator  <http://www.w3.org/People/Berners-Lee/card#i> ;
        doc:ipr      <http://www.w3.org/2000/10/swap/LICENSE.n3> ;
        doc:version  "$Id: doc.rdf,v 1.4 2006/07/29 20:18:43 timbl Exp $" .

doc:dependsOn  a   r:Property ;
        s:comment  "The meaning or value of this work depends on that of that work." ;
        s:domain   doc:Work ;
        s:label    "depends on" ;
        s:range    doc:Work .

doc:persistencePolicy
        a          r:Property ;
        s:comment  "Publishers policy regarding the peristence of the mapping\n                between URI and its meaning and/or representation in bits." ;
        s:domain   doc:Work ;
        s:label    "persistence policy" ;
        s:range    doc:Work .

doc:subLicense  a  owl:TransitiveProperty , r:Property ;
        s:comment  "For any license, a sublicense is a licensing offering a subset of the rights. \nIf A doc:sublicense B then anything under license A can be released under\nlicence B." ;
        s:domain   doc:Work ;
        s:label    "sub-license" ;
        s:range    doc:Work .

doc:rules  a       r:Property ;
        s:comment  "\n\tThe subject is a namespace document; the object is a document\n\tcontaining rules. The rules are valid information about the terms\n\tdefined in the namespace document.\n\t" ;
        s:domain   <http://www.w3.org/2000/10/swap/pim/contact#Work> ;
        s:label    "rules" ;
        s:range    <http://www.w3.org/2000/10/swap/pim/contact#Work> .

doc:mayWrite  a    r:Property ;
        s:comment  "This may access that to modify it -- compare 'w' unix" ;
        s:domain   <http://www.w3.org/2000/10/swap/pim/contact#SocialEntity> ;
        s:label    "may write" ;
        s:range    doc:Work .

doc:derivativeWork  a  r:Property ;
        s:comment      "A work wholey or partly used in the creation of this one." ;
        s:domain       doc:Work ;
        s:label        "derivative work" ;
        s:range        doc:Work ;
        owl:inverseOf  doc:derivedFrom .

doc:creator  a     r:Property ;
        s:comment  "The person (not string) who created this." ;
        s:domain   doc:Work ;
        s:label    "creator" ;
        s:range    <http://www.w3.org/2000/10/swap/pim/contact#SocialEntity> .

doc:adminPage  a   r:Property ;
        s:comment  "A web page allowing a human user to administer this work,\n            for example changing access control, version control information etc." ;
        s:domain   doc:Work ;
        s:label    "administrative page" .

doc:mayRead  a     r:Property ;
        s:comment  "This may access that for read -- compare 'r' unix" ;
        s:domain   <http://www.w3.org/2000/10/swap/pim/contact#SocialEntity> ;
        s:label    "may read" ;
        s:range    doc:Work .

doc:OpenSourceLicense
        s:comment     "Class of licenses which can be called Open Soutrce\n                according to opensource.org" ;
        s:label       "Opem Source licence" ;
        s:subClassOf  doc:Work .

doc:obsoletes  a   r:Property ;
        s:comment  "This work is more upto date than that and makes it obsolete." ;
        s:domain   doc:Work ;
        s:label    "obsoletes" ;
        s:range    doc:Work .
