ODRL constraint with time permission

Modélisation des contraintes ODRL de temps pour les délais d'autorisation.

ex. : Movie9899 can be displayed only after 2019.

asail_odrl_sentences-05.stog.amr

{
 "@context": "http://www.w3.org/ns/odrl.jsonld",
 "@type": "Set",
 "uid": "http://example.com/policy:1010",
 "permission": [{
 	"target": "http://example.com/asset:9898.movie",
	"action": "display",
	"constraint": [{
           "leftOperand": "dateTime",
           "operator": "gt",
           "rightOperand":  { "@value": "2019-01-01", "@type": "xsd:date" }
       }]
 }]
}