Skip to main content
PUT
/
organization
/
{organizationId}
/
licenses
/
classifications
{
  "overrides": [
    {
      "spdxId": "BUSL-1.1",
      "category": "STRONG_COPYLEFT"
    },
    {
      "spdxId": "Artistic-2.0",
      "category": "PERMISSIVE"
    }
  ]
}
{
  "success": true,
  "message": "License classifications updated"
}

Documentation Index

Fetch the complete documentation index at: https://docs.cybedefend.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

organizationId
string
required
The UUID of the organization

Authorization

Requires manage permission on the organization.

Request Body

overrides
array
required
Array of license classification overrides to apply.
{
  "overrides": [
    {
      "spdxId": "BUSL-1.1",
      "category": "STRONG_COPYLEFT"
    },
    {
      "spdxId": "Artistic-2.0",
      "category": "PERMISSIVE"
    }
  ]
}

Response

success
boolean
Whether the request succeeded
message
string
Confirmation message
{
  "success": true,
  "message": "License classifications updated"
}
Overrides apply to all projects in the organization. Changing a license from Permissive to Strong Copyleft may surface new compliance issues across all projects.