Skip to main content
GET
/
organization
/
{organizationId}
/
licenses
/
classifications
Get License Classifications
curl --request GET \
  --url https://api.example.com/organization/{organizationId}/licenses/classifications
{
  "success": true,
  "data": {
    "licenses": [
      {
        "spdxId": "MIT",
        "name": "MIT License",
        "defaultCategory": "PERMISSIVE",
        "currentCategory": "PERMISSIVE",
        "isOverridden": false
      },
      {
        "spdxId": "BUSL-1.1",
        "name": "Business Source License 1.1",
        "defaultCategory": "WEAK_COPYLEFT",
        "currentCategory": "STRONG_COPYLEFT",
        "isOverridden": true
      }
    ]
  }
}

Path Parameters

organizationId
string
required
The UUID of the organization

Authorization

Requires read permission on the organization.

Response

success
boolean
Whether the request succeeded
data
object
{
  "success": true,
  "data": {
    "licenses": [
      {
        "spdxId": "MIT",
        "name": "MIT License",
        "defaultCategory": "PERMISSIVE",
        "currentCategory": "PERMISSIVE",
        "isOverridden": false
      },
      {
        "spdxId": "BUSL-1.1",
        "name": "Business Source License 1.1",
        "defaultCategory": "WEAK_COPYLEFT",
        "currentCategory": "STRONG_COPYLEFT",
        "isOverridden": true
      }
    ]
  }
}