> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-fbfa8bee.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](/ar/reference/data-types/index)) — اسم المكتبة.
* `license_type` ([String](/ar/reference/data-types/index)) — نوع الترخيص — مثل Apache و MIT.
* `license_path` ([String](/ar/reference/data-types/index)) — مسار الملف الذي يحتوي على نص الترخيص.
* `license_text` ([String](/ar/reference/data-types/index)) — نص الترخيص.

<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             │
│ [...]              │ [...]        │ [...]                               │
└────────────────────┴──────────────┴─────────────────────────────────────┘
```
