-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopen-api.yaml
1192 lines (1189 loc) · 38.8 KB
/
open-api.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: "3.1.0"
info:
version: 1.1.0
title: Esprito TMA API
servers:
- url: https://api.esprito.com
description: Production server
- url: http://localhost:8080
description: Local server
paths:
/api/auth:
post:
tags:
- authentication
summary: Авторизация пользователя
description: Проверяет данные пользователя и генерирует access или refresh токен
requestBody:
description: Данные аутентификации пользователя
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UserAuth'
parameters:
- name: isRefresh
in: query
description: Получение refresh токена, если false получаем access токен
required: false
schema:
type: boolean
responses:
'200':
description: Пользователь успешно авторизован
content:
application/json:
schema:
$ref: '#/components/schemas/JWTToken'
'409':
description: >-
Конфликт пользовательских данных
- Если не прошла верификация;
- Если в init_data неполные данные;
- Если отсутствуют обязательные поля
content:
application/json:
schema:
type: string
'400':
description: Неизвестная ошибка
content:
application/json:
schema:
type: string
/auth/refresh:
post:
tags:
- authentication
summary: Обновить access токен
description: Проверяет refresh токен и генерирует новый access токен
parameters:
- name: token
in: query
description: refresh токен
required: true
schema:
type: string
responses:
'200':
description: Новый access токен успешно создан
content:
application/json:
schema:
$ref: '#/components/schemas/JWTToken'
'409':
description: Конфликт пользовательских данных
content:
application/json:
schema:
type: string
'401':
description: Неверный refresh токен
content:
application/json:
schema:
type: string
'400':
description: Неизвестная ошибка
content:
application/json:
schema:
type: string
/api/users:
post:
description: Создание пользователя. В отладочных целях модель пользователя из запроса сохраняется в БД
operationId: createUser
tags:
- users
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/WebAppInitData'
responses:
'201':
description: Успешное создание пользователя
content:
application/json:
schema:
$ref: '#/components/schemas/User'
'400':
$ref: '#/components/responses/BadRequest'
'406':
$ref: '#/components/responses/NotAcceptable'
'409':
description: Пользователь с таким id уже создан
content:
application/json:
schema:
$ref: '#/components/schemas/User'
security:
- bearerAuth: [ ]
/api/users/{id}:
get:
description: Получение пользователя по id
tags:
- users
parameters:
- $ref: '#/components/parameters/UserId'
operationId: getUserById
responses:
'200':
description: Пользователь найден
content:
application/json:
schema:
$ref: '#/components/schemas/User'
'400':
$ref: '#/components/responses/BadRequest'
'404':
description: Not found
security:
- bearerAuth: [ ]
patch:
description: >-
Если в переданном теле есть поле address (из wallet.account.address), обновляем его значение в модели пользователя
Если передано поле next_claim_ts, запускаем "фарминг" токенов
tags:
- users
parameters:
- $ref: '#/components/parameters/UserId'
operationId: updateUserData
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/User'
responses:
'200':
description: Модель успешно обновлена
'400':
$ref: '#/components/responses/BadRequest'
'404':
description: Not found
security:
- bearerAuth: [ ]
/api/users/{id}/claim:
post:
tags:
- users
parameters:
- $ref: '#/components/parameters/UserId'
- name: type
in: query
required: false
schema:
type: string
default: claim
enum:
- claim
- referrals
operationId: claimTokens
responses:
'200':
description: Успешно получено
content:
application/json:
schema:
$ref: '#/components/schemas/ClaimResult'
'400':
$ref: '#/components/responses/BadRequest'
'404':
description: Not found
'409':
description: Запрос производится слишком рано. Для type=claim также возможно, что фарминг ещё не был начат
content:
application/json:
schema:
$ref: '#/components/schemas/User'
security:
- bearerAuth: [ ]
/api/users/{id}/claims:
get:
description: Запросить историю получения токенов
tags:
- users
operationId: getClaimHistory
parameters:
- $ref: '#/components/parameters/UserId'
responses:
'200':
description: Успешно получено
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ClaimRecord'
'400':
$ref: '#/components/responses/BadRequest'
'404':
description: Пользователь с данным id не найден
security:
- bearerAuth: [ ]
/api/users/{id}/referrals:
get:
description: Запросить информацию о рефералах пользователя
tags:
- users
operationId: getReferralsInfo
parameters:
- $ref: '#/components/parameters/UserId'
responses:
'200':
description: Успешно получено
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ReferralResult'
'400':
$ref: '#/components/responses/BadRequest'
'404':
description: Пользователь с данным id не найден
security:
- bearerAuth: [ ]
/api/users/{id}/tasks:
get:
description: >-
Получить задачи пользователя. При этом осуществляется проверка, должны ли получаемые задачи быть переведены в статус Done и если да, то задачи возвращаются с этим статусом
tags:
- users
operationId: getTasks
parameters:
- $ref: '#/components/parameters/UserId'
responses:
'200':
description: Успешно получено
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/TaskResult'
'400':
$ref: '#/components/responses/BadRequest'
'404':
description: Пользователь с данным id не найден
security:
- bearerAuth: [ ]
/api/users/{id}/tasks/{taskid}:
patch:
description: Запустить выполнение задачи. Имеет смысл для задач типа Delayed
tags:
- users
parameters:
- $ref: '#/components/parameters/UserId'
- name: taskid
in: path
description: Task id
required: true
schema:
type: string
example: 668121b3d5c01a6d7a85cb7c
operationId: startTask
requestBody:
content:
application/json:
schema:
properties:
finish_ts:
description: Время когда задача будет считаться завершённой. В формате timestamp.
type: integer
format: int64
example: 1719483620
responses:
'200':
description: Успешно запущено
content:
application/json:
schema:
$ref: '#/components/schemas/UserTask'
'400':
$ref: '#/components/responses/BadRequest'
'404':
description: Not found
'409':
$ref: '#/components/responses/Conflict'
security:
- bearerAuth: [ ]
/api/users/{id}/claimTasks:
post:
description: >-
Завершить выполнение задачи и забрать YEP
Для каждой задачи не в статусе TaskStatus.Claimed осуществляется проверка готовности.
Задача готова в любом из следующих случаев:
- она находится в статусе TaskStatus.Done
- тип задачи TaskType.Delayed и finish_ts в прошлом
- тип задачи TaskType.Instant и условие определяемое по полю code исполнено
Такие задачи будет переведены в статус TaskStatus.Claimed, а в claim history пользователя добавится запись с типом ClaimType.Task
tags:
- users
parameters:
- $ref: '#/components/parameters/UserId'
operationId: claimTask
responses:
'200':
description: Успешно завершено
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ClaimResult'
'400':
$ref: '#/components/responses/BadRequest'
'404':
description: Not found
'409':
$ref: '#/components/responses/Conflict'
security:
- bearerAuth: [ ]
/api/users/{id}/rates/{jetton_address}:
get:
description: Получить оценку жетона или приложения пользователем
tags:
- users
parameters:
- $ref: '#/components/parameters/UserId'
- $ref: '#/components/parameters/JettonAddress'
operationId: getJettonRate
responses:
'200':
description: Успешное получение сохранённой оценки
content:
application/json:
schema:
$ref: '#/components/schemas/JettonRate'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/Conflict'
security:
- bearerAuth: [ ]
post:
description: Получить оценку жетона или приложения пользователем
tags:
- users
parameters:
- $ref: '#/components/parameters/UserId'
- $ref: '#/components/parameters/JettonAddress'
operationId: getJettonRate
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/JettonRate'
responses:
'200':
description: Успешное сохранение оценки + получение награды
content:
application/json:
schema:
$ref: '#/components/schemas/ClaimResult'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/Conflict'
security:
- bearerAuth: [ ]
/api/admin/banned:
get:
description: Получить список всех забаненых пользователей
tags:
- banned
operationId: getAllBanned
responses:
'200':
description: Список успешно получен
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/User'
security:
- bearerAuth: [ ]
post:
description: >-
Отправить пользователей с указанными id в бан.
Забаненые пользователи не отображаются в друзьях и не могут осуществлять основные операции
tags:
- banned
operationId: addToBanned
requestBody:
content:
application/json:
schema:
type: object
properties:
ids:
description: Список идентификаторов пользователей
type: array
items:
type: integer
format: int64
responses:
'200':
description: Успешно выполнено
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/User'
'400':
$ref: '#/components/responses/BadRequest'
security:
- bearerAuth: [ ]
/api/admin/banned/release:
post:
description: Выпустить пользователей с указанными id из бана.
tags:
- banned
operationId: releaseFromBan
requestBody:
content:
application/json:
schema:
type: object
properties:
ids:
description: Список идентификаторов пользователей
type: array
items:
type: integer
format: int64
responses:
'200':
description: Успешно выполнено
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/User'
'400':
$ref: '#/components/responses/BadRequest'
security:
- bearerAuth: [ ]
/api/admin/tasks:
get:
description: Получить список всех задач
tags:
- tasks
operationId: getAllTasks
responses:
'200':
description: Список успешно получен
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Task'
security:
- bearerAuth: [ ]
post:
description: Создать задачу, поле `id` должно быть пустым
tags:
- tasks
operationId: createTask
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Task'
responses:
'201':
description: Задача успешно создана, в теле ответа поле `id` вернётся заполненным
content:
application/json:
schema:
$ref: '#/components/schemas/Task'
'400':
$ref: '#/components/responses/BadRequest'
'409':
$ref: '#/components/responses/Conflict'
security:
- bearerAuth: [ ]
/api/admin/tasks/{id}:
get:
description: Получение задачи по id
tags:
- tasks
parameters:
- $ref: '#/components/parameters/TaskId'
operationId: getTaskById
responses:
'200':
description: Задача найдена
content:
application/json:
schema:
$ref: '#/components/schemas/Task'
'404':
description: Not found
security:
- bearerAuth: [ ]
put:
description: Обновить задачу, поле `id` должно совпадать со значением параметра id задачи
tags:
- tasks
operationId: updateTask
parameters:
- $ref: '#/components/parameters/TaskId'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Task'
responses:
'200':
description: Задача успешно обновлена
content:
application/json:
schema:
$ref: '#/components/schemas/Task'
'400':
$ref: '#/components/responses/BadRequest'
'404':
description: Not found
'409':
$ref: '#/components/responses/Conflict'
security:
- bearerAuth: [ ]
/api/admin/reports:
get:
description: >-
Получить список всех непроверенных отчётов.
Отчёт не был проверен, если его статус null или Created
tags:
- reports
operationId: getReports
responses:
'200':
description: Список успешно получен
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Report'
security:
- bearerAuth: [ ]
/api/admin/reports/{id}:
get:
description: Получение отчёта по id
tags:
- reports
parameters:
- $ref: '#/components/parameters/ReportId'
operationId: getReportById
responses:
'200':
description: Отчёт найден
content:
application/json:
schema:
$ref: '#/components/schemas/Report'
'404':
description: Not found
security:
- bearerAuth: [ ]
put:
description: Подтвердить проверку отчёта
tags:
- reports
operationId: updateReport
parameters:
- $ref: '#/components/parameters/ReportId'
responses:
'200':
description: Отчёт успешно обновлён, YEP пользователю начислены
content:
application/json:
schema:
$ref: '#/components/schemas/Report'
'404':
description: Not found
security:
- bearerAuth: [ ]
delete:
description: Отчёт проверен. Результат проверки отрицательный
tags:
- reports
operationId: rejectReport
parameters:
- $ref: '#/components/parameters/ReportId'
responses:
'200':
description: Отчёт успешно обновлён
content:
application/json:
schema:
$ref: '#/components/schemas/Report'
'404':
description: Not found
security:
- bearerAuth: [ ]
/api/admin/jettons/{jetton_address}:
post:
description: Создать новый жетон
tags:
- jettons
parameters:
- $ref: '#/components/parameters/JettonAddress'
operationId: createJetton
responses:
'201':
description: Успешное создание жетона
content:
application/json:
schema:
$ref: '#/components/schemas/Jetton'
'400':
$ref: '#/components/responses/BadRequest'
'409':
$ref: '#/components/responses/Conflict'
security:
- bearerAuth: [ ]
/api/admin/apps/{app_id}:
post:
description: Создать новое приложение
tags:
- jettons
parameters:
- $ref: '#/components/parameters/AppId'
operationId: createApp
responses:
'201':
description: Успешное создание приложения
content:
application/json:
schema:
$ref: '#/components/schemas/App'
'400':
$ref: '#/components/responses/BadRequest'
'409':
$ref: '#/components/responses/Conflict'
security:
- bearerAuth: [ ]
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
parameters:
UserId:
name: id
in: path
description: Id пользователя. Можно использовать псевдоним `me` для текущего пользователя, тогда id будет получен из блока авторизации
required: true
schema:
type: string
ReportId:
name: id
in: path
description: Id отчёта
required: true
schema:
type: string
TaskId:
name: id
in: path
description: Id задачи
required: true
schema:
type: string
JettonAddress:
name: jetton_address
in: path
description: Уникальный адрес жетона
required: true
schema:
type: string
AppId:
name: app_id
in: path
description: Уникальный идентификатор приложения
required: true
schema:
type: string
responses:
NotFound:
description: Not found (404)
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResult'
BadRequest:
description: Bad request (400)
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResult'
NotAcceptable:
description: Not acceptable (406)
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResult'
Conflict:
description: Conflict (409)
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResult'
schemas:
UserAuth:
type: object
properties:
init_data:
type: string
example: "query_id=AAGGlO0NAAAAAIaU7Q0OxBXw&user=%7B%22id%22%3A233673862%2C%2..."
JWTToken:
type: object
properties:
token_id:
type: string
example: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
ErrorResult:
type: object
properties:
code:
description: Код ошибки
type: string
message:
description: Сообщение об ошибке
type: string
JettonRate:
type: object
properties:
hodl:
description: HODL
type: string
example: 1w
trust:
type: integer
format: int32
example: 1
recommend:
type: integer
format: int32
example: 1
Jetton:
type: object
properties:
jetton_address:
description: Адрес жетона (уникальный)
type: string
example: EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs
hodl:
description: HODL
type: string
example: 1m
trust:
type: number
format: double
example: 1.25
recommend:
type: number
format: double
example: 4.25
rates:
description: количество сохранённых оценок
type: integer
format: int32
example: 42
App:
type: object
properties:
app_id:
description: Идентификатор приложения
type: string
example: catizenbot
recommend:
type: number
format: double
example: 4.25
rates:
description: количество сохранённых оценок
type: integer
format: int32
example: 42
WaId:
description: >-
WebAppId, соответствует telegram [WebAppUser.id](https://core.telegram.org/bots/webapps#webappuser)
type: integer
format: int64
example: 123456
ClaimResult:
type: object
description: Результат получения YEP
required:
- claim_value
- balance
properties:
claim_value:
description: Количество полученных YEP в результате операции
type: integer
format: int32
example: 100
balance:
description: Баланс пользователя после получения
type: integer
format: int64
example: 1100
ReferralResult:
type: object
description: Данные о пользователе зарегистрированном через нашу реферальную ссылку
required:
- balance_diff
properties:
wa_id:
allOf:
- $ref: '#/components/schemas/WaId'
firstName:
description: >-
Имя пользователя, соответствует telegram [WebAppUser.firstName](https://core.telegram.org/bots/webapps#webappuser)
type: string
example: Роланд
username:
description: >-
Login пользователя, соответствует telegram [WebAppUser.username](https://core.telegram.org/bots/webapps#webappuser)
type: string
example: gheralt92
photo_url:
description: >-
Ссылка на фото, соответствует telegram [WebAppUser.photo_url](https://core.telegram.org/bots/webapps#webappuser)
type: string
balance:
description: Количество YEP накопленных пользователем
type: integer
format: int64
example: 1100
balance_diff:
description: Количество YEP накопленных пользователем за последние сутки
type: integer
format: int32
example: 1000
TaskResult:
type: object
description: Данные о задаче назначенной пользователю
required:
- task_id
- name
- icon_url
- type
- status
- bonus
properties:
task_id:
$ref: '#/components/schemas/TaskId'
name:
description: >-
Наименование задачи
type: string
example: someName
code:
description: Кодовое наименование задачи. Для TaskType.Instant по нему определяется логика выполнения задачи
format: string
example: Friend
icon_type:
description: Тип иконки отображаемой для задачи
type: string
example: Telegram
icon_url:
description: Ссылка на изображение
type: string
type:
$ref: '#/components/schemas/TaskType'
status:
$ref: '#/components/schemas/TaskStatus'
bonus:
description: Количество YEP которые будут получены за выполнение задачи
type: integer
format: int32
example: 250
finish_ts:
description: Когда за запущенную на выполнение задачу можно будет забрать YEP в формате timestamp
type: integer
format: int64
example: 1719483620
target_link:
description: Ссылка по которой пользователь должен перейти для выполнения задачи
type: string
UserTask:
type: object
description: Связка задачи с пользователем
required:
- wa_id
- task
- status
properties:
wa_id:
$ref: '#/components/schemas/WaId'
task:
$ref: '#/components/schemas/Task'
status:
$ref: '#/components/schemas/TaskStatus'
finish_ts:
description: Когда за запущенную на выполнение задачу можно будет забрать YEP в формате timestamp
type: integer
format: int64
example: 1719483620
Report:
type: object
description: Отчёт
required:
- report
- report_type
properties:
id:
description: Id отчёта
type: string
example: 668cfb469b26e9cd77be814a
user_id:
$ref: '#/components/schemas/WaId'
report:
description: Тело отчёта
type: string
example: Такой-то сервис вызывает у меня подозрения
report_type:
$ref: '#/components/schemas/ReportType'
report_status:
$ref: '#/components/schemas/ReportStatus'
Task:
type: object
description: Задача
required:
- name
- icon_url
- task_type
- bonus
properties:
id:
$ref: '#/components/schemas/TaskId'
name:
description: Наименование задачи
type: string
example: Some task name
code:
description: Кодовое наименование задачи. Для TaskType.Instant по нему определяется логика выполнения задачи
format: string
example: Friend
icon_type:
description: Тип иконки отображаемой для задачи
type: string
example: Telegram
icon_url:
description: ссылка на иконку задачи
type: string
task_type:
$ref: '#/components/schemas/TaskType'
bonus:
description: Количество YEP которые будут получены за выполнение задачи
type: integer
format: int32
example: 250
target_link: