Skip to content

Commit

Permalink
Merge pull request #1014 from eclipse-tractusx/docs/policy-use
Browse files Browse the repository at this point in the history
docs: fix action use in ODRL payloads
  • Loading branch information
ndr-brt authored Feb 2, 2024
2 parents 6b488f3 + 33ce299 commit 402aee9
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 402aee9

Please sign in to comment.