-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoemetadata-policy.json
More file actions
34 lines (34 loc) · 924 Bytes
/
oemetadata-policy.json
File metadata and controls
34 lines (34 loc) · 924 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
32
33
34
{
"@context": {
"@vocab": "https://w3id.org/edc/v0.0.1/ns/"
},
"@id": "cc-by-4-metadata",
"policy": {
"@context": "http://www.w3.org/ns/odrl.jsonld",
"@type": "Set",
"permission": [
{
"target": "http://example.com/dataset",
"action": [
"use",
"reproduce",
"distribute",
"modify",
"derive"
]
}
],
"prohibition": [],
"obligation": [
{
"action": "attribution",
"assignee": "http://example.com/user",
"constraint": {
"leftOperand": "attribution",
"operator": "eq",
"rightOperand": "mustGiveCreditToOriginalCreator"
}
}
]
}
}