LogoLogo
EDCDSPortalDAPS
CE 11.0.0
CE 11.0.0
  • Welcome
  • Key Concepts
  • FAQ
  • Frontend
    • Walkthrough
    • Dashboard
    • Providing
      • 1. Create Data Offer
      • 2. Create Asset
      • 3. Create Policy
      • 4. Create Contract Definition
    • Consuming
      • 1. Finding Offers
      • 2. Initiating Transfers (HttpData-Push)
      • 3. Transfer History
    • Contract Termination
  • Backend
    • Postman
    • API-Wrapper vs Management-API
    • API-Wrapper
      • Java Client Library
    • Management-API
      • Secrets API
      • Contract Definition: Multiple Assets
      • QuerySpec
      • Health Check APIs
      • Policy: Business Partner Groups
      • Policy: Unrestricted
    • Data Transfer
      • HttpData-Pull (Parameterized)
      • AWS S3 Transfer
      • Source: Audit Headers
      • Source/Sink: OAuth2/API-Key
  • Community Edition Deployment
    • Overview
    • Local Demo
    • Production
  • Customer Links
    • Glossary
    • sovity Hub
    • Service Desk
Powered by GitBook
LogoLogo

sovity

  • Homepage
  • About us
  • GitHub
  • LinkedIn

Information

  • Contact
  • Imprint
  • Privacy Policy

© by sovity GmbH

On this page

Was this helpful?

Edit on GitHub
  1. Backend
  2. Management-API

Policy: Unrestricted

Everyone will be able to access the data offer using this policy as access-policy or will be allowed to conclude a contract negotiation when using it as contract-policy.

POST {{Management-API}}/v3/policydefinitions

JSON
{
   "@context": {
       "edc": "https://w3id.org/edc/v0.0.1/ns/",
       "odrl": "http://www.w3.org/ns/odrl/2/"
   },
   "@type": "PolicyDefinitionDto",
   "@id": "unrestricted",
   "edc:policy": {
       "odrl:permission": [
           {
               "odrl:action": {
                   "odrl:type": "USE"
               }
           }
       ]
   }
}

Last updated 2 months ago

Was this helpful?