URI correct pour les actions
Les actions ne sont pour l'instant que des mots clef. Elles doivent faire référence à des URI standards (ODRL ou Creative Commons notamment). Cf https://www.w3.org/TR/odrl-vocab/#actionConcepts pour la liste des actions prévues par ODRL (attention certaines sont dépréciées).
Exemple 1
Phrase : "John must play the movie"
ODRL obtenu :
@base <http://https://tenet.tetras-libre.fr/demo/clara/03//factoid> .
@prefix ns1: <odrl:> .
<https://tenet.tetras-libre.fr/extract-result#policy_truc-01> ns1:obligation """[
odrl:target <http://example.com/asset:any.movie> ;
odrl:action play ]""" .
ODRL attendu :
@base <http://https://tenet.tetras-libre.fr/demo/clara/03//factoid> .
@prefix ns1: <odrl:> .
<https://tenet.tetras-libre.fr/extract-result#policy_truc-01> ns1:obligation """[
odrl:target <http://example.com/asset:any.movie> ;
odrl:action odrl:play ]""" .
Exemple 2
Phrase : "John must distribute the movie"
ODRL obtenu :
@base <http://https://tenet.tetras-libre.fr/demo/clara/03//factoid> .
@prefix ns1: <odrl:> .
<https://tenet.tetras-libre.fr/extract-result#policy_truc-01> ns1:obligation """[
odrl:target <http://example.com/asset:any.movie> ;
odrl:action distribute ]""" .
ODRL attendu :
@base <http://https://tenet.tetras-libre.fr/demo/clara/03//factoid> .
@prefix ns1: <odrl:> .
@prefix cc: <http://creativecommons.org/ns#> .
<https://tenet.tetras-libre.fr/extract-result#policy_truc-01> ns1:obligation """[
odrl:target <http://example.com/asset:any.movie> ;
odrl:action cc:Distribution ]""" .
Edited by Ghost User