Skip to content

Commit

Permalink
docs: fix action use in ODRL payloads
Browse files Browse the repository at this point in the history
  • Loading branch information
mhellmeier committed Jan 31, 2024
1 parent 8acb7a6 commit 33ce299
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/usage/management-api-walkthrough/02_policies.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Content-Type: application/json
"@type": "Policy",
"odrl:permission": [
{
"odrl:action": "USE",
"odrl:action": "use",
"odrl:constraint": {
"@type": "Constraint",
"odrl:leftOperand": "BusinessPartnerNumber",
Expand Down Expand Up @@ -62,7 +62,7 @@ the EDC interprets policies it can't evaluate as true by default. A couple of ex
"@type": "Policy",
"odrl:permission": [
{
"odrl:action": "USE"
"odrl:action": "use"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion docs/usage/management-api-walkthrough/07_edrs.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Content-Type: application/json
"odrl:permission": {
"odrl:target": "<ASSET_ID>",
"odrl:action": {
"odrl:type": "USE"
"odrl:type": "use"
},
"odrl:constraint": {
"odrl:and": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ A Contract Agreement looks like this:
"odrl:permission": {
"odrl:target": "<ASSET_ID>",
"odrl:action": {
"odrl:type": "USE"
"odrl:type": "use"
},
"odrl:constraint": {
"odrl:and": {
Expand Down

0 comments on commit 33ce299

Please sign in to comment.