> ## 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.

# Get License Classifications

> Get all license classifications for an organization, including defaults and overrides

## Path Parameters

<ParamField path="organizationId" type="string" required>
  The UUID of the organization
</ParamField>

## Authorization

Requires `read` permission on the organization.

## Response

<ResponseField name="success" type="boolean">
  Whether the request succeeded
</ResponseField>

<ResponseField name="data" type="object">
  <Expandable title="Classifications Object">
    <ResponseField name="licenses" type="array">
      <Expandable title="License Classification">
        <ResponseField name="spdxId" type="string">
          SPDX license identifier
        </ResponseField>

        <ResponseField name="name" type="string">
          Human-readable license name
        </ResponseField>

        <ResponseField name="defaultCategory" type="string">
          CybeDefend's default category: `PERMISSIVE`, `WEAK_COPYLEFT`, `STRONG_COPYLEFT`, or `UNKNOWN`
        </ResponseField>

        <ResponseField name="currentCategory" type="string">
          Currently active category (may differ from default if overridden)
        </ResponseField>

        <ResponseField name="isOverridden" type="boolean">
          Whether this license has been overridden at the organization level
        </ResponseField>
      </Expandable>
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "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
        }
      ]
    }
  }
  ```
</ResponseExample>
