Получить задачи и запросы в репозитории

GET /repos/{owner}/{repo}/issues

Описание

Метод GET возвращает список задач и запросов на слияние в указанном репозитории. Поддерживается фильтрация по состоянию, типу, исполнителю, автору, меткам, а также сортировка и пагинация.

Этот метод применяется для отображения списка задач и запросов в интерфейсе, анализа активности в репозитории, интеграции с внешними системами (task trackers, дашборды) или автоматизации процессов управления задачами.

Важно: учитывается приватность репозитория. Если репозиторий приватный, а запрос выполняется НЕ владельцем, соавтором или участником команды с доступом к репозиторию, возвращается ошибка 404.

Заголовки

ПараметрОбязательныйОписание
AcceptДаТип содержимого ответа. Рекомендуется установить значение application/vnd.gitverse.object+json;version=1
AuthorizationДаТокен доступа. Формат: Bearer <YOUR-TOKEN> или token <YOUR-TOKEN>

Параметры пути

В URL запроса необходимо передать следующие идентификаторы ресурса:

ПараметрТипОбязательныйОписание
ownerstringДаВладелец репозитория (логин пользователя или имя организации)
repostringДаНазвание репозитория (без расширения .git)

Параметры запроса

Для фильтрации, сортировки и пагинации результатов можно использовать следующие query-параметры:

ПараметрТипОбязательныйОписание
statestringНетФильтр по состоянию задачи. Принимает значения: open (задачи со статусом не равным «Done»), closed (задачи со статусом равным «Done»). Если не указан, возвращаются все задачи.
assigneestringНетФильтр по исполнителю задачи. Принимает логин пользователя.
typestringНетФильтр по типу задачи. Принимает значения: task, bug, story, epic.
creatorstringНетФильтр по автору задачи. Принимает логин пользователя.
labelsstringНетФильтр по меткам. Принимает названия меток через запятую (например, bug,ui,high). Возвращает задачи, содержащие одновременно все указанные метки.
sortstringНетПоле для сортировки результатов. Допустимые значения: created (по дате создания), updated (по дате обновления), comments (по количеству комментариев), due_date (по дате контрольного срока). По умолчанию — created.
directionstringНетНаправление сортировки. Допустимые значения: asc (по возрастанию), desc (по убыванию). По умолчанию — desc.
sincestringНетДата в формате RFC 3339. Возвращает только задачи, обновленные после указанной даты.
per_pageintegerНетКоличество задач на странице. Максимальное значение — 100. По умолчанию: 30.
pageintegerНетНомер страницы для пагинации (начиная с 1). По умолчанию: 1.

Фильтрация по состоянию задачи, исполнителю, типу задачи, автору и меткам на данном этапе предполагает выбор только одного значения для фильтрации в каждом параметре.

Тело запроса

Данный метод не требует тела запроса. Все параметры передаются через URL и query-строку.

Пример запроса на получение списка задач

Ниже приведен пример использования curl для получения списка открытых задач в репозитории my-repo пользователя user, с фильтром по типу bug и пагинацией (15 результатов на второй странице).

curl -X GET "https://api.gitverse.ru/repos/user/my-repo/issues?state=open&type=bug&per_page=15&page=2" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Accept: application/vnd.gitverse.object+json;version=1"

Замените YOUR_TOKEN на ваш личный токен доступа. Заголовок Accept фиксирует использование первой версии API.

Пример запроса для поиска задач, назначенных на пользователя alice и содержащих метку high:

curl -X GET "https://api.gitverse.ru/repos/user/my-repo/issues?assignee=alice&labels=high" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Accept: application/vnd.gitverse.object+json;version=1"

Ответ при успешном получении (200 OK) Если репозиторий найден и у токена есть права на чтение, сервер вернет ответ с кодом 200 OK и телом в формате JSON, содержащим массив объектов задач и запросов на слияние:

[
    {
        "id": 152488,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/38",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/38/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/38/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/38",
        "number": 38,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Новая самамя задача демо",
        "body": "Обновленное описание запроса на слияние",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7418,
                "name": "Priority/Blocker",
                "exclusive": true,
                "is_archived": false,
                "color": "f56c3e",
                "description": "Блокирующий",
                "url": "https://api.gitverse.ru/labels/7418"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 4,
            "code": "epic",
            "name": "Эпик",
            "color": "#F7DFEF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-08-19T10:44:54Z",
        "updated_at": "2026-08-19T10:44:54Z",
        "closed_at": null,
        "due_date": "2028-02-28T21:00:00Z",
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/38/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 152480,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/37",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/37/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/37/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/37",
        "number": 37,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Обновленный заголовок Санька",
        "body": "Обновленное описание запроса на слияние",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7418,
                "name": "Priority/Blocker",
                "exclusive": true,
                "is_archived": false,
                "color": "f56c3e",
                "description": "Блокирующий",
                "url": "https://api.gitverse.ru/labels/7418"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 4,
            "code": "epic",
            "name": "Эпик",
            "color": "#F7DFEF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-08-19T10:32:04Z",
        "updated_at": "2026-08-19T10:32:04Z",
        "closed_at": null,
        "due_date": "2028-02-28T21:00:00Z",
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/37/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 152471,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/36",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/36/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/36/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/36",
        "number": 36,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Обновленный заголовок Санька",
        "body": "Обновленное описание запроса на слияние",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7418,
                "name": "Priority/Blocker",
                "exclusive": true,
                "is_archived": false,
                "color": "f56c3e",
                "description": "Блокирующий",
                "url": "https://api.gitverse.ru/labels/7418"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 4,
            "code": "epic",
            "name": "Эпик",
            "color": "#F7DFEF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-08-19T10:19:42Z",
        "updated_at": "2026-08-19T10:19:42Z",
        "closed_at": null,
        "due_date": "2028-02-28T21:00:00Z",
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/36/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 152470,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/35",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/35/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/35/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/35",
        "number": 35,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Обновленный заголовок",
        "body": "Обновленное описание запроса на слияние",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7418,
                "name": "Priority/Blocker",
                "exclusive": true,
                "is_archived": false,
                "color": "f56c3e",
                "description": "Блокирующий",
                "url": "https://api.gitverse.ru/labels/7418"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 4,
            "code": "epic",
            "name": "Эпик",
            "color": "#F7DFEF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-08-19T10:19:32Z",
        "updated_at": "2026-08-19T10:19:32Z",
        "closed_at": null,
        "due_date": "2028-02-28T21:00:00Z",
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/35/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 152458,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/34",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/34/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/34/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/34",
        "number": 34,
        "user": {
            "id": 65012,
            "name": "Ivan Petrov",
            "login": "user_17",
            "type": "User",
            "bio": "",
            "email": null,
            "avatar_url": "https://gitverse.ru/avatars/5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8",
            "html_url": "https://gitverse.ru/user_17",
            "url": "https://api.gitverse.ru/users/user_17",
            "followers_url": "https://api.gitverse.ru/users/user_17/followers",
            "following_url": "https://api.gitverse.ru/users/user_17/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_17/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_17/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 0,
            "following": 2,
            "public_repos": 0,
            "stars_count": 0,
            "created_at": "2024-10-22T06:08:57Z",
            "updated_at": "2026-07-07T08:26:11Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Для Саши заголовок 2",
        "body": "Обновленное описание запроса на слияние",
        "ref": "",
        "assets": [],
        "labels": [],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-08-19T09:39:19Z",
        "updated_at": "2026-08-19T09:39:19Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/34/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 152457,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/33",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/33/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/33/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/33",
        "number": 33,
        "user": {
            "id": 65012,
            "name": "Ivan Petrov",
            "login": "user_17",
            "type": "User",
            "bio": "",
            "email": null,
            "avatar_url": "https://gitverse.ru/avatars/5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8",
            "html_url": "https://gitverse.ru/user_17",
            "url": "https://api.gitverse.ru/users/user_17",
            "followers_url": "https://api.gitverse.ru/users/user_17/followers",
            "following_url": "https://api.gitverse.ru/users/user_17/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_17/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_17/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 0,
            "following": 2,
            "public_repos": 0,
            "stars_count": 0,
            "created_at": "2024-10-22T06:08:57Z",
            "updated_at": "2026-07-07T08:26:11Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Для Саши заголовок",
        "body": "Обновленное описание запроса на слияние",
        "ref": "",
        "assets": [],
        "labels": [],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-08-19T09:37:32Z",
        "updated_at": "2026-08-19T09:37:32Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/33/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 152455,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/32",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/32/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/32/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/32",
        "number": 32,
        "user": {
            "id": 65012,
            "name": "Ivan Petrov",
            "login": "user_17",
            "type": "User",
            "bio": "",
            "email": null,
            "avatar_url": "https://gitverse.ru/avatars/5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8",
            "html_url": "https://gitverse.ru/user_17",
            "url": "https://api.gitverse.ru/users/user_17",
            "followers_url": "https://api.gitverse.ru/users/user_17/followers",
            "following_url": "https://api.gitverse.ru/users/user_17/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_17/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_17/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 0,
            "following": 2,
            "public_repos": 0,
            "stars_count": 0,
            "created_at": "2024-10-22T06:08:57Z",
            "updated_at": "2026-07-07T08:26:11Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Обновленный заголовок",
        "body": "Обновленное описание запроса на слияние",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7418,
                "name": "Priority/Blocker",
                "exclusive": true,
                "is_archived": false,
                "color": "f56c3e",
                "description": "Блокирующий",
                "url": "https://api.gitverse.ru/labels/7418"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 4,
            "code": "epic",
            "name": "Эпик",
            "color": "#F7DFEF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-08-19T09:35:59Z",
        "updated_at": "2026-08-19T09:35:59Z",
        "closed_at": null,
        "due_date": "2028-02-28T21:00:00Z",
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/32/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 139211,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/30",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/30/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/30/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/30",
        "number": 30,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "sdfsdfdsf",
        "body": "",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7415,
                "name": "Priority/Medium",
                "exclusive": true,
                "is_archived": false,
                "color": "d1d9e0",
                "description": "Средний",
                "url": "https://api.gitverse.ru/labels/7415"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-17T09:54:49Z",
        "updated_at": "2026-07-17T09:54:49Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/30/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        },
        "parent_issue_url": "https://api.gitverse.ru/repos/user_42/logi/issues/29"
    },
    {
        "id": 139212,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/31",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/31/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/31/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/31",
        "number": 31,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "hhhhds",
        "body": "",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7415,
                "name": "Priority/Medium",
                "exclusive": true,
                "is_archived": false,
                "color": "d1d9e0",
                "description": "Средний",
                "url": "https://api.gitverse.ru/labels/7415"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-17T09:54:44Z",
        "updated_at": "2026-07-17T09:56:04Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/31/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        },
        "parent_issue_url": "https://api.gitverse.ru/repos/user_42/logi/issues/29"
    },
    {
        "id": 139210,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/29",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/29/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/29/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/29",
        "number": 29,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Yjdfz pflfxf",
        "body": "",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7415,
                "name": "Priority/Medium",
                "exclusive": true,
                "is_archived": false,
                "color": "d1d9e0",
                "description": "Средний",
                "url": "https://api.gitverse.ru/labels/7415"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-17T09:54:38Z",
        "updated_at": "2026-07-17T09:56:16Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/29/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        },
        "sub_issues_summary": {
            "total": 2,
            "completed": 0,
            "percent_completed": 0
        },
        "parent_issue_url": "https://api.gitverse.ru/repos/user_42/logi/issues/24"
    },
    {
        "id": 139207,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/28",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/28/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/28/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/28",
        "number": 28,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "И еще неделю",
        "body": "",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7415,
                "name": "Priority/Medium",
                "exclusive": true,
                "is_archived": false,
                "color": "d1d9e0",
                "description": "Средний",
                "url": "https://api.gitverse.ru/labels/7415"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-17T09:49:28Z",
        "updated_at": "2026-07-17T09:49:28Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/28/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 139205,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/27",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/27/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/27/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/27",
        "number": 27,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Вторавтав тьы",
        "body": "",
        "ref": "",
        "assets": [],
        "labels": [],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-17T09:46:46Z",
        "updated_at": "2026-07-17T09:56:07Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/27/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 139204,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/26",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/26/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/26/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/26",
        "number": 26,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Ртрптп",
        "body": "",
        "ref": "",
        "assets": [],
        "labels": [],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-17T09:46:39Z",
        "updated_at": "2026-07-17T09:46:39Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/26/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 139145,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/25",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/25/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/25/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/25",
        "number": 25,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "1111",
        "body": "",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7415,
                "name": "Priority/Medium",
                "exclusive": true,
                "is_archived": false,
                "color": "d1d9e0",
                "description": "Средний",
                "url": "https://api.gitverse.ru/labels/7415"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-17T08:41:48Z",
        "updated_at": "2026-07-17T08:41:48Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/25/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        },
        "parent_issue_url": "https://api.gitverse.ru/repos/user_42/logi/issues/24"
    },
    {
        "id": 139144,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/24",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/24/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/24/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/24",
        "number": 24,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Еще один день",
        "body": "",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7415,
                "name": "Priority/Medium",
                "exclusive": true,
                "is_archived": false,
                "color": "d1d9e0",
                "description": "Средний",
                "url": "https://api.gitverse.ru/labels/7415"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 1,
        "created_at": "2026-07-17T08:41:42Z",
        "updated_at": "2026-07-17T09:56:16Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/24/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        },
        "sub_issues_summary": {
            "total": 3,
            "completed": 0,
            "percent_completed": 0
        }
    },
    {
        "id": 139078,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/23",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/23/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/23/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/23",
        "number": 23,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Запрос на слияние из br-03 в master",
        "body": "Запрос на слияние из br-03 в master",
        "ref": "",
        "assets": [],
        "labels": [],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-17T06:22:24Z",
        "updated_at": "2026-07-17T06:22:25Z",
        "closed_at": null,
        "due_date": null,
        "draft": false,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/23/timeline",
        "pull_request": {
            "url": "https://api.gitverse.ru/repos/user_42/logi/pulls/23",
            "merged": false,
            "merged_at": null,
            "draft": false,
            "html_url": "https://gitverse.ru/user_42/logi/pulls/23",
            "diff_url": "https://gitverse.ru/user_42/logi/pulls/23.diff",
            "patch_url": "https://gitverse.ru/user_42/logi/pulls/23.patch"
        },
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        }
    },
    {
        "id": 139064,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/21",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/21/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/21/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/21",
        "number": 21,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Подзадача_2",
        "body": "",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7415,
                "name": "Priority/Medium",
                "exclusive": true,
                "is_archived": false,
                "color": "d1d9e0",
                "description": "Средний",
                "url": "https://api.gitverse.ru/labels/7415"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-17T04:52:11Z",
        "updated_at": "2026-07-17T04:52:11Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/21/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        },
        "parent_issue_url": "https://api.gitverse.ru/repos/user_42/logi/issues/20"
    },
    {
        "id": 139065,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/22",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/22/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/22/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/22",
        "number": 22,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Подзадача_1",
        "body": "",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7415,
                "name": "Priority/Medium",
                "exclusive": true,
                "is_archived": false,
                "color": "d1d9e0",
                "description": "Средний",
                "url": "https://api.gitverse.ru/labels/7415"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-17T04:52:05Z",
        "updated_at": "2026-07-17T04:52:05Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/22/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        },
        "parent_issue_url": "https://api.gitverse.ru/repos/user_42/logi/issues/20"
    },
    {
        "id": 139063,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/20",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/20/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/20/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/20",
        "number": 20,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Разработка графика производства работ (ППР) на август",
        "body": "",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7415,
                "name": "Priority/Medium",
                "exclusive": true,
                "is_archived": false,
                "color": "d1d9e0",
                "description": "Средний",
                "url": "https://api.gitverse.ru/labels/7415"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-17T04:51:55Z",
        "updated_at": "2026-07-17T05:51:22Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/20/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        },
        "sub_issues_summary": {
            "total": 2,
            "completed": 0,
            "percent_completed": 0
        }
    },
    {
        "id": 139050,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/19",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/19/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/19/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/19",
        "number": 19,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Монтаж опалубки под фундаментную плиту (корпус Б)",
        "body": "вапвап",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7418,
                "name": "Priority/Blocker",
                "exclusive": true,
                "is_archived": false,
                "color": "f56c3e",
                "description": "Блокирующий",
                "url": "https://api.gitverse.ru/labels/7418"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-17T03:40:19Z",
        "updated_at": "2026-07-17T05:51:44Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/19/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 139049,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/18",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/18/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/18/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/18",
        "number": 18,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Завоз инертных материалов (щебень, песок) на склад",
        "body": "аенапа",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7817,
                "name": "dev/frontend",
                "exclusive": true,
                "is_archived": false,
                "color": "e69eda",
                "description": "",
                "url": "https://api.gitverse.ru/labels/7817"
            },
            {
                "id": 7418,
                "name": "Priority/Blocker",
                "exclusive": true,
                "is_archived": false,
                "color": "f56c3e",
                "description": "Блокирующий",
                "url": "https://api.gitverse.ru/labels/7418"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-17T03:34:14Z",
        "updated_at": "2026-07-17T05:51:32Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/18/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 138961,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/17",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/17/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/17/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/17",
        "number": 17,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Вторая подзадача",
        "body": "сапрапнапнг",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7415,
                "name": "Priority/Medium",
                "exclusive": true,
                "is_archived": false,
                "color": "d1d9e0",
                "description": "Средний",
                "url": "https://api.gitverse.ru/labels/7415"
            },
            {
                "id": 7459,
                "name": "test/first",
                "exclusive": true,
                "is_archived": false,
                "color": "a4e0a9",
                "description": "",
                "url": "https://api.gitverse.ru/labels/7459"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-16T19:19:26Z",
        "updated_at": "2026-07-16T19:24:18Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/17/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 138960,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/16",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/16/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/16/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/16",
        "number": 16,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Армирование колонн подвала (секция 1–3)",
        "body": "ывавыа",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7417,
                "name": "Priority/Critical",
                "exclusive": true,
                "is_archived": false,
                "color": "ffbb34",
                "description": "Критический",
                "url": "https://api.gitverse.ru/labels/7417"
            },
            {
                "id": 7461,
                "name": "prosto",
                "exclusive": false,
                "is_archived": false,
                "color": "96a2b6",
                "description": "",
                "url": "https://api.gitverse.ru/labels/7461"
            },
            {
                "id": 7460,
                "name": "test/second",
                "exclusive": true,
                "is_archived": false,
                "color": "f56c3e",
                "description": "",
                "url": "https://api.gitverse.ru/labels/7460"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-16T19:15:30Z",
        "updated_at": "2026-07-17T05:51:55Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/16/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 138947,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/4",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/4/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/4/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/4",
        "number": 4,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Бетонирование перекрытия нулевого цикла",
        "body": "вапвапвап",
        "ref": "",
        "assets": [],
        "labels": [],
        "milestone": null,
        "assignee": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "assignees": [
            {
                "id": 516,
                "name": "",
                "login": "user_42",
                "type": "User",
                "bio": "",
                "email": "user_42@mail.org",
                "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "html_url": "https://gitverse.ru/user_42",
                "url": "https://api.gitverse.ru/users/user_42",
                "followers_url": "https://api.gitverse.ru/users/user_42/followers",
                "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
                "repos_url": "https://api.gitverse.ru/users/user_42/repos",
                "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
                "site_admin": false,
                "location": null,
                "is_verified": false,
                "followers": 3,
                "following": 0,
                "public_repos": 45,
                "stars_count": 0,
                "created_at": "2024-01-24T20:34:11Z",
                "updated_at": "2026-08-06T11:16:52Z"
            }
        ],
        "type": {
            "id": 2,
            "code": "bug",
            "name": "Дефект",
            "color": "#FDE8D8"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-16T19:12:52Z",
        "updated_at": "2026-07-17T05:52:09Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/4/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 138946,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/3",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/3/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/3/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/3",
        "number": 3,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Гидроизоляция стен подземной парковки",
        "body": "ывавыавыа",
        "ref": "",
        "assets": [],
        "labels": [],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-16T19:12:36Z",
        "updated_at": "2026-07-17T05:52:20Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/3/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        }
    },
    {
        "id": 138959,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/15",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/15/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/15/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/15",
        "number": 15,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Первая подзадача",
        "body": "Просто какое-то тестовое описание",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7418,
                "name": "Priority/Blocker",
                "exclusive": true,
                "is_archived": false,
                "color": "f56c3e",
                "description": "Блокирующий",
                "url": "https://api.gitverse.ru/labels/7418"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 1,
            "code": "task",
            "name": "Задача",
            "color": "#DBF0FF"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-16T19:07:36Z",
        "updated_at": "2026-07-16T19:14:29Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/15/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        },
        "parent_issue_url": "https://api.gitverse.ru/repos/user_42/logi/issues/10"
    },
    {
        "id": 138945,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/2",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/2/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/2/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/2",
        "number": 2,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Запрос на слияние из br-1 в master",
        "body": "Запрос на слияние из br-1 в master",
        "ref": "",
        "assets": [],
        "labels": [],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-16T19:06:56Z",
        "updated_at": "2026-07-16T19:06:56Z",
        "closed_at": null,
        "due_date": null,
        "draft": false,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/2/timeline",
        "pull_request": {
            "url": "https://api.gitverse.ru/repos/user_42/logi/pulls/2",
            "merged": false,
            "merged_at": null,
            "draft": false,
            "html_url": "https://gitverse.ru/user_42/logi/pulls/2",
            "diff_url": "https://gitverse.ru/user_42/logi/pulls/2.diff",
            "patch_url": "https://gitverse.ru/user_42/logi/pulls/2.patch"
        },
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        }
    },
    {
        "id": 138944,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/1",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/1/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/1/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/1",
        "number": 1,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Запрос на слияние из br-2 в master",
        "body": "Запрос на слияние из br-2 в master",
        "ref": "",
        "assets": [],
        "labels": [],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-16T19:06:43Z",
        "updated_at": "2026-07-16T19:06:44Z",
        "closed_at": null,
        "due_date": null,
        "draft": false,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/1/timeline",
        "pull_request": {
            "url": "https://api.gitverse.ru/repos/user_42/logi/pulls/1",
            "merged": false,
            "merged_at": null,
            "draft": false,
            "html_url": "https://gitverse.ru/user_42/logi/pulls/1",
            "diff_url": "https://gitverse.ru/user_42/logi/pulls/1.diff",
            "patch_url": "https://gitverse.ru/user_42/logi/pulls/1.patch"
        },
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        }
    },
    {
        "id": 138955,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/11",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/11/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/11/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/11",
        "number": 11,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Черновая стяжка полов по этажам (корпус А)",
        "body": "В логистической компании в часы пик возникает более 50 заказов на 10 доступных машин. Текущий FIFO-алгоритм оставляет дальние заказы нераспределёнными, из-за чего клиенты жалуются на срывы сроков. Нужен механизм, который учитывает не только время поступления, но и приоритетность маршрута (скоропорт, лекарства) и расположение машин.\n\n**Техническое задание:**\n\nРеализовать сервис, который на основе списка заказов (вес, срочность, адреса погрузки/выгрузки) и списка доступных тягачей (текущие координаты, свободная грузоподъёмность) строит оптимальное назначение «заказ — машина». Критерии оптимизации: минимизация общего порожнего пробега, при этом заказы с флагом `priority: true` не могут ждать больше 15 минут. Предусмотреть кейс, когда заказов больше, чем машин — тогда нераспределённые заказы помечаются с причиной «недостаточная грузоподъёмность» или «машины в радиусе 50 км отсутствуют».\n\n**Пример кода (логика матчинга):**\n\n<span style=\"color: rgb(15, 17, 21);\">python</span>\n\n```\ndef assign_orders(orders: list, trucks: list) -> list:\n    assignments = []\n    for order in sorted(orders, key=lambda o: o.priority, reverse=True):\n        best_truck = min(trucks, key=lambda t: distance(t.location, order.pickup))\n        if best_truck.capacity >= order.weight:\n            assignments.append({\"order_id\": order.id, \"truck_id\": best_truck.id})\n            trucks.remove(best_truck)\n        else:\n            order.reason = \"no suitable truck capacity\"\n    return assignments\n```",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7415,
                "name": "Priority/Medium",
                "exclusive": true,
                "is_archived": false,
                "color": "d1d9e0",
                "description": "Средний",
                "url": "https://api.gitverse.ru/labels/7415"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 2,
            "code": "bug",
            "name": "Дефект",
            "color": "#FDE8D8"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-16T19:04:23Z",
        "updated_at": "2026-07-17T05:53:29Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/11/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        },
        "parent_issue_url": "https://api.gitverse.ru/repos/user_42/logi/issues/10"
    },
    {
        "id": 138950,
        "node_id": null,
        "url": "https://api.gitverse.ru/repos/user_42/logi/issues/6",
        "repository_url": "https://api.gitverse.ru/repos/user_42/logi",
        "labels_url": "https://api.gitverse.ru/repos/user_42/logi/issues/6/labels{/name}",
        "comments_url": "https://api.gitverse.ru/repos/user_42/logi/issues/6/comments",
        "events_url": null,
        "html_url": "https://gitverse.ru/user_42/logi/issues/6",
        "number": 6,
        "user": {
            "id": 516,
            "name": "",
            "login": "user_42",
            "type": "User",
            "bio": "",
            "email": "user_42@mail.org",
            "avatar_url": "https://gitverse.ru/avatars/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "html_url": "https://gitverse.ru/user_42",
            "url": "https://api.gitverse.ru/users/user_42",
            "followers_url": "https://api.gitverse.ru/users/user_42/followers",
            "following_url": "https://api.gitverse.ru/users/user_42/following{/other_user}",
            "repos_url": "https://api.gitverse.ru/users/user_42/repos",
            "organizations_url": "https://api.gitverse.ru/users/user_42/orgs",
            "site_admin": false,
            "location": null,
            "is_verified": false,
            "followers": 3,
            "following": 0,
            "public_repos": 45,
            "stars_count": 0,
            "created_at": "2024-01-24T20:34:11Z",
            "updated_at": "2026-08-06T11:16:52Z"
        },
        "original_author": "",
        "original_author_id": 0,
        "title": "Остекление витражей административного крыла",
        "body": "В логистической компании в часы пик возникает более 50 заказов на 10 доступных машин. Текущий FIFO-алгоритм оставляет дальние заказы нераспределёнными, из-за чего клиенты жалуются на срывы сроков. Нужен механизм, который учитывает не только время поступления, но и приоритетность маршрута (скоропорт, лекарства) и расположение машин.\n\n**Техническое задание:**\n\nРеализовать сервис, который на основе списка заказов (вес, срочность, адреса погрузки/выгрузки) и списка доступных тягачей (текущие координаты, свободная грузоподъёмность) строит оптимальное назначение «заказ — машина». Критерии оптимизации: минимизация общего порожнего пробега, при этом заказы с флагом `priority: true` не могут ждать больше 15 минут. Предусмотреть кейс, когда заказов больше, чем машин — тогда нераспределённые заказы помечаются с причиной «недостаточная грузоподъёмность» или «машины в радиусе 50 км отсутствуют».\n\n**Пример кода (логика матчинга):**\n\n<span style=\"color: rgb(15, 17, 21);\">python</span>\n\n```\ndef assign_orders(orders: list, trucks: list) -> list:\n    assignments = []\n    for order in sorted(orders, key=lambda o: o.priority, reverse=True):\n        best_truck = min(trucks, key=lambda t: distance(t.location, order.pickup))\n        if best_truck.capacity >= order.weight:\n            assignments.append({\"order_id\": order.id, \"truck_id\": best_truck.id})\n            trucks.remove(best_truck)\n        else:\n            order.reason = \"no suitable truck capacity\"\n    return assignments\n```",
        "ref": "",
        "assets": [],
        "labels": [
            {
                "id": 7817,
                "name": "dev/frontend",
                "exclusive": true,
                "is_archived": false,
                "color": "e69eda",
                "description": "",
                "url": "https://api.gitverse.ru/labels/7817"
            },
            {
                "id": 7415,
                "name": "Priority/Medium",
                "exclusive": true,
                "is_archived": false,
                "color": "d1d9e0",
                "description": "Средний",
                "url": "https://api.gitverse.ru/labels/7415"
            },
            {
                "id": 7825,
                "name": "test",
                "exclusive": false,
                "is_archived": false,
                "color": "ffd685",
                "description": "",
                "url": "https://api.gitverse.ru/labels/7825"
            },
            {
                "id": 7459,
                "name": "test/first",
                "exclusive": true,
                "is_archived": false,
                "color": "a4e0a9",
                "description": "",
                "url": "https://api.gitverse.ru/labels/7459"
            },
            {
                "id": 7829,
                "name": "trtr/backend",
                "exclusive": true,
                "is_archived": false,
                "color": "67cc67",
                "description": "",
                "url": "https://api.gitverse.ru/labels/7829"
            }
        ],
        "milestone": null,
        "assignee": null,
        "assignees": null,
        "type": {
            "id": 3,
            "code": "story",
            "name": "История",
            "color": "#E1F5E7"
        },
        "state": "open",
        "locked": false,
        "comments": 0,
        "created_at": "2026-07-16T19:04:12Z",
        "updated_at": "2026-07-17T09:54:08Z",
        "closed_at": null,
        "due_date": null,
        "timeline_url": "https://api.gitverse.ru/repos/user_42/logi/issues/6/timeline",
        "pull_request": null,
        "repository": {
            "id": 300162,
            "name": "logi",
            "owner": "user_42",
            "full_name": "user_42/logi"
        },
        "development": {
            "pulls": [],
            "branches": []
        },
        "parent_issue_url": "https://api.gitverse.ru/repos/user_42/logi/issues/24"
    }
]

Структура ответа

Ответ — массив объектов Issue (задача или запрос на слияние). Полная структура описана в графе объектов, раздел «Объект Issue».

На корневом уровне каждый элемент массива содержит:

ПолеТипОписание
id, node_idinteger / stringУникальный ID и глобальный ID узла (всегда null)
numberintegerНомер задачи/запроса в репозитории
title, body, refstringЗаголовок, описание, ссылка
statestringСостояние (open/closed)
userobjectАвтор (см. User)
labelsarrayМетки (см. Label)
typeobjectТип задачи (см. IssueType)
milestoneobject / nullВеха (см. Milestone)
assigneeobject / nullИсполнитель (см. User)
assigneesarrayИсполнители (см. User)
commentsintegerКоличество комментариев
lockedbooleanЗаблокирована ли задача/запрос
created_at, updated_at, closed_at, due_datestring / nullДаты создания, обновления, закрытия и контрольный срок
repositoryobjectРепозиторий (см. Repository)
developmentobjectСвязанная разработка (см. Development)
pull_requestobject / nullМетаданные, если это запрос на слияние
url, html_url, timeline_urlstringСсылки

Вложенные объекты (User, Label, IssueType, Repository, Development и др.) описаны в графе объектов и на корневом уровне не детализируются.

Коды ответа

Результат выполнения запроса определяется по HTTP-статусу:

КодСтатусОписание
200OKСписок задач и запросов успешно получен.
400Bad RequestНекорректные параметры запроса (например, недопустимое значение state).
404Not FoundРепозиторий не найден или нет доступа к нему.
422Unprocessable EntityОшибка валидации параметров.
500Internal Server ErrorВнутренняя ошибка сервера GitVerse.

Особенности метода

Возврат задач и запросов на слияние: метод возвращает как задачи (issues), так и запросы на слияние (pull requests). Запросы на слияние содержат поле pull_request, у задач это поле отсутствует.

Фильтрация по состоянию: состояние задачи определяется на основе статуса проекта в GitVerse, а не поля state.

Фильтрация по типу: параметр type позволяет фильтровать только задачи с указанным типом. Для запросов на слияние тип не применяется.

Пагинация: максимальное значение параметра per_page — 100. По умолчанию возвращается 30 записей на странице.

Метки для запросов на слияние: в текущей реализации метки для запросов на слияние не поддерживаются, поэтому для PR поле labels будет пустым.

Назначенные исполнители: только соавторы репозитория и участники команды с доступом к репозиторию могут быть назначены исполнителями. Остальные переданные логины пользователей игнорируются.

Типы задач: поле type возвращается только для задач. Для запросов на слияние поле type не возвращается или имеет значение null.