Linked Data Rights

Linked Data Rights

Release 1st September 2014

RDF/XML version of this vocabulary. Turtle version of this vocabulary.

This version:
http://purl.oclc.org/NET/ldr/ns#
Latest version:
http://purl.oclc.org/NET/ldr/ns#
Previous version (2013.09.20):
http://oeg-dev.dia.fi.upm.es/licensius/static/ldr/ldr1.0.owl
Editors:
Víctor Rodríguez OEG-UPM, Ontology Engineering Group - Universidad Politécnica de Madrid
Contributors:
Victor Rodriguez , María Poveda-Villalón, Mari Carmen Suarez, Asuncion Gomez (OEG)

Abstract

The Linked Data Rights ontology provides the vocabulary for creating policies and rights expressions for Linked Data resources. It derives most of the terms from the ODRL Ontology.

Table of Contents

1. Introduction back to ToC

Linked Data assets (RDF triples, graphs, datasets, mappings...) can be object of protection by the intellectual property law, the database law or its access or publication be restricted by other legal reasons (personal data pro- tection, security reasons, etc.). Publishing a rights expression along with the digital asset, allows the rightsholder waiving some or all of the IP and database rights (leaving the work in the public domain), permitting some operations if certain conditions are satisfied (like giving attribution to the author) or simply reminding the audience that some rights are reserved.

1.1. Namespace declarations back to ToC

Table 1: Namespaces used in the document
ldr<http://purl.oclc.org/NET/ldr/ns#>
owl<http://www.w3.org/2002/07/owl#>
rdfs<http://www.w3.org/2000/01/rdf-schema#>
skos<http://www.w3.org/2004/02/skos/core#>
cc<http://creativecommons.org/ns#>
odrl<http://www.w3.org/ns/odrl/2/>
void<http://vocab.deri.ie/void#>
dct<http://purl.org/dc/terms/>
ldp<http://www.w3.org/ns/ldp#>
mco-core<urn:mpeg:mpeg21:mco:core:2012#>

2. LDR Overview back to ToC

A rights expression -equivalently a policy expression- declares who can do what over which object under which circumstances. The who, the what, the which and the circumstances are represented by a class each, gathered around a rightsexpression.

Rights include intellectual property rights, database rights and access (i.e. limited if the resource contains personal or confidential information etc.). The access is usually often of limitation by means of access control mechanism, and different kinds of access can be conceived.

Specifically for Linked Data, some famous objects of rights would be the statement, the dataset, the ontology, the mapping etc.

Examples of use

To declare an ontology licensed as CC-BY

You don't need LDR, nor ODRL. You can simply use the license property of Dublin Core.
@prefix dct: <http://purl.org/dc/terms/> .
@prefix ldr: <http://purl.oclc.org/NET/ldr/ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
<http://example.com#> rdf:type owl:Ontology;
   dct:license <http://creativecommons.org/licenses/by/3.0/> .

To waive rights for a dataset

A dataset has a policy which contains a permission.
@prefix void: <http://rdfs.org/ns/void#> .
:mydataset rdf:type void:Dataset ;
   dct:rights [ 
	  odrl:permission [
          odrl:action ldr:extraction, ldr:reutilization;
		  ] 
	].
Note that there is an anonymous resource attributed by dct:rights to the dataset (which can be inferred to be a odrl:Policy) which contains another anonymous individual (which can be inferred to be a odrl:Permission).

To declare that you only allow the distribution but prohibit rebasing the URIs

In this case there is a permission and a prohibition.
@prefix void: <http://rdfs.org/ns/void#> .
:mydataset rdf:type void:Dataset ;
   dct:rights [ 
	  odrl:permission [
          odrl:action odrl:distribution;
		  ] ;
	  odrl:prohibition [
          odrl:action ldr:rebaseURI;
		  ] 
	].

Offering a mapping for an amount of money

In addition, the only accesing methods are via HTTPGET (perhaps in the context of the Linked Data Platform) and SPARQL of the SELECT form (but not constructs etc.).
@prefix gr: <http://purl.org/goodrelations/v1>.
ex1:dataset1 a void:Dataset .
ex2:dataset2 a void:Dataset .
ex2:mapping a void:Linkset ;
   void:target ex1:dataset1, ex2:dataset2 ;
   dct:rights [ 
		odrl:permission [
      		odrl:action ldr:SPARQLSELECT, ldr:HTTPGET;
      		odrl:duty [ 
         		odrl:action odrl:pay;
				odrl:target [ a gr:UnitPriceSpecificatoin ;
				 gr:hasCurrencyValue "400"^^xsd:float;
				 gr:hasCurrency "USD"^^xsd:string. ] 
			 ] 
		odrl:permission [
      		odrl:action ldr:SPARQLCONSTRUCT, ldr:HTTPPUT;
			]
		].

Giving alternatives(ODRL Extended Relations)

Note the use of the informative ODRL Extended Relations model, which is not implemented by the ODRL ontology, but by LDR. Also, note some freedoms taken in this example: (1) no explicit type declaration is given (anonymous instances can be inferred to be Permissions, etc.) (2) The default operator when defining a constraint has been understood to be "eq". This is not so in the ODRL standard as of today.
:policy a odrl:Set ;
	ldr:hasExtendedRule [
		odrl:operation "OR";
		odrl:permission [
			odrl:action odrl:read ;
			odrl:duty [
				odrl:pay ;
				odrl:target <http://example.com/ubl:AUD0.50>
			]
		];
		odrl:permission [
			odrl:action odrl:read ;
			odrl:constraint [
				odrl:purpose "Research" .
			]
		]
	] .
 

To declare the confidentiality of a statement

@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
:x a rdf:Statement ;
   rdf:subject <http://example.org/bob> ;
   rdf:predicate vcard:hasTelephone ;
   rdf:object "003412345654" ;
   ldr:hasClaim ldr:hasPersonalData.
 
 

To grant access to a key owner

@prefix wot: <http://xmlns.com/wot/0.1/> .
:p2 a odrl:Set ;
   odrl:permission [ 
		odrl:target :mydataset ;
		odrl:action ldr:access ;
		odrl:assignee [   
			a odrl:Party, owl:Restriction ;
			owl:onProperty odrl:assignee ;
			owl:someValuesFrom [ a owl:Restriction ;
			owl:onProperty wot:hasKey ;
			owl:hasValue <http://example.com/aKey> 
			]
    ] 
   ] .

3. ldr Description back to ToC

Classes

accessc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#Access

Right of access, which can be legally granted (e.g. public sector information) or expressely restricted (e.g. secrets compromising national security)

has super-classes
linked data rightc
has sub-classes
l d p accessc, s p a r q l accessc
has members
Retrieval of Linked Data resourcesni, accessni, reason withni

constraintc back to ToC or Class ToC

IRI: http://www.w3.org/ns/odrl/2/Constraint

has super-classes
propositionc

contractc back to ToC or Class ToC

IRI: urn:mpeg:mpeg21:mco:core:2012#Contract

has super-classes
linked data policyc

copyright exceptionc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#CopyrightException

Reason which can be invoked to make an exception to the intellectual property or database law

has super-classes
propositionc
has members
judicial processni, national securityni, researchni

database rightc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#DatabaseRight

Sui generis right for databases, recognized in European countries and others

has super-classes
linked data rightc
has sub-classes
extractionc, reutilizationc

datasetc back to ToC or Class ToC

IRI: http://rdfs.org/ns/void#Dataset

has super-classes
linked data resourcec

derivationc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#Derivation

Transformation of the work, including translation adaptation or any other form modification

has super-classes
i p rightc
has members
derivationni, derive classesni, derive propertiesni, rebase u r isni, reificateni, transcode workni, translate workni

distributionc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#Distribution

Make available the original work or its copies, in a physical medium

has super-classes
i p rightc
has members
base software uponni, distributionni, mirrorni, rentni, sellni, sell accessni

extended rulec back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#ExtendedRule

Extended Relations may tie Permission, Prohibition, Duty, and Constraint entities together with an AND, OR or XOR relationship. Only entities of the same type can be linked with this model. For example, a Permission and Prohibition cannot be linked together within this model. The Extended rule is composed of two or more rules

has super-classes
rulec
is in domain of
operationdp
is in range of
has extended ruleop

extractionc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#Extraction

Right to permanent or temporary transfer of all or a substantial part of the contents of a database to another medium by any means or in any form

has super-classes
database rightc
has members
copy databaseni, download databaseni, extractni

famous data licensec back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#FamousDataLicense

License publicly available and known to the public

has super-classes
licensec
has members
CC0ni, ODC Open Database Licenseni, ODC Public Domain Dedication and Licence (PDDL)ni, Open Data Commons Attributionni, UK Open Government Licenseni

i p rightc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#IPRight

Intellectual Property right

has super-classes
linked data rightc
has sub-classes
derivationc, distributionc, public communicationc, reproductionc

l d p accessc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#LDPAccess

has super-classes
accessc
has members
h t t p d e l e t eni, h t t p g e tni, h t t p p a t c hni, h t t p p o s tni, h t t p p u tni

licensec back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#License

Set of rights expressions offered to the public, which grant one or more rights, possibly conditioned to the fulfillment of one or more conditions (propositions)

has super-classes
linked data policyc
has sub-classes
famous data licensec

linked data policyc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#LinkedDataPolicy

A policy applied over a Linked Data resource

has super-classes
policyc
has sub-classes
contractc, licensec

linked data resourcec back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#LinkedDataResource

A Linked Data resource, object of some rights

has super-classes
assetc
has sub-classes
datasetc, linksetc, ontologyc, resourcec, statementc
is in domain of
has legal statusop, has privacy leveldp

linked data rightc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#LinkedDataRight

Action legally granted as allowable to be exercised on a Linked Data resource

has super-classes
actionc
has sub-classes
accessc, database rightc, i p rightc

linksetc back to ToC or Class ToC

IRI: http://rdfs.org/ns/void#Linkset

has super-classes
linked data resourcec

ontologyc back to ToC or Class ToC

IRI: http://www.w3.org/2002/07/owl#Ontology

has super-classes
linked data resourcec

propositionc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#Proposition

A veritative statement

has sub-classes
constraintc, copyright exceptionc, resource legal statusc
is in domain of
has attribution textdp, truth valuedp
is in range of
has claimop, has requirementop

public communicationc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#PublicCommunication

Granting a number of people access to the work without existing distribution

has super-classes
i p rightc
has members
public communicationni

reproductionc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#Reproduction

Direct or indirect fixation, allowing its communication and/or making copies of it

has super-classes
i p rightc
has members
copy workni, download workni, reproductionni

resourcec back to ToC or Class ToC

IRI: http://www.w3.org/ns/ldp#Resource

has super-classes
linked data resourcec

resource legal statusc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#ResourceLegalStatus

Attribute of a resource regarding its legal status

has super-classes
propositionc
is in range of
has legal statusop
has members
has all rights reservedni, has copyright expiredni, has database rights expiredni, has industrial secretni, has national security infoni, has personal datani, has top secretni, is in public domainni

reutilizationc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#Reutilization

Right to make available to the public all or a substantial part of the contents of a database by the distribution of copies, by renting, by on-line or other forms of transmission

has super-classes
database rightc
has members
publish databaseni, reutilizationni

s p a r q l accessc back to ToC or Class ToC

IRI: http://purl.oclc.org/NET/ldr/ns#SPARQLAccess

has super-classes
accessc
has members
s p a r q l a s kni, s p a r q l c o n s t r u c tni, s p a r q l d e s c r i b eni, s p a r q l s e l e c tni

statementc back to ToC or Class ToC

IRI: http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement

has super-classes
linked data resourcec

Object Properties

has claimop back to ToC or Object Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasClaim

Declares a claim asserted in the context of a rights expression

has range
propositionc

has extended ruleop back to ToC or Object Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasExtendedRule

Links a Policy to an ExtendedRule it contains

has domain
policyc
has range
extended rulec

has legal statusop back to ToC or Object Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasLegalStatus

Declares the legal status of a resource

has requirementop back to ToC or Object Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasRequirement

Declares which requirements have to be fulfilled for the Rule to be valid

has domain
rulec
has range
propositionc

Data Properties

data formatdp back to ToC or Data Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#dataFormat

Format of the data ("text/html", "application/rdf+xml", etc.)

has super-properties
hasclaimdp
right operanddp

has attribution textdp back to ToC or Data Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasAttributionText

Text that has to be included as requested by a condition

has super-properties
hasclaimdp
right operanddp
has domain
propositionc
has range
literal

has copyright noticedp back to ToC or Data Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasCopyrightNotice

Text that has to be attached imposed as a condition

has super-properties
hasclaimdp
right operanddp
has range
literal

has disclaimer textdp back to ToC or Data Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasDisclaimerText

Text discharging responsibilities on the use of the Linked Data resource

has super-properties
hasclaimdp
right operanddp
has domain
policyc

has personal datadp back to ToC or Data Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasPersonalData

Declares that the referred resource has personal data

has super-properties
hasclaimdp
right operanddp
is also defined as
named individual

has privacy leveldp back to ToC or Data Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasPrivacyLevel

Declares the privacy level (e.g. personal data) for a Linked Data resource

has super-properties
hasclaimdp
right operanddp
has domain
linked data resourcec

issued ondp back to ToC or Data Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#issuedOn

Date on which the rights expression is issued, with legal consequences on the copyright or database right expiration.

has range
date time
is also defined as
annotation property

operationdp back to ToC or Data Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#operation

May be set with one of the mathematical values AND, OR and XOR. (OR is the default if not specified.)

has domain
extended rulec
has range
string

protocoldp back to ToC or Data Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#protocol

Access protocol (e.g. "SPARQL", "HTTPS", etc.)

has super-properties
hasclaimdp
right operanddp

queries per daydp back to ToC or Data Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#queriesPerDay

Number of queries per day

has super-properties
hasclaimdp
right operanddp

queries per minutedp back to ToC or Data Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#queriesPerMinute

Number of queries per minute

has super-properties
hasclaimdp
right operanddp

truth valuedp back to ToC or Data Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#truthValue

Truth value

has domain
propositionc
has range
boolean

Named Individuals

accessni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#access

Access in any manner or form

belongs to
accessc

base software uponni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#baseSoftwareUpon

Distribute a pice of software whose well functioning depends on the related Linked Data resource

belongs to
distributionc

CC0ni back to ToC or Named Individual ToC

IRI: http://purl.org/NET/rdflicense/cc-zero1.0

Creative Commons public domain waiver

belongs to
famous data licensec

copy databaseni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#copyDatabase

Coyping a dataset, for other purposes than private use

belongs to
extractionc

copy workni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#copyWork

copying the work for purposes other than private

belongs to
reproductionc

derivationni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#derivation

General transformation of the work

belongs to
derivationc

derive classesni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#deriveClasses

Subclassing

belongs to
derivationc

derive propertiesni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#deriveProperties

Subpropertying

belongs to
derivationc

distributionni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#distribution

General act of making available the original work or its copies, in a physical medium

belongs to
distributionc

download databaseni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#downloadDatabase

Downloading a dataset, for other purposes than private use

belongs to
extractionc

download workni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#downloadWork

downloading the work for purposes other than private

belongs to
reproductionc

extractni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#extract

General right of extraction

belongs to
extractionc

h t t p d e l e t eni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#HTTPDELETE

Accessing with the HTTP DELETE Method

belongs to
l d p accessc

h t t p g e tni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#HTTPGET

Accessing with the HTTP GET Method

belongs to
l d p accessc

h t t p p a t c hni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#HTTPPATCH

Accesing with the HTTP PATH Method

belongs to
l d p accessc

h t t p p o s tni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#HTTPPOST

Accessing with the HTTP POST Method

belongs to
l d p accessc

h t t p p u tni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#HTTPPUT

Accessing with the HTTP PUT Method

belongs to
l d p accessc

has all rights reservedni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasAllRightsReserved

Declares that the referred resource is protected under copyright or database rights, and none of them is waived

belongs to
resource legal statusc

has copyright expiredni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasCopyrightExpired

Declares that the referred resource has its copyright expired

belongs to
resource legal statusc

has database rights expiredni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasDatabaseRightsExpired

Declares that the referred resource has the database rights expired

belongs to
resource legal statusc

has industrial secretni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasIndustrialSecret

The referred resource containts an Industrial Secret

belongs to
resource legal statusc

has national security infoni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasNationalSecurityInfo

Declares that the referred resource has information whose disclosure might harm the national security

belongs to
resource legal statusc

has personal datani back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasPersonalData

Declares that the referred resource has personal data

belongs to
resource legal statusc
is also defined as
data property

has top secretni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#hasTopSecret

Declares that the referred resource contains top secret information of military nature or other

belongs to
resource legal statusc

is in public domainni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#isInPublicDomain

Declares that the declared resource is in the public domain

belongs to
resource legal statusc

judicial processni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#judicialProcess

if the action is carried out for the purposes of an administrative or judicial procedure

belongs to
copyright exceptionc

mirrorni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#mirror

The action of mirroring any piece of Linked Data

belongs to
distributionc

national securityni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#nationalSecurity

if the action is carried out in the interests of public security

belongs to
copyright exceptionc

ODC Open Database Licenseni back to ToC or Named Individual ToC

IRI: http://purl.org/NET/rdflicense/odbl1.0

Attribution Share-Alike for data/databases

belongs to
famous data licensec

ODC Public Domain Dedication and Licence (PDDL)ni back to ToC or Named Individual ToC

IRI: http://purl.org/NET/rdflicense/odbc-pddl1.0

Public Domain for data/databases

belongs to
famous data licensec

Open Data Commons Attributionni back to ToC or Named Individual ToC

IRI: http://purl.org/NET/rdflicense/odbc-by1.0

Attribution for data/databases

belongs to
famous data licensec

public communicationni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#publicCommunication

General right of public communication

belongs to
public communicationc

publish databaseni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#publishDatabase

Make available a database in internet or by other means

belongs to
reutilizationc

reason withni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#reasonWith

Accesing Linked Data with the purpose of reasoning, through an specialized protocol (e.g. OWLLink) or not

belongs to
accessc

rebase u r isni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#rebaseURIs

Partially change the URI systematically rebasing the entities

belongs to
derivationc

reificateni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#reificate

Reificate an RDF statement or a set thereof

belongs to
derivationc

rentni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#rent

Renting a copy of the work

belongs to
distributionc

reproductionni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#reproduction

General right of public reproduction

belongs to
reproductionc

researchni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#research

illustration for teaching or scientific research, provided the source, including the author's name, is acknowledged

belongs to
copyright exceptionc

Retrieval of Linked Data resourcesni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#LinkedDataAccess

belongs to
accessc

reutilizationni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#reutilization

General right of re-utilization

belongs to
reutilizationc

s p a r q l a s kni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#SPARQLASK

Access through the SPARQL ASK query form

belongs to
s p a r q l accessc

s p a r q l c o n s t r u c tni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#SPARQLCONSTRUCT

Access through the SPARQL CONSTRUCT query form

belongs to
s p a r q l accessc

s p a r q l d e s c r i b eni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#SPARQLDESCRIBE

Access through the SPARQL DESCRIBE query form

belongs to
s p a r q l accessc

s p a r q l s e l e c tni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#SPARQLSELECT

Access through the SPARQL SELECT query form

belongs to
s p a r q l accessc

sellni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#sell

Selling a copy of the work

belongs to
distributionc

sell accessni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#sellAccess

Offering for meny the access to a copy of the work

belongs to
distributionc

transcode workni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#transcodeWork

Transcoding the work

belongs to
derivationc

translate workni back to ToC or Named Individual ToC

IRI: http://purl.oclc.org/NET/ldr/ns#translateWork

Translating the work

belongs to
derivationc

UK Open Government Licenseni back to ToC or Named Individual ToC

IRI: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/

belongs to
famous data licensec

Annotation Properties

close matchap back to ToC or Annotation Property ToC

IRI: http://www.w3.org/2004/02/skos/core#closeMatch

exact matchap back to ToC or Annotation Property ToC

IRI: http://www.w3.org/2004/02/skos/core#exactMatch

exampleap back to ToC or Annotation Property ToC

IRI: http://www.w3.org/2004/02/skos/core#example

issued onap back to ToC or Annotation Property ToC

IRI: http://purl.oclc.org/NET/ldr/ns#issuedOn

Date on which the rights expression is issued, with legal consequences on the copyright or database right expiration.

has domain
policy
is also defined as
data property

narrow matchap back to ToC or Annotation Property ToC

IRI: http://www.w3.org/2004/02/skos/core#narrowMatch

Namespace Declarations back to ToC

default namespace
http://purl.oclc.org/NET/ldr/ns#
acl
http://www.w3.org/ns/auth/acl#
cc
http://creativecommons.org/ns#
cpannotationschema
http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#
data-opendataday-it
http://data.opendataday.it/
dc
http://purl.org/dc/elements/1.1/
dct
http://purl.org/dc/terms/
foaf
http://xmlns.com/foaf/0.1/
frbr
http://purl.org/vocab/frbr/core#
ldp
http://www.w3.org/ns/ldp#
lkif
http://www.estrellaproject.org/lkif-core/lkif-core.owl
lldr
http://oeg-dev.dia.fi.upm.es/licensius/static/lldr/
mco-core
urn:mpeg:mpeg21:mco:core:2012#
odrl
http://www.w3.org/ns/odrl/2/
owl
http://www.w3.org/2002/07/owl#
pattern-html
http://oeg-dev.dia.fi.upm.es/licensius/static/ldr/pattern.html#
prov
http://www.w3.org/ns/prov#
rdf
http://www.w3.org/1999/02/22-rdf-syntax-ns#
rdflicense
http://purl.org/NET/rdflicense/
rdfs
http://www.w3.org/2000/01/rdf-schema#
skos
http://www.w3.org/2004/02/skos/core#
v2
http://ns.inria.fr/l4lod/v2/
vann
http://purl.org/vocab/vann/
voaf
http://purl.org/vocommons/voaf#
void
http://rdfs.org/ns/void#
xsd
http://www.w3.org/2001/XMLSchema#

This HTML document was obtained by processing the OWL ontology source code through LODE, Live OWL Documentation Environment, developed by Silvio Peroni.

5. References back to ToC

6. Acknowledgements back to ToC

The authors would like to thanks Silvio Peroni for developing LODE, a Live OWL Documentation Environment used for representing the Corss Referencing Section of this document and Daniel Garijo for developing the script used to create the template of this document.

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 2.0 Generic License.