> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-fix-nav-issues.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Системная таблица, содержащая лицензии сторонних библиотек, расположенных в каталоге contrib исходного кода ClickHouse.

# system.licenses

<div id="description">
  ## Описание
</div>

Содержит лицензии сторонних библиотек, расположенных в каталоге [contrib](https://github.com/ClickHouse/ClickHouse/tree/master/contrib) исходного кода ClickHouse.

<div id="columns">
  ## Столбцы
</div>

* `library_name` ([String](/ru/reference/data-types)) — Название библиотеки.
* `license_type` ([String](/ru/reference/data-types)) — Тип лицензии — например, Apache, MIT.
* `license_path` ([String](/ru/reference/data-types)) — Путь к файлу с текстом лицензии.
* `license_text` ([String](/ru/reference/data-types)) — Текст лицензии.

<div id="example">
  ## Пример
</div>

```sql theme={null}
SELECT library_name, license_type, license_path FROM system.licenses LIMIT 15
```

```text theme={null}
┌─library_name───────┬─license_type─┬─license_path────────────────────────┐
│ aws-c-common       │ Apache       │ /contrib/aws-c-common/LICENSE       │
│ base64             │ BSD 2-clause │ /contrib/aklomp-base64/LICENSE      │
│ brotli             │ MIT          │ /contrib/brotli/LICENSE             │
│ [...]              │ [...]        │ [...]                               │
└────────────────────┴──────────────┴─────────────────────────────────────┘
```
