Attribution in ODRL #1
carlyh-micb
started this conversation in
ODRL
Replies: 2 comments 3 replies
|
We should evolve a curation guidebook for defining an action. I can see some principles already.
|
1 reply
|
In the class attributedParty is a role in ODRL. It can be either an individual or organization. First - what are some other things we think researchers want to require attribution for, and then second where would they fit in ODRL and in our researcher-ODRL-vocabulary.
more? |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Question - what kinds of attribution do we want to support in ODRL?
??? What do people think? Do we need other examples?
Background information
Attribution in ODRL
ODRL (Open Digital Rights Language) supports attribution by providing specific actions and party functions that can be used directly within policy rules (such as Permissions or Prohibitions), without necessarily requiring a separate Duty.
How Attribution is Supported
attributeActionattribute.Attribution Party Functions
To specify who should be attributed or who is responsible for attributing, ODRL provides specific party functions (sub-properties of the abstract
functionproperty):attributedPartyThe party to be attributed (person, organisation, etc.) — the entity receiving credit or acknowledgment.
attributingPartyThe party responsible for performing the act of attribution.
Attribution Without a Duty
While attribution can be expressed as a Duty (an obligation to perform an action), it is not limited to this.
The
attributeaction can be directly associated with a Permission, meaning:attributedPartyandattributingPartycan be specified within the Permission to define who is credited and who does the attribution.Example: Attribution as Part of a Permission
Scenario: A policy grants permission to distribute a photograph, but requires attribution to the original photographer.
{ "@context": "http://www.w3.org/ns/odrl.jsonld", "@type": "Policy", "uid": "http://example.com/policy:PhotoAttribution", "permission": [{ "target": "http://example.com/asset:MyGreatPhoto.jpg", "action": "distribute", "assigner": "http://example.com/photographer:JaneDoe", "assignee": "http://example.com/publisher:GlobalNews", "action": "attribute", "attributedParty": "http://example.com/photographer:JaneDoe" }] }Explanation of the Example
All reactions