Last active
August 29, 2015 14:16
-
-
Save escowles/696d41e87af746aca1c3 to your computer and use it in GitHub Desktop.
rights-examples.ttl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# namespaces | |
@prefix dcterms: http://purl.org/dc/terms/ | |
@prefix edm: http://www.europeana.eu/schemas/edm/ | |
@prefix hydrarights: http://projecthydra.org/ns/auth/acl# | |
@prefix premis: http://www.loc.gov/premis/rdf/v1# | |
@prefix premiscopy: <http://id.loc.gov/vocabulary/preservation/copyrightStatus/ | |
@prefix rsdotorg: http://rightsstatements.org/vocab/path/tba/ | |
@prefix skos: http://www.w3.org/2004/02/skos/core# | |
@prefix ucsd: http://library.ucsd.edu/ontology/dams4.2# | |
@prefix xx: # either dcterms or edm pending discussions | |
# cc research data | |
# status: rsdotorg replaces premis:hasCopyrightStatus | |
<obj1> xx:rights rsdotorg:ic-permission; | |
premis:hasCopyrightJurisdiction "us"; | |
dcterms:rights <http://creativecommons.org/licenses/by/3.0/>; | |
dcterms:rightsHolder <rightsHolder1> . | |
<rightsHolder1> a edm:Agent; | |
skos:prefLabel "Rightsholder, Local, 1967-" . | |
# public domain | |
# status: rsdotorg replaces premis:copyrightStatus and dcterms:rights | |
<obj2> xx:rights <http://creativecommons.org/publicdomain/mark/1.0/>; | |
premis:hasCopyrightJurisdiction "us" . | |
d | |
# licensed w/campus-only restriction | |
# status: XXX rsdotorg:ic is misleading, would like rsdotorg:ic-other-restriction | |
<obj3> xx:rights rsdotorg:ic; | |
premis:hasCopyrightJurisdiction "us"; | |
dcterms:accessRights <http://library.ucsd.edu/ontology/dams4.2#restrictedCampus>; | |
dcterms:rightsHolder <rightsHolder3> . | |
<rightsHolder3> a edm:Agent; | |
skos:prefLabel "Rightsholder, Another Local, 1967-" . | |
# uc regents | |
# status: rsdotorg replaces premis:hasCopyrightStatus and dcterms:rights | |
<obj4> xx:rights rsdotorg:ic; | |
premis:hasCopyrightJurisdiction "us"; | |
dcterms:rightsHolder <http://id.loc.gov/authorities/names/n85088322>; | |
<http://id.loc.gov/authorities/names/n85088322> skos:prefLabel "University of California (System). Regents" . | |
# fair use | |
# status: rsdotorg replaces premis:hasCopyrightStatus | |
<obj5> xx:rights rsdotorg:nkr; | |
dcterms:rights <http://www.europeana.eu/rights/rr-f/>; | |
ucsd:rightsNote "Justification of fair use determination here" . | |
# embargo | |
# status: XXX no appropriate rsdotorg statement for in copyright/private, another case for rsdotorg:ic-other-restriction | |
<obj6> premis:hasCopyrightStatus premiscopy:cpr; | |
dcterms:rights <http://www.europeana.eu/rights/rr-r/>; | |
dcterms:accessRights <http://library.ucsd.edu/ontology/dams4.2#restrictedPrivate>; | |
hydrarights:embargoReleaseDate "2019-12-31T12:59:59Z"; | |
hydrarights:visibilityAfterEmbargo rsdotorg:ic | |
dcterms:rightsHolder <rightsHolder6> . | |
<rightsHolder6> a edm:Agent; | |
skos:prefLabel "Rightsholder, Yet Another Local, 1977-" . | |
# education use only, restricted to campus-only | |
# status: rsdotorg replaces premis:hasCopyrightStatus and dcterms:rights | |
<obj7> xx:rights rsdotorg:ic-edu | |
premis:hasCopyrightJurisdiction "us"; | |
dcterms:accessRights <http://library.ucsd.edu/ontology/dams4.2#restrictedCampus>; | |
dcterms:rightsHolder <http://id.loc.gov/authorities/names/n00085230> . | |
<http://id.loc.gov/authorities/names/n00085230> skos:prefLabel "Doe, John, -1993" . | |
# orphan works, restricted to metadata only | |
# status: rsdotorg replaces premis:hasCopyrightStatus and dcterms:rights | |
<obj8> xx:rights rsdotorg:ic-ow | |
premis:hasCopyrightJurisdiction "us"; | |
dcterms:accessRights <http://library.ucsd.edu/ontology/dams4.2#restrictedMetadata> . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# namespaces | |
@prefix dc: http://purl.org/dc/elements/1.1/ | |
@prefix dcterms: http://purl.org/dc/terms/ | |
@prefix edm: http://www.europeana.eu/schemas/edm/ | |
@prefix hydrarights: http://projecthydra.org/ns/auth/acl# | |
@prefix premis: http://www.loc.gov/premis/rdf/v1# | |
@prefix premiscopy: <http://id.loc.gov/vocabulary/preservation/copyrightStatus/ | |
@prefix skos: http://www.w3.org/2004/02/skos/core# | |
@prefix ucsd: http://library.ucsd.edu/ontology/dams4.2# | |
# cc research data | |
<obj1> premis:hasCopyrightStatus premiscopy:cpr; | |
premis:hasCopyrightJurisdiction "us"; | |
dcterms:rights <http://creativecommons.org/licenses/by/3.0/>; | |
dcterms:rightsHolder <rightsHolder1> . | |
<rightsHolder1> a edm:Agent; | |
skos:prefLabel "Rightsholder, Local, 1967-" . | |
# public domain | |
<obj2> premis:hasCopyrightStatus premiscopy:pub; | |
premis:hasCopyrightJurisdiction "us"; | |
dcterms:rights <http://creativecommons.org/publicdomain/mark/1.0/> . | |
# licensed w/campus-only restriction | |
<obj3> premis:hasCopyrightStatus premiscopy:cpr; | |
premis:hasCopyrightJurisdiction "us"; | |
dcterms:rights <http://www.europeana.eu/rights/rr-r/>; | |
dcterms:accessRights <http://library.ucsd.edu/ontology/dams4.2#restrictedCampus>; | |
dcterms:rightsHolder <rightsHolder3> . | |
<rightsHolder3> a edm:Agent; | |
skos:prefLabel "Rightsholder, Another Local, 1967-" . | |
# uc regents | |
<obj4> premis:hasCopyrightStatus premiscopy:cpr; | |
premis:hasCopyrightJurisdiction "us"; | |
dcterms:rights <http://www.europeana.eu/rights/rr-f/>; | |
dcterms:rightsHolder <http://id.loc.gov/authorities/names/n85088322>; | |
<http://id.loc.gov/authorities/names/n85088322> skos:prefLabel "University of California (System). Regents" . | |
# fair use | |
<obj5> premis:hasCopyrightStatus premiscopy:unk; | |
dcterms:rights <http://www.europeana.eu/rights/rr-f/>; | |
ucsd:rightsNote "Justification of fair use determination here" . | |
# embargo | |
<obj6> premis:hasCopyrightStatus premiscopy:cpr; | |
dcterms:rights <http://www.europeana.eu/rights/rr-r/>; | |
dcterms:accessRights <http://library.ucsd.edu/ontology/dams4.2#restrictedPrivate>; | |
hydrarights:embargoReleaseDate "2019-12-31T12:59:59Z"; | |
hydrarights:visibilityAfterEmbargo <http://www.europeana.eu/rights/rr-f/>; | |
dcterms:rightsHolder <rightsHolder6> . | |
<rightsHolder6> a edm:Agent; | |
skos:prefLabel "Rightsholder, Yet Another Local, 1977-" . | |
# education use only, restricted to campus-only | |
<obj7> premis:hasCopyrightStatus premiscopy:cpr; | |
premis:hasCopyrightJurisdiction "us"; | |
dcterms:rights <http://opaquenamespace.org/rights/educational/>; | |
dcterms:accessRights <http://library.ucsd.edu/ontology/dams4.2#restrictedCampus>; | |
dcterms:rightsHolder <http://id.loc.gov/authorities/names/n00085230> . | |
<http://id.loc.gov/authorities/names/n00085230> skos:prefLabel "Doe, John, -1993" . | |
# orphan works, restricted to metadata only | |
<obj8> premis:hasCopyrightStatus premiscopy:cpr; | |
premis:hasCopyrightJurisdiction "us"; | |
dcterms:rights <http://opaquenamespace.org/rights/orphan-work-us/>; | |
dcterms:accessRights <http://library.ucsd.edu/ontology/dams4.2#restrictedMetadata> . |
Ah, seeing update now (guess I hadn't refreshed this tab!).
<http://id.loc.gov/authorities/names/n00085230> skos:prefLabel "Doe, John, -1993" .
This is good, as long as you will always use LOC's prefLabel. If not, it's bad practice due to "A resource has no more than one value of skos:prefLabel per language tag.".
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you're going to do
owl:sameAs
, then I favor just using the external URI directly. In either of those cases, you would have to abandonskos:prefLabel
(or commit to using the one from the web).Else, I might suggest
skos:closeMatch
,skos:exactMatch
and/orrdfs:seeAlso
.dc:identifier
manages to be both too vague and too specific for this kind of link, I think.