-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathexample.jsonld
More file actions
31 lines (30 loc) · 849 Bytes
/
example.jsonld
File metadata and controls
31 lines (30 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"@type": "Agreement",
"@context": [
{
"odrl": "http://www.w3.org/ns/odrl/2/",
"reg": "https://www.region.taxonomy/v/1/"
}
],
"uid": "56456df-dfg-34535345-5545",
"permission": [
{
"target": "https://data.org/data-product/equity-trade-xxx",
"assigner": "https://schema.org/person/AdamSmith",
"assignee": {
"@type": "PartyCollection",
"source": "https://example.org/DataDepartment",
"refinement": [{
"leftOperand": "odrl:spatial",
"operator": "odrl:isAnyOf",
"rightOperand": [
"reg:EMEA",
"reg:APAC"
],
"description": " Permission to read all the datasets of the product if user is working inside EMEA or APAC"
}]
},
"action": "odrl:use",
}
]
}