Advertisement
crutch12

Untitled

Dec 21st, 2021
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 106.12 KB | None | 0 0
  1. {
  2. "openapi": "3.0.1",
  3. "info": {
  4. "title": "Реестр Сигналов и Событий",
  5. "version": "1.0"
  6. },
  7. "servers": [
  8. {
  9. "url": "/"
  10. }
  11. ],
  12. "tags": [
  13. {
  14. "name": "SignalController UI",
  15. "description": "Контроллер для работы с Сигналами для frontend"
  16. },
  17. {
  18. "name": "TypeIncident Backend",
  19. "description": "Контроллер для работы со справочником Типов Событий для backend"
  20. },
  21. {
  22. "name": "CurrencyController UI",
  23. "description": "Контроллер для работы со справочником валют для frontend"
  24. },
  25. {
  26. "name": "WithdrawConditionController UI",
  27. "description": "Контроллер для работы со справочником условий устранения/утраты актуальности ФКР для frontend"
  28. },
  29. {
  30. "name": "TypeSignalAndIncidentController UI",
  31. "description": "Контроллер для работы со справочниками Типов Сигналов и Событий для frontend"
  32. },
  33. {
  34. "name": "SignalController Backend",
  35. "description": "Контроллер для работы с Сигналами для backend"
  36. },
  37. {
  38. "name": "IncidentController UI",
  39. "description": "Контроллер для работы с Событиями для frontend"
  40. },
  41. {
  42. "name": "ReportController UI",
  43. "description": "Контроллер для работы с отчетами для frontend"
  44. }
  45. ],
  46. "paths": {
  47. "/ui/signals": {
  48. "post": {
  49. "tags": [
  50. "SignalController UI"
  51. ],
  52. "summary": "Загрузка списка Сигналов",
  53. "operationId": "getFilteredSignalPage",
  54. "parameters": [
  55. {
  56. "name": "page",
  57. "in": "query",
  58. "description": "Номер страницы",
  59. "required": false,
  60. "schema": {
  61. "type": "integer",
  62. "format": "int32",
  63. "default": 0
  64. }
  65. },
  66. {
  67. "name": "pageSize",
  68. "in": "query",
  69. "description": "Размер страницы",
  70. "required": false,
  71. "schema": {
  72. "type": "integer",
  73. "format": "int32",
  74. "default": 2
  75. }
  76. },
  77. {
  78. "name": "sortBy",
  79. "in": "query",
  80. "description": "Название поля, по которому сортируем список",
  81. "required": false,
  82. "schema": {
  83. "type": "string",
  84. "default": "id"
  85. }
  86. },
  87. {
  88. "name": "sortDir",
  89. "in": "query",
  90. "description": "Направление сортировки: asc, desc",
  91. "required": false,
  92. "schema": {
  93. "type": "string",
  94. "default": "asc"
  95. }
  96. }
  97. ],
  98. "requestBody": {
  99. "content": {
  100. "application/json": {
  101. "schema": {
  102. "$ref": "#/components/schemas/SignalSearchRequest"
  103. }
  104. }
  105. }
  106. },
  107. "responses": {
  108. "200": {
  109. "description": "Данные успешно загружены.",
  110. "content": {
  111. "application/json": {
  112. "schema": {
  113. "$ref": "#/components/schemas/PageSignalPageDto"
  114. }
  115. }
  116. }
  117. },
  118. "400": {
  119. "description": "Bad Request",
  120. "content": {
  121. "*/*": {
  122. "schema": {
  123. "$ref": "#/components/schemas/ApiError"
  124. }
  125. }
  126. }
  127. },
  128. "403": {
  129. "description": "Forbidden",
  130. "content": {
  131. "*/*": {
  132. "schema": {
  133. "$ref": "#/components/schemas/ApiError"
  134. }
  135. }
  136. }
  137. },
  138. "500": {
  139. "description": "Ошибка при загрузки данных.",
  140. "content": {
  141. "application/json": {
  142. "schema": {
  143. "$ref": "#/components/schemas/PageSignalPageDto"
  144. }
  145. }
  146. }
  147. }
  148. },
  149. "security": [
  150. {
  151. "bearer-auth": []
  152. }
  153. ]
  154. }
  155. },
  156. "/ui/reports/signal-list": {
  157. "post": {
  158. "tags": [
  159. "ReportController UI"
  160. ],
  161. "summary": "Загрузка отчета из списка Сигналов в формате xlsx",
  162. "operationId": "getSignalReport",
  163. "requestBody": {
  164. "content": {
  165. "application/json": {
  166. "schema": {
  167. "$ref": "#/components/schemas/SignalSearchRequest"
  168. }
  169. }
  170. }
  171. },
  172. "responses": {
  173. "200": {
  174. "description": "Данные успешно загружены.",
  175. "content": {
  176. "application/octet-stream": {
  177. "schema": {
  178. "type": "string",
  179. "format": "binary"
  180. }
  181. }
  182. }
  183. },
  184. "400": {
  185. "description": "Bad Request",
  186. "content": {
  187. "*/*": {
  188. "schema": {
  189. "$ref": "#/components/schemas/ApiError"
  190. }
  191. }
  192. }
  193. },
  194. "403": {
  195. "description": "Forbidden",
  196. "content": {
  197. "*/*": {
  198. "schema": {
  199. "$ref": "#/components/schemas/ApiError"
  200. }
  201. }
  202. }
  203. },
  204. "500": {
  205. "description": "Ошибка при загрузки данных.",
  206. "content": {
  207. "application/octet-stream": {
  208. "schema": {
  209. "type": "string",
  210. "format": "binary"
  211. }
  212. }
  213. }
  214. }
  215. },
  216. "security": [
  217. {
  218. "bearer-auth": []
  219. }
  220. ]
  221. }
  222. },
  223. "/ui/reports/incident-list": {
  224. "post": {
  225. "tags": [
  226. "ReportController UI"
  227. ],
  228. "summary": "Загрузка отчета из списка Событий в формате xlsx",
  229. "operationId": "getIncidentReport",
  230. "requestBody": {
  231. "content": {
  232. "application/json": {
  233. "schema": {
  234. "$ref": "#/components/schemas/IncidentSearchRequest"
  235. }
  236. }
  237. }
  238. },
  239. "responses": {
  240. "200": {
  241. "description": "Данные успешно загружены.",
  242. "content": {
  243. "application/octet-stream": {
  244. "schema": {
  245. "type": "string",
  246. "format": "binary"
  247. }
  248. }
  249. }
  250. },
  251. "400": {
  252. "description": "Bad Request",
  253. "content": {
  254. "*/*": {
  255. "schema": {
  256. "$ref": "#/components/schemas/ApiError"
  257. }
  258. }
  259. }
  260. },
  261. "403": {
  262. "description": "Forbidden",
  263. "content": {
  264. "*/*": {
  265. "schema": {
  266. "$ref": "#/components/schemas/ApiError"
  267. }
  268. }
  269. }
  270. },
  271. "500": {
  272. "description": "Ошибка при загрузки данных.",
  273. "content": {
  274. "application/octet-stream": {
  275. "schema": {
  276. "type": "string",
  277. "format": "binary"
  278. }
  279. }
  280. }
  281. }
  282. },
  283. "security": [
  284. {
  285. "bearer-auth": []
  286. }
  287. ]
  288. }
  289. },
  290. "/ui/incidents/withdraw": {
  291. "post": {
  292. "tags": [
  293. "IncidentController UI"
  294. ],
  295. "summary": "Снятие события",
  296. "operationId": "withdraw",
  297. "requestBody": {
  298. "content": {
  299. "application/json": {
  300. "schema": {
  301. "$ref": "#/components/schemas/WithdrawRequest"
  302. }
  303. }
  304. },
  305. "required": true
  306. },
  307. "responses": {
  308. "200": {
  309. "description": "Данные успешно загружены.",
  310. "content": {
  311. "application/json": {
  312. "schema": {
  313. "type": "integer",
  314. "format": "int32"
  315. }
  316. }
  317. }
  318. },
  319. "400": {
  320. "description": "Bad Request",
  321. "content": {
  322. "*/*": {
  323. "schema": {
  324. "$ref": "#/components/schemas/ApiError"
  325. }
  326. }
  327. }
  328. },
  329. "403": {
  330. "description": "Forbidden",
  331. "content": {
  332. "*/*": {
  333. "schema": {
  334. "$ref": "#/components/schemas/ApiError"
  335. }
  336. }
  337. }
  338. },
  339. "500": {
  340. "description": "Ошибка при загрузки данных.",
  341. "content": {
  342. "application/json": {
  343. "schema": {
  344. "type": "integer",
  345. "format": "int32"
  346. }
  347. }
  348. }
  349. }
  350. },
  351. "security": [
  352. {
  353. "bearer-auth": []
  354. }
  355. ]
  356. }
  357. },
  358. "/ui/incidents/tasks/{taskId}/rework": {
  359. "post": {
  360. "tags": [
  361. "IncidentController UI"
  362. ],
  363. "summary": "На доработку",
  364. "operationId": "rework",
  365. "parameters": [
  366. {
  367. "name": "taskId",
  368. "in": "path",
  369. "description": "ID задачи",
  370. "required": true,
  371. "schema": {
  372. "type": "string"
  373. }
  374. }
  375. ],
  376. "responses": {
  377. "200": {
  378. "description": "Данные успешно загружены.",
  379. "content": {
  380. "*/*": {
  381. "schema": {
  382. "type": "integer",
  383. "format": "int32"
  384. }
  385. }
  386. }
  387. },
  388. "400": {
  389. "description": "Bad Request",
  390. "content": {
  391. "*/*": {
  392. "schema": {
  393. "$ref": "#/components/schemas/ApiError"
  394. }
  395. }
  396. }
  397. },
  398. "403": {
  399. "description": "Forbidden",
  400. "content": {
  401. "*/*": {
  402. "schema": {
  403. "$ref": "#/components/schemas/ApiError"
  404. }
  405. }
  406. }
  407. },
  408. "500": {
  409. "description": "Ошибка при загрузки данных.",
  410. "content": {
  411. "*/*": {
  412. "schema": {
  413. "type": "integer",
  414. "format": "int32"
  415. }
  416. }
  417. }
  418. }
  419. },
  420. "security": [
  421. {
  422. "bearer-auth": []
  423. }
  424. ]
  425. }
  426. },
  427. "/ui/incidents/tasks/{taskId}/reject": {
  428. "post": {
  429. "tags": [
  430. "IncidentController UI"
  431. ],
  432. "summary": "Ошибочное создание события",
  433. "operationId": "reject",
  434. "parameters": [
  435. {
  436. "name": "taskId",
  437. "in": "path",
  438. "description": "ID задачи",
  439. "required": true,
  440. "schema": {
  441. "type": "string"
  442. }
  443. }
  444. ],
  445. "responses": {
  446. "200": {
  447. "description": "Данные успешно загружены.",
  448. "content": {
  449. "*/*": {
  450. "schema": {
  451. "type": "integer",
  452. "format": "int32"
  453. }
  454. }
  455. }
  456. },
  457. "400": {
  458. "description": "Bad Request",
  459. "content": {
  460. "*/*": {
  461. "schema": {
  462. "$ref": "#/components/schemas/ApiError"
  463. }
  464. }
  465. }
  466. },
  467. "403": {
  468. "description": "Forbidden",
  469. "content": {
  470. "*/*": {
  471. "schema": {
  472. "$ref": "#/components/schemas/ApiError"
  473. }
  474. }
  475. }
  476. },
  477. "500": {
  478. "description": "Ошибка при загрузки данных.",
  479. "content": {
  480. "*/*": {
  481. "schema": {
  482. "type": "integer",
  483. "format": "int32"
  484. }
  485. }
  486. }
  487. }
  488. },
  489. "security": [
  490. {
  491. "bearer-auth": []
  492. }
  493. ]
  494. }
  495. },
  496. "/ui/incidents/tasks/{taskId}/accept": {
  497. "post": {
  498. "tags": [
  499. "IncidentController UI"
  500. ],
  501. "summary": "Акцепт создания события",
  502. "operationId": "accept",
  503. "parameters": [
  504. {
  505. "name": "taskId",
  506. "in": "path",
  507. "description": "ID задачи",
  508. "required": true,
  509. "schema": {
  510. "type": "string"
  511. }
  512. }
  513. ],
  514. "responses": {
  515. "200": {
  516. "description": "Данные успешно загружены.",
  517. "content": {
  518. "*/*": {
  519. "schema": {
  520. "type": "integer",
  521. "format": "int32"
  522. }
  523. }
  524. }
  525. },
  526. "400": {
  527. "description": "Bad Request",
  528. "content": {
  529. "*/*": {
  530. "schema": {
  531. "$ref": "#/components/schemas/ApiError"
  532. }
  533. }
  534. }
  535. },
  536. "403": {
  537. "description": "Forbidden",
  538. "content": {
  539. "*/*": {
  540. "schema": {
  541. "$ref": "#/components/schemas/ApiError"
  542. }
  543. }
  544. }
  545. },
  546. "500": {
  547. "description": "Ошибка при загрузки данных.",
  548. "content": {
  549. "*/*": {
  550. "schema": {
  551. "type": "integer",
  552. "format": "int32"
  553. }
  554. }
  555. }
  556. }
  557. },
  558. "security": [
  559. {
  560. "bearer-auth": []
  561. }
  562. ]
  563. }
  564. },
  565. "/ui/incidents/search": {
  566. "post": {
  567. "tags": [
  568. "IncidentController UI"
  569. ],
  570. "summary": "Загрузка списка Событий",
  571. "operationId": "getIncidentPage",
  572. "parameters": [
  573. {
  574. "name": "page",
  575. "in": "query",
  576. "description": "Номер страницы",
  577. "required": false,
  578. "schema": {
  579. "type": "integer",
  580. "format": "int32",
  581. "default": 0
  582. }
  583. },
  584. {
  585. "name": "pageSize",
  586. "in": "query",
  587. "description": "Размер страницы",
  588. "required": false,
  589. "schema": {
  590. "type": "integer",
  591. "format": "int32",
  592. "default": 2
  593. }
  594. },
  595. {
  596. "name": "sortBy",
  597. "in": "query",
  598. "description": "Название поля, по которому сортируем список",
  599. "required": false,
  600. "schema": {
  601. "type": "string",
  602. "default": "id"
  603. }
  604. },
  605. {
  606. "name": "sortDir",
  607. "in": "query",
  608. "description": "Направление сортировки: asc, desc",
  609. "required": false,
  610. "schema": {
  611. "type": "string",
  612. "default": "asc"
  613. }
  614. }
  615. ],
  616. "requestBody": {
  617. "content": {
  618. "application/json": {
  619. "schema": {
  620. "$ref": "#/components/schemas/IncidentSearchRequest"
  621. }
  622. }
  623. }
  624. },
  625. "responses": {
  626. "200": {
  627. "description": "Данные успешно загружены.",
  628. "content": {
  629. "application/json": {
  630. "schema": {
  631. "$ref": "#/components/schemas/PageIncidentPageDto"
  632. }
  633. }
  634. }
  635. },
  636. "400": {
  637. "description": "Bad Request",
  638. "content": {
  639. "*/*": {
  640. "schema": {
  641. "$ref": "#/components/schemas/ApiError"
  642. }
  643. }
  644. }
  645. },
  646. "403": {
  647. "description": "Forbidden",
  648. "content": {
  649. "*/*": {
  650. "schema": {
  651. "$ref": "#/components/schemas/ApiError"
  652. }
  653. }
  654. }
  655. },
  656. "500": {
  657. "description": "Ошибка при загрузки данных.",
  658. "content": {
  659. "application/json": {
  660. "schema": {
  661. "$ref": "#/components/schemas/PageIncidentPageDto"
  662. }
  663. }
  664. }
  665. }
  666. },
  667. "security": [
  668. {
  669. "bearer-auth": []
  670. }
  671. ]
  672. }
  673. },
  674. "/ui/incidents/edit": {
  675. "post": {
  676. "tags": [
  677. "IncidentController UI"
  678. ],
  679. "summary": "Редактирование",
  680. "operationId": "edit",
  681. "requestBody": {
  682. "content": {
  683. "application/json": {
  684. "schema": {
  685. "$ref": "#/components/schemas/IncidentEditRequest"
  686. }
  687. }
  688. },
  689. "required": true
  690. },
  691. "responses": {
  692. "200": {
  693. "description": "Данные успешно загружены.",
  694. "content": {
  695. "application/json": {
  696. "schema": {
  697. "type": "integer",
  698. "format": "int32"
  699. }
  700. }
  701. }
  702. },
  703. "400": {
  704. "description": "Bad Request",
  705. "content": {
  706. "*/*": {
  707. "schema": {
  708. "$ref": "#/components/schemas/ApiError"
  709. }
  710. }
  711. }
  712. },
  713. "403": {
  714. "description": "Forbidden",
  715. "content": {
  716. "*/*": {
  717. "schema": {
  718. "$ref": "#/components/schemas/ApiError"
  719. }
  720. }
  721. }
  722. },
  723. "500": {
  724. "description": "Ошибка при загрузки данных.",
  725. "content": {
  726. "application/json": {
  727. "schema": {
  728. "type": "integer",
  729. "format": "int32"
  730. }
  731. }
  732. }
  733. }
  734. },
  735. "security": [
  736. {
  737. "bearer-auth": []
  738. }
  739. ]
  740. }
  741. },
  742. "/ui/incidents/create": {
  743. "post": {
  744. "tags": [
  745. "IncidentController UI"
  746. ],
  747. "summary": "Ручное создание События",
  748. "operationId": "create",
  749. "requestBody": {
  750. "content": {
  751. "application/json": {
  752. "schema": {
  753. "$ref": "#/components/schemas/IncidentCreateRequest"
  754. }
  755. }
  756. },
  757. "required": true
  758. },
  759. "responses": {
  760. "200": {
  761. "description": "Данные успешно загружены.",
  762. "content": {
  763. "*/*": {
  764. "schema": {
  765. "type": "integer",
  766. "format": "int32"
  767. }
  768. }
  769. }
  770. },
  771. "400": {
  772. "description": "Bad Request",
  773. "content": {
  774. "*/*": {
  775. "schema": {
  776. "$ref": "#/components/schemas/ApiError"
  777. }
  778. }
  779. }
  780. },
  781. "403": {
  782. "description": "Forbidden",
  783. "content": {
  784. "*/*": {
  785. "schema": {
  786. "$ref": "#/components/schemas/ApiError"
  787. }
  788. }
  789. }
  790. },
  791. "500": {
  792. "description": "Ошибка при загрузки данных.",
  793. "content": {
  794. "*/*": {
  795. "schema": {
  796. "type": "integer",
  797. "format": "int32"
  798. }
  799. }
  800. }
  801. }
  802. },
  803. "security": [
  804. {
  805. "bearer-auth": []
  806. }
  807. ]
  808. }
  809. },
  810. "/ui/withdrawCondition/{id}": {
  811. "get": {
  812. "tags": [
  813. "WithdrawConditionController UI"
  814. ],
  815. "summary": "Загрузка условия устранения/утраты актуальности по его ID",
  816. "operationId": "getWithdrawCondition",
  817. "parameters": [
  818. {
  819. "name": "id",
  820. "in": "path",
  821. "description": "ID условия устранения/утраты актуальности ФКР",
  822. "required": true,
  823. "schema": {
  824. "type": "integer",
  825. "format": "int32"
  826. }
  827. }
  828. ],
  829. "responses": {
  830. "200": {
  831. "description": "Данные успешно загружены.",
  832. "content": {
  833. "application/json": {
  834. "schema": {
  835. "$ref": "#/components/schemas/WithdrawConditionDto"
  836. }
  837. }
  838. }
  839. },
  840. "400": {
  841. "description": "Bad Request",
  842. "content": {
  843. "*/*": {
  844. "schema": {
  845. "$ref": "#/components/schemas/ApiError"
  846. }
  847. }
  848. }
  849. },
  850. "403": {
  851. "description": "Forbidden",
  852. "content": {
  853. "*/*": {
  854. "schema": {
  855. "$ref": "#/components/schemas/ApiError"
  856. }
  857. }
  858. }
  859. },
  860. "500": {
  861. "description": "Ошибка при загрузки данных.",
  862. "content": {
  863. "application/json": {
  864. "schema": {
  865. "$ref": "#/components/schemas/WithdrawConditionDto"
  866. }
  867. }
  868. }
  869. }
  870. },
  871. "security": [
  872. {
  873. "bearer-auth": []
  874. }
  875. ]
  876. }
  877. },
  878. "/ui/types/signals/groups": {
  879. "get": {
  880. "tags": [
  881. "TypeSignalAndIncidentController UI"
  882. ],
  883. "summary": "Загрузка списка Групп Типов Сигнала из справочника",
  884. "operationId": "getGroupTypeSignalByKindList",
  885. "parameters": [
  886. {
  887. "name": "kind",
  888. "in": "query",
  889. "description": "Вид Группы Типов Сигнала",
  890. "required": true,
  891. "schema": {
  892. "$ref": "#/components/schemas/GroupTypeSignalKind"
  893. }
  894. }
  895. ],
  896. "responses": {
  897. "200": {
  898. "description": "Данные успешно загружены.",
  899. "content": {
  900. "application/json": {
  901. "schema": {
  902. "type": "array",
  903. "items": {
  904. "$ref": "#/components/schemas/GroupTypeSignalDto"
  905. }
  906. }
  907. }
  908. }
  909. },
  910. "400": {
  911. "description": "Bad Request",
  912. "content": {
  913. "*/*": {
  914. "schema": {
  915. "$ref": "#/components/schemas/ApiError"
  916. }
  917. }
  918. }
  919. },
  920. "403": {
  921. "description": "Forbidden",
  922. "content": {
  923. "*/*": {
  924. "schema": {
  925. "$ref": "#/components/schemas/ApiError"
  926. }
  927. }
  928. }
  929. },
  930. "500": {
  931. "description": "Ошибка при загрузки данных.",
  932. "content": {
  933. "application/json": {
  934. "schema": {
  935. "type": "array",
  936. "items": {
  937. "$ref": "#/components/schemas/GroupTypeSignalDto"
  938. }
  939. }
  940. }
  941. }
  942. }
  943. },
  944. "security": [
  945. {
  946. "bearer-auth": []
  947. }
  948. ]
  949. }
  950. },
  951. "/ui/types/incidents/{id}": {
  952. "get": {
  953. "tags": [
  954. "TypeSignalAndIncidentController UI"
  955. ],
  956. "summary": "Загрузка Типа События по его id",
  957. "operationId": "getTypeIncident",
  958. "parameters": [
  959. {
  960. "name": "id",
  961. "in": "path",
  962. "description": "Id Типа События",
  963. "required": true,
  964. "schema": {
  965. "type": "integer",
  966. "format": "int32"
  967. }
  968. }
  969. ],
  970. "responses": {
  971. "200": {
  972. "description": "Данные успешно загружены.",
  973. "content": {
  974. "application/json": {
  975. "schema": {
  976. "$ref": "#/components/schemas/TypeIncidentDto"
  977. }
  978. }
  979. }
  980. },
  981. "400": {
  982. "description": "Bad Request",
  983. "content": {
  984. "*/*": {
  985. "schema": {
  986. "$ref": "#/components/schemas/ApiError"
  987. }
  988. }
  989. }
  990. },
  991. "403": {
  992. "description": "Forbidden",
  993. "content": {
  994. "*/*": {
  995. "schema": {
  996. "$ref": "#/components/schemas/ApiError"
  997. }
  998. }
  999. }
  1000. },
  1001. "500": {
  1002. "description": "Ошибка при загрузки данных.",
  1003. "content": {
  1004. "application/json": {
  1005. "schema": {
  1006. "$ref": "#/components/schemas/TypeIncidentDto"
  1007. }
  1008. }
  1009. }
  1010. }
  1011. },
  1012. "security": [
  1013. {
  1014. "bearer-auth": []
  1015. }
  1016. ]
  1017. }
  1018. },
  1019. "/ui/types/incidents/groups": {
  1020. "get": {
  1021. "tags": [
  1022. "TypeSignalAndIncidentController UI"
  1023. ],
  1024. "summary": "Загрузка списка Типов Событий, сгруппированных по Группам определенного Вида",
  1025. "operationId": "getIncidentTypesByGroupKindList",
  1026. "parameters": [
  1027. {
  1028. "name": "kind",
  1029. "in": "query",
  1030. "description": "Вид Группы Типов События",
  1031. "required": true,
  1032. "schema": {
  1033. "$ref": "#/components/schemas/GroupTypeIncidentKind"
  1034. }
  1035. },
  1036. {
  1037. "name": "search",
  1038. "in": "query",
  1039. "description": "Значение для фильтрации по полям name и code",
  1040. "required": false,
  1041. "schema": {
  1042. "type": "string"
  1043. }
  1044. }
  1045. ],
  1046. "responses": {
  1047. "200": {
  1048. "description": "Данные успешно загружены.",
  1049. "content": {
  1050. "application/json": {
  1051. "schema": {
  1052. "type": "array",
  1053. "items": {
  1054. "$ref": "#/components/schemas/GroupTypeIncidentDto"
  1055. }
  1056. }
  1057. }
  1058. }
  1059. },
  1060. "400": {
  1061. "description": "Bad Request",
  1062. "content": {
  1063. "*/*": {
  1064. "schema": {
  1065. "$ref": "#/components/schemas/ApiError"
  1066. }
  1067. }
  1068. }
  1069. },
  1070. "403": {
  1071. "description": "Forbidden",
  1072. "content": {
  1073. "*/*": {
  1074. "schema": {
  1075. "$ref": "#/components/schemas/ApiError"
  1076. }
  1077. }
  1078. }
  1079. },
  1080. "500": {
  1081. "description": "Ошибка при загрузки данных.",
  1082. "content": {
  1083. "application/json": {
  1084. "schema": {
  1085. "type": "array",
  1086. "items": {
  1087. "$ref": "#/components/schemas/GroupTypeIncidentDto"
  1088. }
  1089. }
  1090. }
  1091. }
  1092. }
  1093. },
  1094. "security": [
  1095. {
  1096. "bearer-auth": []
  1097. }
  1098. ]
  1099. }
  1100. },
  1101. "/ui/signals/{id}": {
  1102. "get": {
  1103. "tags": [
  1104. "SignalController UI"
  1105. ],
  1106. "summary": "Загрузка Сигнала по его id",
  1107. "operationId": "getSignal",
  1108. "parameters": [
  1109. {
  1110. "name": "id",
  1111. "in": "path",
  1112. "description": "Id сигнала",
  1113. "required": true,
  1114. "schema": {
  1115. "type": "integer",
  1116. "format": "int32"
  1117. }
  1118. }
  1119. ],
  1120. "responses": {
  1121. "200": {
  1122. "description": "Данные успешно загружены.",
  1123. "content": {
  1124. "application/json": {
  1125. "schema": {
  1126. "$ref": "#/components/schemas/SignalDto"
  1127. }
  1128. }
  1129. }
  1130. },
  1131. "400": {
  1132. "description": "Bad Request",
  1133. "content": {
  1134. "*/*": {
  1135. "schema": {
  1136. "$ref": "#/components/schemas/ApiError"
  1137. }
  1138. }
  1139. }
  1140. },
  1141. "403": {
  1142. "description": "Forbidden",
  1143. "content": {
  1144. "*/*": {
  1145. "schema": {
  1146. "$ref": "#/components/schemas/ApiError"
  1147. }
  1148. }
  1149. }
  1150. },
  1151. "500": {
  1152. "description": "Ошибка при загрузки данных.",
  1153. "content": {
  1154. "application/json": {
  1155. "schema": {
  1156. "$ref": "#/components/schemas/SignalDto"
  1157. }
  1158. }
  1159. }
  1160. }
  1161. },
  1162. "security": [
  1163. {
  1164. "bearer-auth": []
  1165. }
  1166. ]
  1167. }
  1168. },
  1169. "/ui/incidents/{id}": {
  1170. "get": {
  1171. "tags": [
  1172. "IncidentController UI"
  1173. ],
  1174. "summary": "Загрузка События по его ID",
  1175. "operationId": "getIncident",
  1176. "parameters": [
  1177. {
  1178. "name": "id",
  1179. "in": "path",
  1180. "description": "ID События",
  1181. "required": true,
  1182. "schema": {
  1183. "type": "integer",
  1184. "format": "int32"
  1185. }
  1186. }
  1187. ],
  1188. "responses": {
  1189. "200": {
  1190. "description": "Данные успешно загружены.",
  1191. "content": {
  1192. "application/json": {
  1193. "schema": {
  1194. "$ref": "#/components/schemas/IncidentDto"
  1195. }
  1196. }
  1197. }
  1198. },
  1199. "400": {
  1200. "description": "Bad Request",
  1201. "content": {
  1202. "*/*": {
  1203. "schema": {
  1204. "$ref": "#/components/schemas/ApiError"
  1205. }
  1206. }
  1207. }
  1208. },
  1209. "403": {
  1210. "description": "Forbidden",
  1211. "content": {
  1212. "*/*": {
  1213. "schema": {
  1214. "$ref": "#/components/schemas/ApiError"
  1215. }
  1216. }
  1217. }
  1218. },
  1219. "500": {
  1220. "description": "Ошибка при загрузки данных.",
  1221. "content": {
  1222. "application/json": {
  1223. "schema": {
  1224. "$ref": "#/components/schemas/IncidentDto"
  1225. }
  1226. }
  1227. }
  1228. }
  1229. },
  1230. "security": [
  1231. {
  1232. "bearer-auth": []
  1233. }
  1234. ]
  1235. }
  1236. },
  1237. "/ui/incidents/{id}/tasks/current": {
  1238. "get": {
  1239. "tags": [
  1240. "IncidentController UI"
  1241. ],
  1242. "summary": "Получение idTask по id события",
  1243. "operationId": "getTaskIdByIncidentId",
  1244. "parameters": [
  1245. {
  1246. "name": "id",
  1247. "in": "path",
  1248. "description": "ID События",
  1249. "required": true,
  1250. "schema": {
  1251. "type": "integer",
  1252. "format": "int32"
  1253. }
  1254. }
  1255. ],
  1256. "responses": {
  1257. "200": {
  1258. "description": "Данные успешно загружены.",
  1259. "content": {
  1260. "application/json": {
  1261. "schema": {
  1262. "type": "string"
  1263. }
  1264. }
  1265. }
  1266. },
  1267. "400": {
  1268. "description": "Bad Request",
  1269. "content": {
  1270. "*/*": {
  1271. "schema": {
  1272. "$ref": "#/components/schemas/ApiError"
  1273. }
  1274. }
  1275. }
  1276. },
  1277. "403": {
  1278. "description": "Forbidden",
  1279. "content": {
  1280. "*/*": {
  1281. "schema": {
  1282. "$ref": "#/components/schemas/ApiError"
  1283. }
  1284. }
  1285. }
  1286. },
  1287. "500": {
  1288. "description": "Ошибка при загрузки данных.",
  1289. "content": {
  1290. "application/json": {
  1291. "schema": {
  1292. "type": "string"
  1293. }
  1294. }
  1295. }
  1296. }
  1297. },
  1298. "security": [
  1299. {
  1300. "bearer-auth": []
  1301. }
  1302. ]
  1303. }
  1304. },
  1305. "/ui/incidents/{id}/logs": {
  1306. "get": {
  1307. "tags": [
  1308. "IncidentController UI"
  1309. ],
  1310. "summary": "Загрузка истории изменений события",
  1311. "operationId": "getIncidentLogs",
  1312. "parameters": [
  1313. {
  1314. "name": "id",
  1315. "in": "path",
  1316. "description": "ID События",
  1317. "required": true,
  1318. "schema": {
  1319. "type": "integer",
  1320. "format": "int32"
  1321. }
  1322. }
  1323. ],
  1324. "responses": {
  1325. "200": {
  1326. "description": "Данные успешно загружены.",
  1327. "content": {
  1328. "application/json": {
  1329. "schema": {
  1330. "type": "array",
  1331. "items": {
  1332. "$ref": "#/components/schemas/EntityLogDto"
  1333. }
  1334. }
  1335. }
  1336. }
  1337. },
  1338. "400": {
  1339. "description": "Bad Request",
  1340. "content": {
  1341. "*/*": {
  1342. "schema": {
  1343. "$ref": "#/components/schemas/ApiError"
  1344. }
  1345. }
  1346. }
  1347. },
  1348. "403": {
  1349. "description": "Forbidden",
  1350. "content": {
  1351. "*/*": {
  1352. "schema": {
  1353. "$ref": "#/components/schemas/ApiError"
  1354. }
  1355. }
  1356. }
  1357. },
  1358. "500": {
  1359. "description": "Ошибка при загрузки данных.",
  1360. "content": {
  1361. "application/json": {
  1362. "schema": {
  1363. "type": "array",
  1364. "items": {
  1365. "$ref": "#/components/schemas/EntityLogDto"
  1366. }
  1367. }
  1368. }
  1369. }
  1370. }
  1371. },
  1372. "security": [
  1373. {
  1374. "bearer-auth": []
  1375. }
  1376. ]
  1377. }
  1378. },
  1379. "/ui/incidents/tasks": {
  1380. "get": {
  1381. "tags": [
  1382. "IncidentController UI"
  1383. ],
  1384. "summary": "Загрузка списка Событий с активными процессами",
  1385. "operationId": "getTaskIncidentPage",
  1386. "parameters": [
  1387. {
  1388. "name": "page",
  1389. "in": "query",
  1390. "description": "Номер страницы",
  1391. "required": false,
  1392. "schema": {
  1393. "type": "integer",
  1394. "format": "int32",
  1395. "default": 0
  1396. }
  1397. },
  1398. {
  1399. "name": "pageSize",
  1400. "in": "query",
  1401. "description": "Размер страницы",
  1402. "required": false,
  1403. "schema": {
  1404. "type": "integer",
  1405. "format": "int32",
  1406. "default": 2
  1407. }
  1408. }
  1409. ],
  1410. "responses": {
  1411. "200": {
  1412. "description": "Данные успешно загружены.",
  1413. "content": {
  1414. "application/json": {
  1415. "schema": {
  1416. "$ref": "#/components/schemas/PageIncidentPageDto"
  1417. }
  1418. }
  1419. }
  1420. },
  1421. "400": {
  1422. "description": "Bad Request",
  1423. "content": {
  1424. "*/*": {
  1425. "schema": {
  1426. "$ref": "#/components/schemas/ApiError"
  1427. }
  1428. }
  1429. }
  1430. },
  1431. "403": {
  1432. "description": "Forbidden",
  1433. "content": {
  1434. "*/*": {
  1435. "schema": {
  1436. "$ref": "#/components/schemas/ApiError"
  1437. }
  1438. }
  1439. }
  1440. },
  1441. "500": {
  1442. "description": "Ошибка при загрузки данных.",
  1443. "content": {
  1444. "application/json": {
  1445. "schema": {
  1446. "$ref": "#/components/schemas/PageIncidentPageDto"
  1447. }
  1448. }
  1449. }
  1450. }
  1451. },
  1452. "security": [
  1453. {
  1454. "bearer-auth": []
  1455. }
  1456. ]
  1457. }
  1458. },
  1459. "/ui/incidents/tasks/{taskId}": {
  1460. "get": {
  1461. "tags": [
  1462. "IncidentController UI"
  1463. ],
  1464. "summary": "Загрузка События по ID задачи",
  1465. "operationId": "getIncidentByTaskId",
  1466. "parameters": [
  1467. {
  1468. "name": "taskId",
  1469. "in": "path",
  1470. "description": "ID задачи",
  1471. "required": true,
  1472. "schema": {
  1473. "type": "string"
  1474. }
  1475. }
  1476. ],
  1477. "responses": {
  1478. "200": {
  1479. "description": "Данные успешно загружены.",
  1480. "content": {
  1481. "application/json": {
  1482. "schema": {
  1483. "$ref": "#/components/schemas/IncidentDto"
  1484. }
  1485. }
  1486. }
  1487. },
  1488. "400": {
  1489. "description": "Bad Request",
  1490. "content": {
  1491. "*/*": {
  1492. "schema": {
  1493. "$ref": "#/components/schemas/ApiError"
  1494. }
  1495. }
  1496. }
  1497. },
  1498. "403": {
  1499. "description": "Forbidden",
  1500. "content": {
  1501. "*/*": {
  1502. "schema": {
  1503. "$ref": "#/components/schemas/ApiError"
  1504. }
  1505. }
  1506. }
  1507. },
  1508. "500": {
  1509. "description": "Ошибка при загрузки данных.",
  1510. "content": {
  1511. "application/json": {
  1512. "schema": {
  1513. "$ref": "#/components/schemas/IncidentDto"
  1514. }
  1515. }
  1516. }
  1517. }
  1518. },
  1519. "security": [
  1520. {
  1521. "bearer-auth": []
  1522. }
  1523. ]
  1524. }
  1525. },
  1526. "/ui/incidents/reset-cache": {
  1527. "get": {
  1528. "tags": [
  1529. "IncidentController UI"
  1530. ],
  1531. "summary": "Принудительный сброс кеша событий",
  1532. "operationId": "resetCache",
  1533. "responses": {
  1534. "200": {
  1535. "description": "Данные успешно загружены.",
  1536. "content": {
  1537. "*/*": {
  1538. "schema": {
  1539. "type": "string"
  1540. }
  1541. }
  1542. }
  1543. },
  1544. "400": {
  1545. "description": "Bad Request",
  1546. "content": {
  1547. "*/*": {
  1548. "schema": {
  1549. "$ref": "#/components/schemas/ApiError"
  1550. }
  1551. }
  1552. }
  1553. },
  1554. "403": {
  1555. "description": "Forbidden",
  1556. "content": {
  1557. "*/*": {
  1558. "schema": {
  1559. "$ref": "#/components/schemas/ApiError"
  1560. }
  1561. }
  1562. }
  1563. },
  1564. "500": {
  1565. "description": "Ошибка при загрузки данных.",
  1566. "content": {
  1567. "*/*": {
  1568. "schema": {
  1569. "type": "string"
  1570. }
  1571. }
  1572. }
  1573. }
  1574. },
  1575. "security": [
  1576. {
  1577. "bearer-auth": []
  1578. }
  1579. ]
  1580. }
  1581. },
  1582. "/ui/incidents/group-type-incident/{slxId}": {
  1583. "get": {
  1584. "tags": [
  1585. "IncidentController UI"
  1586. ],
  1587. "summary": "Загрузка списка Событий, сгруппированных по группам типов Событий, для КК",
  1588. "operationId": "getIncidentGroupTypeIncident",
  1589. "parameters": [
  1590. {
  1591. "name": "slxId",
  1592. "in": "path",
  1593. "description": "SlxId Контрагента",
  1594. "required": true,
  1595. "schema": {
  1596. "type": "string"
  1597. }
  1598. },
  1599. {
  1600. "name": "hierarchyType",
  1601. "in": "query",
  1602. "description": "Тип контрагента в иерархии",
  1603. "required": false,
  1604. "schema": {
  1605. "$ref": "#/components/schemas/HierarchyType"
  1606. }
  1607. }
  1608. ],
  1609. "responses": {
  1610. "200": {
  1611. "description": "Данные успешно загружены.",
  1612. "content": {
  1613. "application/json": {
  1614. "schema": {
  1615. "type": "array",
  1616. "items": {
  1617. "$ref": "#/components/schemas/IncidentGroupTypeIncidentDto"
  1618. }
  1619. }
  1620. }
  1621. }
  1622. },
  1623. "400": {
  1624. "description": "Bad Request",
  1625. "content": {
  1626. "*/*": {
  1627. "schema": {
  1628. "$ref": "#/components/schemas/ApiError"
  1629. }
  1630. }
  1631. }
  1632. },
  1633. "403": {
  1634. "description": "Forbidden",
  1635. "content": {
  1636. "*/*": {
  1637. "schema": {
  1638. "$ref": "#/components/schemas/ApiError"
  1639. }
  1640. }
  1641. }
  1642. },
  1643. "500": {
  1644. "description": "Ошибка при загрузки данных.",
  1645. "content": {
  1646. "application/json": {
  1647. "schema": {
  1648. "type": "array",
  1649. "items": {
  1650. "$ref": "#/components/schemas/IncidentGroupTypeIncidentDto"
  1651. }
  1652. }
  1653. }
  1654. }
  1655. }
  1656. },
  1657. "security": [
  1658. {
  1659. "bearer-auth": []
  1660. }
  1661. ]
  1662. }
  1663. },
  1664. "/ui/incidents/group-bank-action/{slxId}": {
  1665. "get": {
  1666. "tags": [
  1667. "IncidentController UI"
  1668. ],
  1669. "summary": "Загрузка списка Событий, сгруппированных по действиям Банка, для КК",
  1670. "operationId": "getIncidentGroupBankAction",
  1671. "parameters": [
  1672. {
  1673. "name": "slxId",
  1674. "in": "path",
  1675. "description": "SlxId Контрагента",
  1676. "required": true,
  1677. "schema": {
  1678. "type": "string"
  1679. }
  1680. },
  1681. {
  1682. "name": "hierarchyType",
  1683. "in": "query",
  1684. "description": "Тип контрагента в иерархии",
  1685. "required": false,
  1686. "schema": {
  1687. "$ref": "#/components/schemas/HierarchyType"
  1688. }
  1689. }
  1690. ],
  1691. "responses": {
  1692. "200": {
  1693. "description": "Данные успешно загружены.",
  1694. "content": {
  1695. "application/json": {
  1696. "schema": {
  1697. "type": "array",
  1698. "items": {
  1699. "$ref": "#/components/schemas/IncidentGroupBankActionDto"
  1700. }
  1701. }
  1702. }
  1703. }
  1704. },
  1705. "400": {
  1706. "description": "Bad Request",
  1707. "content": {
  1708. "*/*": {
  1709. "schema": {
  1710. "$ref": "#/components/schemas/ApiError"
  1711. }
  1712. }
  1713. }
  1714. },
  1715. "403": {
  1716. "description": "Forbidden",
  1717. "content": {
  1718. "*/*": {
  1719. "schema": {
  1720. "$ref": "#/components/schemas/ApiError"
  1721. }
  1722. }
  1723. }
  1724. },
  1725. "500": {
  1726. "description": "Ошибка при загрузки данных.",
  1727. "content": {
  1728. "application/json": {
  1729. "schema": {
  1730. "type": "array",
  1731. "items": {
  1732. "$ref": "#/components/schemas/IncidentGroupBankActionDto"
  1733. }
  1734. }
  1735. }
  1736. }
  1737. }
  1738. },
  1739. "security": [
  1740. {
  1741. "bearer-auth": []
  1742. }
  1743. ]
  1744. }
  1745. },
  1746. "/ui/incidents/fkrCounts/{slxIds}": {
  1747. "get": {
  1748. "tags": [
  1749. "IncidentController UI"
  1750. ],
  1751. "summary": "Загрузка количества событий с действующим ФКР для списка Контрагентов",
  1752. "operationId": "getActiveFkrCount",
  1753. "parameters": [
  1754. {
  1755. "name": "slxIds",
  1756. "in": "path",
  1757. "description": "Список slxId Контрагента",
  1758. "required": true,
  1759. "schema": {
  1760. "type": "array",
  1761. "items": {
  1762. "type": "string"
  1763. }
  1764. }
  1765. }
  1766. ],
  1767. "responses": {
  1768. "200": {
  1769. "description": "Данные успешно загружены.",
  1770. "content": {
  1771. "application/json": {
  1772. "schema": {
  1773. "type": "array",
  1774. "items": {
  1775. "$ref": "#/components/schemas/FkrCountDto"
  1776. }
  1777. }
  1778. }
  1779. }
  1780. },
  1781. "400": {
  1782. "description": "Bad Request",
  1783. "content": {
  1784. "*/*": {
  1785. "schema": {
  1786. "$ref": "#/components/schemas/ApiError"
  1787. }
  1788. }
  1789. }
  1790. },
  1791. "403": {
  1792. "description": "Forbidden",
  1793. "content": {
  1794. "*/*": {
  1795. "schema": {
  1796. "$ref": "#/components/schemas/ApiError"
  1797. }
  1798. }
  1799. }
  1800. },
  1801. "500": {
  1802. "description": "Ошибка при загрузки данных.",
  1803. "content": {
  1804. "application/json": {
  1805. "schema": {
  1806. "type": "array",
  1807. "items": {
  1808. "$ref": "#/components/schemas/FkrCountDto"
  1809. }
  1810. }
  1811. }
  1812. }
  1813. }
  1814. },
  1815. "security": [
  1816. {
  1817. "bearer-auth": []
  1818. }
  1819. ]
  1820. }
  1821. },
  1822. "/ui/currencies": {
  1823. "get": {
  1824. "tags": [
  1825. "CurrencyController UI"
  1826. ],
  1827. "summary": "Загрузка списка валют",
  1828. "operationId": "getCurrencyList",
  1829. "responses": {
  1830. "200": {
  1831. "description": "Данные успешно загружены.",
  1832. "content": {
  1833. "application/json": {
  1834. "schema": {
  1835. "type": "array",
  1836. "items": {
  1837. "$ref": "#/components/schemas/CurrencyDto"
  1838. }
  1839. }
  1840. }
  1841. }
  1842. },
  1843. "400": {
  1844. "description": "Bad Request",
  1845. "content": {
  1846. "*/*": {
  1847. "schema": {
  1848. "$ref": "#/components/schemas/ApiError"
  1849. }
  1850. }
  1851. }
  1852. },
  1853. "403": {
  1854. "description": "Forbidden",
  1855. "content": {
  1856. "*/*": {
  1857. "schema": {
  1858. "$ref": "#/components/schemas/ApiError"
  1859. }
  1860. }
  1861. }
  1862. },
  1863. "500": {
  1864. "description": "Ошибка при загрузки данных.",
  1865. "content": {
  1866. "application/json": {
  1867. "schema": {
  1868. "type": "array",
  1869. "items": {
  1870. "$ref": "#/components/schemas/CurrencyDto"
  1871. }
  1872. }
  1873. }
  1874. }
  1875. }
  1876. },
  1877. "security": [
  1878. {
  1879. "bearer-auth": []
  1880. }
  1881. ]
  1882. }
  1883. },
  1884. "/ui/currencies/{code}": {
  1885. "get": {
  1886. "tags": [
  1887. "CurrencyController UI"
  1888. ],
  1889. "summary": "Загрузка валюты по коду",
  1890. "operationId": "getCurrency",
  1891. "parameters": [
  1892. {
  1893. "name": "code",
  1894. "in": "path",
  1895. "description": "Код валюты",
  1896. "required": true,
  1897. "schema": {
  1898. "type": "string"
  1899. }
  1900. }
  1901. ],
  1902. "responses": {
  1903. "200": {
  1904. "description": "Данные успешно загружены.",
  1905. "content": {
  1906. "application/json": {
  1907. "schema": {
  1908. "$ref": "#/components/schemas/CurrencyDto"
  1909. }
  1910. }
  1911. }
  1912. },
  1913. "400": {
  1914. "description": "Bad Request",
  1915. "content": {
  1916. "*/*": {
  1917. "schema": {
  1918. "$ref": "#/components/schemas/ApiError"
  1919. }
  1920. }
  1921. }
  1922. },
  1923. "403": {
  1924. "description": "Forbidden",
  1925. "content": {
  1926. "*/*": {
  1927. "schema": {
  1928. "$ref": "#/components/schemas/ApiError"
  1929. }
  1930. }
  1931. }
  1932. },
  1933. "500": {
  1934. "description": "Ошибка при загрузки данных.",
  1935. "content": {
  1936. "application/json": {
  1937. "schema": {
  1938. "$ref": "#/components/schemas/CurrencyDto"
  1939. }
  1940. }
  1941. }
  1942. }
  1943. },
  1944. "security": [
  1945. {
  1946. "bearer-auth": []
  1947. }
  1948. ]
  1949. }
  1950. },
  1951. "/types/incidents": {
  1952. "get": {
  1953. "tags": [
  1954. "TypeIncident Backend"
  1955. ],
  1956. "summary": "Загрузка списка Типов Событий",
  1957. "operationId": "getTypeIncidentList",
  1958. "responses": {
  1959. "200": {
  1960. "description": "Данные успешно загружены.",
  1961. "content": {
  1962. "application/json": {
  1963. "schema": {
  1964. "type": "array",
  1965. "items": {
  1966. "$ref": "#/components/schemas/TypeIncidentDto"
  1967. }
  1968. }
  1969. }
  1970. }
  1971. },
  1972. "400": {
  1973. "description": "Bad Request",
  1974. "content": {
  1975. "*/*": {
  1976. "schema": {
  1977. "$ref": "#/components/schemas/ApiError"
  1978. }
  1979. }
  1980. }
  1981. },
  1982. "403": {
  1983. "description": "Forbidden",
  1984. "content": {
  1985. "*/*": {
  1986. "schema": {
  1987. "$ref": "#/components/schemas/ApiError"
  1988. }
  1989. }
  1990. }
  1991. },
  1992. "500": {
  1993. "description": "Ошибка при загрузки данных.",
  1994. "content": {
  1995. "application/json": {
  1996. "schema": {
  1997. "type": "array",
  1998. "items": {
  1999. "$ref": "#/components/schemas/TypeIncidentDto"
  2000. }
  2001. }
  2002. }
  2003. }
  2004. }
  2005. }
  2006. }
  2007. },
  2008. "/signals/load-from-kantor": {
  2009. "get": {
  2010. "tags": [
  2011. "SignalController Backend"
  2012. ],
  2013. "summary": "Загрузка сигналов из Кантора",
  2014. "operationId": "loadFromKantor",
  2015. "responses": {
  2016. "200": {
  2017. "description": "Данные успешно загружены.",
  2018. "content": {
  2019. "application/json": {
  2020. "schema": {
  2021. "type": "string"
  2022. }
  2023. }
  2024. }
  2025. },
  2026. "400": {
  2027. "description": "Bad Request",
  2028. "content": {
  2029. "*/*": {
  2030. "schema": {
  2031. "$ref": "#/components/schemas/ApiError"
  2032. }
  2033. }
  2034. }
  2035. },
  2036. "403": {
  2037. "description": "Forbidden",
  2038. "content": {
  2039. "*/*": {
  2040. "schema": {
  2041. "$ref": "#/components/schemas/ApiError"
  2042. }
  2043. }
  2044. }
  2045. },
  2046. "500": {
  2047. "description": "Ошибка при загрузки данных.",
  2048. "content": {
  2049. "application/json": {
  2050. "schema": {
  2051. "type": "string"
  2052. }
  2053. }
  2054. }
  2055. }
  2056. }
  2057. }
  2058. },
  2059. "/signals/convert-kantor": {
  2060. "get": {
  2061. "tags": [
  2062. "SignalController Backend"
  2063. ],
  2064. "summary": "Преобразование сигналов из Кантора",
  2065. "operationId": "convertKantorSignalToIncident",
  2066. "responses": {
  2067. "200": {
  2068. "description": "Данные успешно загружены.",
  2069. "content": {
  2070. "application/json": {
  2071. "schema": {
  2072. "type": "string"
  2073. }
  2074. }
  2075. }
  2076. },
  2077. "400": {
  2078. "description": "Bad Request",
  2079. "content": {
  2080. "*/*": {
  2081. "schema": {
  2082. "$ref": "#/components/schemas/ApiError"
  2083. }
  2084. }
  2085. }
  2086. },
  2087. "403": {
  2088. "description": "Forbidden",
  2089. "content": {
  2090. "*/*": {
  2091. "schema": {
  2092. "$ref": "#/components/schemas/ApiError"
  2093. }
  2094. }
  2095. }
  2096. },
  2097. "500": {
  2098. "description": "Ошибка при загрузки данных.",
  2099. "content": {
  2100. "application/json": {
  2101. "schema": {
  2102. "type": "string"
  2103. }
  2104. }
  2105. }
  2106. }
  2107. }
  2108. }
  2109. }
  2110. },
  2111. "components": {
  2112. "schemas": {
  2113. "ApiError": {
  2114. "type": "object",
  2115. "properties": {
  2116. "uuid": {
  2117. "type": "string",
  2118. "format": "uuid"
  2119. },
  2120. "uiMessage": {
  2121. "type": "string"
  2122. },
  2123. "techMessage": {
  2124. "type": "string"
  2125. },
  2126. "timestamp": {
  2127. "type": "string",
  2128. "format": "date-time"
  2129. },
  2130. "validation": {
  2131. "$ref": "#/components/schemas/ApiValidationError"
  2132. }
  2133. }
  2134. },
  2135. "ApiValidationError": {
  2136. "type": "object",
  2137. "properties": {
  2138. "object": {
  2139. "type": "array",
  2140. "items": {
  2141. "type": "string"
  2142. }
  2143. },
  2144. "fields": {
  2145. "type": "object",
  2146. "additionalProperties": {
  2147. "type": "array",
  2148. "items": {
  2149. "type": "string"
  2150. }
  2151. }
  2152. }
  2153. }
  2154. },
  2155. "GblFilter": {
  2156. "type": "string",
  2157. "description": "ГБЛ",
  2158. "enum": [
  2159. "PKB_KIB",
  2160. "PKB_SMB",
  2161. "DNPA_SPEC_BRWS"
  2162. ]
  2163. },
  2164. "SignalSearchRequest": {
  2165. "type": "object",
  2166. "properties": {
  2167. "id": {
  2168. "uniqueItems": true,
  2169. "type": "array",
  2170. "description": "ID Сигнала",
  2171. "items": {
  2172. "type": "integer",
  2173. "description": "ID Сигнала",
  2174. "format": "int32"
  2175. }
  2176. },
  2177. "groupTypeId": {
  2178. "uniqueItems": true,
  2179. "type": "array",
  2180. "description": "ID Группы Типов Сигнала",
  2181. "items": {
  2182. "type": "integer",
  2183. "description": "ID Группы Типов Сигнала",
  2184. "format": "int32"
  2185. }
  2186. },
  2187. "dateFrom": {
  2188. "type": "string",
  2189. "description": "Дата Сигнала в Событии от",
  2190. "format": "date"
  2191. },
  2192. "dateTo": {
  2193. "type": "string",
  2194. "description": "Дата Сигнала в Событии до",
  2195. "format": "date"
  2196. },
  2197. "slxId": {
  2198. "uniqueItems": true,
  2199. "type": "array",
  2200. "description": "slxId Контрагента",
  2201. "items": {
  2202. "type": "string",
  2203. "description": "slxId Контрагента"
  2204. }
  2205. },
  2206. "slxIdParent": {
  2207. "type": "string",
  2208. "description": "slxId Группы компаний"
  2209. },
  2210. "sourceSignal": {
  2211. "uniqueItems": true,
  2212. "type": "array",
  2213. "description": "Источник Сигнала",
  2214. "items": {
  2215. "$ref": "#/components/schemas/SourceSignal"
  2216. }
  2217. },
  2218. "existIncident": {
  2219. "type": "boolean",
  2220. "description": "Создано Событие на основе Сигнала или нет"
  2221. },
  2222. "gbl": {
  2223. "uniqueItems": true,
  2224. "type": "array",
  2225. "description": "ГБЛ",
  2226. "items": {
  2227. "$ref": "#/components/schemas/GblFilter"
  2228. }
  2229. }
  2230. },
  2231. "description": "Фильтр"
  2232. },
  2233. "SourceSignal": {
  2234. "type": "string",
  2235. "description": "Источник Сигнала",
  2236. "enum": [
  2237. "KANTOR",
  2238. "URKP_EXPIRATION"
  2239. ]
  2240. },
  2241. "IncidentDescriptionDto": {
  2242. "required": [
  2243. "code",
  2244. "id",
  2245. "name"
  2246. ],
  2247. "type": "object",
  2248. "properties": {
  2249. "id": {
  2250. "type": "integer",
  2251. "description": "ID события",
  2252. "format": "int32"
  2253. },
  2254. "code": {
  2255. "type": "string",
  2256. "description": "Код (номер) типа События"
  2257. },
  2258. "name": {
  2259. "type": "string",
  2260. "description": "Наименование типа события"
  2261. }
  2262. },
  2263. "description": "ID и описание событий, созданных на основе сигнала"
  2264. },
  2265. "PageSignalPageDto": {
  2266. "type": "object",
  2267. "properties": {
  2268. "totalElements": {
  2269. "type": "integer",
  2270. "format": "int64"
  2271. },
  2272. "totalPages": {
  2273. "type": "integer",
  2274. "format": "int32"
  2275. },
  2276. "size": {
  2277. "type": "integer",
  2278. "format": "int32"
  2279. },
  2280. "content": {
  2281. "type": "array",
  2282. "items": {
  2283. "$ref": "#/components/schemas/SignalPageDto"
  2284. }
  2285. },
  2286. "number": {
  2287. "type": "integer",
  2288. "format": "int32"
  2289. },
  2290. "sort": {
  2291. "$ref": "#/components/schemas/Sort"
  2292. },
  2293. "numberOfElements": {
  2294. "type": "integer",
  2295. "format": "int32"
  2296. },
  2297. "pageable": {
  2298. "$ref": "#/components/schemas/Pageable"
  2299. },
  2300. "first": {
  2301. "type": "boolean"
  2302. },
  2303. "last": {
  2304. "type": "boolean"
  2305. },
  2306. "empty": {
  2307. "type": "boolean"
  2308. }
  2309. }
  2310. },
  2311. "Pageable": {
  2312. "type": "object",
  2313. "properties": {
  2314. "offset": {
  2315. "type": "integer",
  2316. "format": "int64"
  2317. },
  2318. "sort": {
  2319. "$ref": "#/components/schemas/Sort"
  2320. },
  2321. "pageNumber": {
  2322. "type": "integer",
  2323. "format": "int32"
  2324. },
  2325. "pageSize": {
  2326. "type": "integer",
  2327. "format": "int32"
  2328. },
  2329. "paged": {
  2330. "type": "boolean"
  2331. },
  2332. "unpaged": {
  2333. "type": "boolean"
  2334. }
  2335. }
  2336. },
  2337. "SignalPageDto": {
  2338. "required": [
  2339. "active",
  2340. "calculationDate",
  2341. "fkrTypeId",
  2342. "id",
  2343. "slxId"
  2344. ],
  2345. "type": "object",
  2346. "properties": {
  2347. "id": {
  2348. "type": "integer",
  2349. "description": "ID Сигнала",
  2350. "format": "int32"
  2351. },
  2352. "name": {
  2353. "type": "string",
  2354. "description": "Наименование типа события"
  2355. },
  2356. "fkrTypeId": {
  2357. "type": "string",
  2358. "description": "Внутренний вид алгоритма КУРС"
  2359. },
  2360. "description": {
  2361. "type": "string",
  2362. "description": "Описание"
  2363. },
  2364. "calculationDate": {
  2365. "type": "string",
  2366. "description": "Актуальная дата расчета",
  2367. "format": "date"
  2368. },
  2369. "slxId": {
  2370. "type": "string",
  2371. "description": "Идентификатор клиента (SlxId)"
  2372. },
  2373. "contractorName": {
  2374. "type": "string",
  2375. "description": "Наименование клиента"
  2376. },
  2377. "active": {
  2378. "type": "boolean",
  2379. "description": "Актуальный статус сигнала: true - активный, false - не активный"
  2380. },
  2381. "incidentIds": {
  2382. "type": "array",
  2383. "description": "Список ID Событий, которые были созданы на основании данного Сигнала",
  2384. "items": {
  2385. "$ref": "#/components/schemas/IncidentDescriptionDto"
  2386. }
  2387. },
  2388. "sourceSignal": {
  2389. "$ref": "#/components/schemas/SourceSignal"
  2390. },
  2391. "status": {
  2392. "$ref": "#/components/schemas/SignalStatus"
  2393. },
  2394. "statusName": {
  2395. "type": "string",
  2396. "description": "Наименование статуса обработки Сигнала"
  2397. }
  2398. },
  2399. "description": "Упрощенный DTO для сущности 'Сигнал' для списка сигналов"
  2400. },
  2401. "SignalStatus": {
  2402. "type": "string",
  2403. "description": "Статус обработки Сигнала",
  2404. "enum": [
  2405. "CREATED",
  2406. "SIGNAL_NOT_ACTIVE",
  2407. "CONTRACTOR_NOT_FOUND",
  2408. "KANTOR_NOT_WL",
  2409. "KANTOR_NOT_ROLES",
  2410. "SPECIAL",
  2411. "KANTOR_NOT_1849",
  2412. "KANTOR_KMB",
  2413. "EBD_NOT_SLX_INN",
  2414. "EBD_KMB",
  2415. "ADDITIONAL_WARRANTY",
  2416. "MAPPING_NOT_FOUND",
  2417. "OTHER"
  2418. ]
  2419. },
  2420. "Sort": {
  2421. "type": "object",
  2422. "properties": {
  2423. "empty": {
  2424. "type": "boolean"
  2425. },
  2426. "unsorted": {
  2427. "type": "boolean"
  2428. },
  2429. "sorted": {
  2430. "type": "boolean"
  2431. }
  2432. }
  2433. },
  2434. "BankAction": {
  2435. "type": "string",
  2436. "description": "Действие Банка",
  2437. "enum": [
  2438. "NOTIFICATION",
  2439. "DECISION",
  2440. "SUSPENSION",
  2441. "RATING"
  2442. ]
  2443. },
  2444. "FkrStatus": {
  2445. "type": "string",
  2446. "description": "Статус ФКР",
  2447. "enum": [
  2448. "ACTIVE",
  2449. "INACTIVE"
  2450. ]
  2451. },
  2452. "IncidentSearchRequest": {
  2453. "type": "object",
  2454. "properties": {
  2455. "detectedDateFrom": {
  2456. "type": "string",
  2457. "description": "Дата выявления события от",
  2458. "format": "date"
  2459. },
  2460. "detectedDateTo": {
  2461. "type": "string",
  2462. "description": "Дата выявления события до",
  2463. "format": "date"
  2464. },
  2465. "id": {
  2466. "type": "integer",
  2467. "description": "ID события",
  2468. "format": "int32"
  2469. },
  2470. "groupTypeId": {
  2471. "uniqueItems": true,
  2472. "type": "array",
  2473. "description": "ID группы типов событий из справочника",
  2474. "items": {
  2475. "type": "integer",
  2476. "description": "ID группы типов событий из справочника",
  2477. "format": "int32"
  2478. }
  2479. },
  2480. "typeCode": {
  2481. "type": "string",
  2482. "description": "Код события из справочника"
  2483. },
  2484. "signalId": {
  2485. "type": "integer",
  2486. "description": "ID сигнала",
  2487. "format": "int32"
  2488. },
  2489. "slxId": {
  2490. "uniqueItems": true,
  2491. "type": "array",
  2492. "description": "slxId контрагента",
  2493. "items": {
  2494. "type": "string",
  2495. "description": "slxId контрагента"
  2496. }
  2497. },
  2498. "slxIdParent": {
  2499. "type": "string",
  2500. "description": "slxId группы компаний"
  2501. },
  2502. "fkrStatus": {
  2503. "$ref": "#/components/schemas/FkrStatus"
  2504. },
  2505. "bankAction": {
  2506. "uniqueItems": true,
  2507. "type": "array",
  2508. "description": "Действие Банка",
  2509. "items": {
  2510. "$ref": "#/components/schemas/BankAction"
  2511. }
  2512. },
  2513. "isAuto": {
  2514. "type": "boolean",
  2515. "description": "Способ создания события - автоматически или нет"
  2516. },
  2517. "sourceSignal": {
  2518. "uniqueItems": true,
  2519. "type": "array",
  2520. "description": "Источник сигнала",
  2521. "items": {
  2522. "$ref": "#/components/schemas/SourceSignal"
  2523. }
  2524. },
  2525. "gbl": {
  2526. "uniqueItems": true,
  2527. "type": "array",
  2528. "description": "ГБЛ",
  2529. "items": {
  2530. "$ref": "#/components/schemas/GblFilter"
  2531. }
  2532. },
  2533. "dealIdSuspended": {
  2534. "uniqueItems": true,
  2535. "type": "array",
  2536. "description": "ID приостановленной сделки",
  2537. "items": {
  2538. "type": "string",
  2539. "description": "ID приостановленной сделки",
  2540. "format": "uuid"
  2541. }
  2542. }
  2543. },
  2544. "description": "Фильтр"
  2545. },
  2546. "WithdrawReason": {
  2547. "type": "string",
  2548. "description": "Причина снятия",
  2549. "enum": [
  2550. "IDENTIFY_ERROR",
  2551. "ELIMINATION",
  2552. "ACTUALITY_LOSS"
  2553. ]
  2554. },
  2555. "WithdrawRequest": {
  2556. "required": [
  2557. "incidentId"
  2558. ],
  2559. "type": "object",
  2560. "properties": {
  2561. "incidentId": {
  2562. "type": "integer",
  2563. "description": "ID События",
  2564. "format": "int32"
  2565. },
  2566. "fkrReason": {
  2567. "$ref": "#/components/schemas/WithdrawReason"
  2568. },
  2569. "fkrWithdrawCondition": {
  2570. "type": "integer",
  2571. "description": "ID справочника условий устранения/утраты актуальности ФКР",
  2572. "format": "int32"
  2573. },
  2574. "fkrComment": {
  2575. "type": "string",
  2576. "description": "Комментарий к снятию ФКР"
  2577. },
  2578. "fkrDate": {
  2579. "type": "string",
  2580. "description": "Дата снятия ФКР",
  2581. "format": "date"
  2582. },
  2583. "fkrDepartment": {
  2584. "type": "string",
  2585. "description": "Департамент снятия ФКР"
  2586. },
  2587. "rvpsReason": {
  2588. "$ref": "#/components/schemas/WithdrawReason"
  2589. },
  2590. "rvpsComment": {
  2591. "type": "string",
  2592. "description": "Комментарий к снятию События РВПС"
  2593. }
  2594. },
  2595. "description": "DTO снятия события"
  2596. },
  2597. "ContractorRole": {
  2598. "type": "string",
  2599. "description": "Тип участия контрагента",
  2600. "enum": [
  2601. "BORROWER",
  2602. "APPLICANT",
  2603. "DRAWER",
  2604. "PRINCIPAL",
  2605. "ISSUER",
  2606. "CONTRACTOR",
  2607. "LIMIT",
  2608. "WARRANTY",
  2609. "GARANT",
  2610. "PLEDGER",
  2611. "IMPORTANT_COMPANY"
  2612. ]
  2613. },
  2614. "IncidentContractorRoleDto": {
  2615. "required": [
  2616. "contractorRole"
  2617. ],
  2618. "type": "object",
  2619. "properties": {
  2620. "contractorRole": {
  2621. "$ref": "#/components/schemas/ContractorRole"
  2622. },
  2623. "warrantyType": {
  2624. "$ref": "#/components/schemas/WarrantyType"
  2625. }
  2626. },
  2627. "description": "DTO для Типа участия Контрагента"
  2628. },
  2629. "IncidentPageDto": {
  2630. "required": [
  2631. "contractorName",
  2632. "contractorRoles",
  2633. "id",
  2634. "slxId",
  2635. "typeCode",
  2636. "typeName"
  2637. ],
  2638. "type": "object",
  2639. "properties": {
  2640. "id": {
  2641. "type": "integer",
  2642. "description": "ID События",
  2643. "format": "int32"
  2644. },
  2645. "typeCode": {
  2646. "type": "string",
  2647. "description": "Номер События из справочника"
  2648. },
  2649. "typeName": {
  2650. "type": "string",
  2651. "description": "Наименование События"
  2652. },
  2653. "slxId": {
  2654. "type": "string",
  2655. "description": "slxId Контрагента"
  2656. },
  2657. "contractorName": {
  2658. "type": "string",
  2659. "description": "Наименование Контрагента"
  2660. },
  2661. "contractorParentName": {
  2662. "type": "string",
  2663. "description": "Группа Компании, в которую входит Контрагент"
  2664. },
  2665. "contractorInn": {
  2666. "type": "string",
  2667. "description": "ИНН"
  2668. },
  2669. "contractorRoles": {
  2670. "uniqueItems": true,
  2671. "type": "array",
  2672. "description": "Тип участия Контрагента",
  2673. "items": {
  2674. "$ref": "#/components/schemas/IncidentContractorRoleDto"
  2675. }
  2676. },
  2677. "bankAction": {
  2678. "$ref": "#/components/schemas/BankAction"
  2679. },
  2680. "status": {
  2681. "$ref": "#/components/schemas/IncidentStatus"
  2682. },
  2683. "suspendDeal": {
  2684. "type": "boolean",
  2685. "description": "Признак приостановления сделок"
  2686. },
  2687. "suspendLimitLoan": {
  2688. "type": "boolean",
  2689. "description": "Признак приостановления лимита (кредитные и документарные операции)"
  2690. },
  2691. "suspendLimitInvest": {
  2692. "type": "boolean",
  2693. "description": "Признак приостановления инвестиционного лимита"
  2694. },
  2695. "detectedUserName": {
  2696. "type": "string",
  2697. "description": "ФИО пользователя, выявившего событие/Источник сигнала"
  2698. },
  2699. "detectedDate": {
  2700. "type": "string",
  2701. "description": "Дата и время создания События",
  2702. "format": "date"
  2703. },
  2704. "signalId": {
  2705. "type": "integer",
  2706. "description": "ID Сигнала, на основании которого создано событие",
  2707. "format": "int32"
  2708. },
  2709. "sourceSignal": {
  2710. "$ref": "#/components/schemas/SourceSignal"
  2711. },
  2712. "taskId": {
  2713. "type": "string",
  2714. "description": "ID задачи"
  2715. }
  2716. },
  2717. "description": "Упрощенный DTO для сущности 'Событие' для списка событий"
  2718. },
  2719. "IncidentStatus": {
  2720. "type": "string",
  2721. "description": "Статус События",
  2722. "enum": [
  2723. "ACCEPT_REQUIRED",
  2724. "CORRECTION",
  2725. "ACCEPTED",
  2726. "WRONG"
  2727. ]
  2728. },
  2729. "PageIncidentPageDto": {
  2730. "type": "object",
  2731. "properties": {
  2732. "totalElements": {
  2733. "type": "integer",
  2734. "format": "int64"
  2735. },
  2736. "totalPages": {
  2737. "type": "integer",
  2738. "format": "int32"
  2739. },
  2740. "size": {
  2741. "type": "integer",
  2742. "format": "int32"
  2743. },
  2744. "content": {
  2745. "type": "array",
  2746. "items": {
  2747. "$ref": "#/components/schemas/IncidentPageDto"
  2748. }
  2749. },
  2750. "number": {
  2751. "type": "integer",
  2752. "format": "int32"
  2753. },
  2754. "sort": {
  2755. "$ref": "#/components/schemas/Sort"
  2756. },
  2757. "numberOfElements": {
  2758. "type": "integer",
  2759. "format": "int32"
  2760. },
  2761. "pageable": {
  2762. "$ref": "#/components/schemas/Pageable"
  2763. },
  2764. "first": {
  2765. "type": "boolean"
  2766. },
  2767. "last": {
  2768. "type": "boolean"
  2769. },
  2770. "empty": {
  2771. "type": "boolean"
  2772. }
  2773. }
  2774. },
  2775. "WarrantyType": {
  2776. "type": "string",
  2777. "description": "Тип обеспечения",
  2778. "enum": [
  2779. "MAIN",
  2780. "EXTRA"
  2781. ]
  2782. },
  2783. "Formulation": {
  2784. "type": "string",
  2785. "description": "Формулировка",
  2786. "enum": [
  2787. "STANDARD",
  2788. "INDIVIDUAL"
  2789. ]
  2790. },
  2791. "IncidentDealDto": {
  2792. "required": [
  2793. "dealId",
  2794. "fkrInKod",
  2795. "suspended"
  2796. ],
  2797. "type": "object",
  2798. "properties": {
  2799. "dealId": {
  2800. "type": "string",
  2801. "description": "ID Сделки",
  2802. "format": "uuid"
  2803. },
  2804. "fkrInKod": {
  2805. "type": "boolean",
  2806. "description": "ФКР в КОД"
  2807. },
  2808. "suspended": {
  2809. "type": "boolean",
  2810. "description": "Приостановление"
  2811. }
  2812. },
  2813. "description": "DTO для сущности 'Сделка'"
  2814. },
  2815. "IncidentEditRequest": {
  2816. "required": [
  2817. "bankAction",
  2818. "contractorRoles",
  2819. "decisionNotRequired",
  2820. "description",
  2821. "formulation",
  2822. "id"
  2823. ],
  2824. "type": "object",
  2825. "properties": {
  2826. "id": {
  2827. "type": "integer",
  2828. "description": "ID События",
  2829. "format": "int32"
  2830. },
  2831. "contractorRoles": {
  2832. "uniqueItems": true,
  2833. "type": "array",
  2834. "description": "Тип участия Контрагента",
  2835. "items": {
  2836. "$ref": "#/components/schemas/IncidentContractorRoleDto"
  2837. }
  2838. },
  2839. "bankAction": {
  2840. "$ref": "#/components/schemas/BankAction"
  2841. },
  2842. "suspendDeal": {
  2843. "type": "boolean",
  2844. "description": "Признак приостановления сделок"
  2845. },
  2846. "suspendLimitLoan": {
  2847. "type": "boolean",
  2848. "description": "Признак приостановления лимита (кредитные и документарные операции)"
  2849. },
  2850. "suspendLimitInvest": {
  2851. "type": "boolean",
  2852. "description": "Признак приостановления инвестиционного лимита"
  2853. },
  2854. "deals": {
  2855. "uniqueItems": true,
  2856. "type": "array",
  2857. "description": "Список сделок",
  2858. "items": {
  2859. "$ref": "#/components/schemas/IncidentDealDto"
  2860. }
  2861. },
  2862. "description": {
  2863. "type": "string",
  2864. "description": "Описание События"
  2865. },
  2866. "comment": {
  2867. "type": "string",
  2868. "description": "Примечание"
  2869. },
  2870. "decisionNotRequired": {
  2871. "type": "boolean",
  2872. "description": "Не требует принятия решения"
  2873. },
  2874. "formulation": {
  2875. "$ref": "#/components/schemas/Formulation"
  2876. },
  2877. "sum": {
  2878. "type": "number",
  2879. "description": "Сумма просрочки",
  2880. "format": "double"
  2881. },
  2882. "currency": {
  2883. "type": "string",
  2884. "description": "Валюта просрочки"
  2885. }
  2886. },
  2887. "description": "DTO события"
  2888. },
  2889. "ContractorRoleGroup": {
  2890. "type": "string",
  2891. "description": "Группа участия/роли контрагента",
  2892. "enum": [
  2893. "BORROWER",
  2894. "WARRANTY",
  2895. "OTHER"
  2896. ]
  2897. },
  2898. "IncidentCreateRequest": {
  2899. "required": [
  2900. "contractorRoleGroup",
  2901. "contractorRoles",
  2902. "decisionNotRequired",
  2903. "description",
  2904. "formulation",
  2905. "slxId",
  2906. "typeIncidentId"
  2907. ],
  2908. "type": "object",
  2909. "properties": {
  2910. "contractorRoleGroup": {
  2911. "$ref": "#/components/schemas/ContractorRoleGroup"
  2912. },
  2913. "contractorRoles": {
  2914. "uniqueItems": true,
  2915. "type": "array",
  2916. "description": "Тип участия Контрагента",
  2917. "items": {
  2918. "$ref": "#/components/schemas/IncidentContractorRoleDto"
  2919. }
  2920. },
  2921. "slxId": {
  2922. "type": "string",
  2923. "description": "SlxId контрагента"
  2924. },
  2925. "typeIncidentId": {
  2926. "type": "integer",
  2927. "description": "ID типа События из справочника",
  2928. "format": "int32"
  2929. },
  2930. "deals": {
  2931. "uniqueItems": true,
  2932. "type": "array",
  2933. "description": "Список сделок",
  2934. "items": {
  2935. "$ref": "#/components/schemas/IncidentDealDto"
  2936. }
  2937. },
  2938. "bankAction": {
  2939. "$ref": "#/components/schemas/BankAction"
  2940. },
  2941. "suspendDeal": {
  2942. "type": "boolean",
  2943. "description": "Признак приостановления сделок"
  2944. },
  2945. "suspendLimitLoan": {
  2946. "type": "boolean",
  2947. "description": "Признак приостановления лимита (кредитные и документарные операции)"
  2948. },
  2949. "suspendLimitInvest": {
  2950. "type": "boolean",
  2951. "description": "Признак приостановления инвестиционного лимита"
  2952. },
  2953. "description": {
  2954. "type": "string",
  2955. "description": "Описание События"
  2956. },
  2957. "comment": {
  2958. "type": "string",
  2959. "description": "Примечание"
  2960. },
  2961. "decisionNotRequired": {
  2962. "type": "boolean",
  2963. "description": "Не требует принятия решения"
  2964. },
  2965. "formulation": {
  2966. "$ref": "#/components/schemas/Formulation"
  2967. },
  2968. "sum": {
  2969. "type": "number",
  2970. "description": "Сумма просрочки",
  2971. "format": "double"
  2972. },
  2973. "currency": {
  2974. "type": "string",
  2975. "description": "Валюта просрочки"
  2976. }
  2977. },
  2978. "description": "DTO события"
  2979. },
  2980. "SuspensionCancel": {
  2981. "type": "string",
  2982. "description": "Отмена приостановления",
  2983. "enum": [
  2984. "NO",
  2985. "AUTO",
  2986. "DECISION"
  2987. ]
  2988. },
  2989. "WithdrawConditionDto": {
  2990. "required": [
  2991. "id",
  2992. "name",
  2993. "suspensionCancel"
  2994. ],
  2995. "type": "object",
  2996. "properties": {
  2997. "id": {
  2998. "type": "integer",
  2999. "description": "ID",
  3000. "format": "int32"
  3001. },
  3002. "name": {
  3003. "type": "string",
  3004. "description": "Наименование"
  3005. },
  3006. "suspensionCancel": {
  3007. "$ref": "#/components/schemas/SuspensionCancel"
  3008. }
  3009. },
  3010. "description": "DTO справочника условий устранения/утраты актуальности ФКР"
  3011. },
  3012. "GroupTypeSignalKind": {
  3013. "type": "string",
  3014. "description": "Вид Группы Типов Сигнала",
  3015. "enum": [
  3016. "KANTOR",
  3017. "LOGICAL"
  3018. ]
  3019. },
  3020. "GroupTypeSignalDto": {
  3021. "required": [
  3022. "id",
  3023. "kind",
  3024. "name"
  3025. ],
  3026. "type": "object",
  3027. "properties": {
  3028. "id": {
  3029. "type": "integer",
  3030. "description": "Идентификатор Группы Типов Сигнала",
  3031. "format": "int32"
  3032. },
  3033. "kind": {
  3034. "$ref": "#/components/schemas/GroupTypeSignalKind"
  3035. },
  3036. "name": {
  3037. "type": "string",
  3038. "description": "Наименование Группы Типов Сигнала"
  3039. }
  3040. },
  3041. "description": "DTO для справочника 'Группы Типов Сигнала'"
  3042. },
  3043. "Aips1ParamDto": {
  3044. "type": "object",
  3045. "properties": {
  3046. "codeBefore": {
  3047. "type": "string",
  3048. "description": "Код до изменения"
  3049. },
  3050. "code": {
  3051. "type": "string",
  3052. "description": "Код после изменения"
  3053. },
  3054. "bankAction": {
  3055. "$ref": "#/components/schemas/BankAction"
  3056. },
  3057. "suspensionCancel": {
  3058. "$ref": "#/components/schemas/SuspensionCancel"
  3059. },
  3060. "dayCount": {
  3061. "type": "integer",
  3062. "description": "Количество дней после которых должны поменяться аттрибуты события",
  3063. "format": "int32"
  3064. },
  3065. "dayType": {
  3066. "type": "boolean",
  3067. "description": "Вид дней, false-календарные, true-рабочие"
  3068. }
  3069. },
  3070. "description": "DTO для параметров АИПС1"
  3071. },
  3072. "TypeIncidentDto": {
  3073. "required": [
  3074. "code",
  3075. "contractorRoles",
  3076. "id",
  3077. "name"
  3078. ],
  3079. "type": "object",
  3080. "properties": {
  3081. "id": {
  3082. "type": "integer",
  3083. "description": "Идентификатор типа События",
  3084. "format": "int32"
  3085. },
  3086. "code": {
  3087. "type": "string",
  3088. "description": "Код (номер) типа События"
  3089. },
  3090. "name": {
  3091. "type": "string",
  3092. "description": "Наименование типа События"
  3093. },
  3094. "description": {
  3095. "type": "string",
  3096. "description": "Описание типа События"
  3097. },
  3098. "fkr": {
  3099. "type": "boolean",
  3100. "description": "Признак ФКР"
  3101. },
  3102. "overdue": {
  3103. "type": "boolean",
  3104. "description": "Наличие суммы просрочки"
  3105. },
  3106. "removable": {
  3107. "type": "boolean",
  3108. "description": "Признак устранимости"
  3109. },
  3110. "byDecision": {
  3111. "type": "boolean",
  3112. "description": "По решению УО"
  3113. },
  3114. "rvps": {
  3115. "type": "boolean",
  3116. "description": "Признак события РВПС"
  3117. },
  3118. "bankAction": {
  3119. "$ref": "#/components/schemas/BankAction"
  3120. },
  3121. "contractorRoles": {
  3122. "type": "array",
  3123. "description": "Список типов участия",
  3124. "items": {
  3125. "$ref": "#/components/schemas/ContractorRole"
  3126. }
  3127. },
  3128. "eliminationConditions": {
  3129. "uniqueItems": true,
  3130. "type": "array",
  3131. "description": "Причины устранения ФКР",
  3132. "items": {
  3133. "$ref": "#/components/schemas/WithdrawConditionDto"
  3134. }
  3135. },
  3136. "actualityLossConditions": {
  3137. "uniqueItems": true,
  3138. "type": "array",
  3139. "description": "Причины утраты актуальности ФКР",
  3140. "items": {
  3141. "$ref": "#/components/schemas/WithdrawConditionDto"
  3142. }
  3143. },
  3144. "aips1Param": {
  3145. "$ref": "#/components/schemas/Aips1ParamDto"
  3146. }
  3147. },
  3148. "description": "DTO для справочника 'Типы Событий'"
  3149. },
  3150. "GroupTypeIncidentKind": {
  3151. "type": "string",
  3152. "description": "Вид Группы Типов События",
  3153. "enum": [
  3154. "MAIN",
  3155. "LOGICAL"
  3156. ]
  3157. },
  3158. "GroupTypeIncidentDto": {
  3159. "required": [
  3160. "code",
  3161. "id",
  3162. "kind",
  3163. "name",
  3164. "typeIncidents"
  3165. ],
  3166. "type": "object",
  3167. "properties": {
  3168. "id": {
  3169. "type": "integer",
  3170. "description": "Идентификатор Группы Типов События",
  3171. "format": "int32"
  3172. },
  3173. "kind": {
  3174. "$ref": "#/components/schemas/GroupTypeIncidentKind"
  3175. },
  3176. "name": {
  3177. "type": "string",
  3178. "description": "Наименование Группы Типов События"
  3179. },
  3180. "code": {
  3181. "type": "integer",
  3182. "description": "Код Группы Типов События",
  3183. "format": "int32"
  3184. },
  3185. "typeIncidents": {
  3186. "type": "array",
  3187. "description": "Список Типов Событий",
  3188. "items": {
  3189. "$ref": "#/components/schemas/SimpleTypeIncidentDto"
  3190. }
  3191. }
  3192. },
  3193. "description": "DTO для справочника 'Группа Типов События'"
  3194. },
  3195. "SimpleTypeIncidentDto": {
  3196. "required": [
  3197. "code",
  3198. "id",
  3199. "name"
  3200. ],
  3201. "type": "object",
  3202. "properties": {
  3203. "id": {
  3204. "type": "integer",
  3205. "description": "Идентификатор Типа События",
  3206. "format": "int32"
  3207. },
  3208. "code": {
  3209. "type": "string",
  3210. "description": "Код (номер) Типа События"
  3211. },
  3212. "name": {
  3213. "type": "string",
  3214. "description": "Наименование Типа События"
  3215. }
  3216. },
  3217. "description": "DTO для упрощенной сущности справочника 'Типы Событий'"
  3218. },
  3219. "SignalDto": {
  3220. "required": [
  3221. "active",
  3222. "calculationDate",
  3223. "fkrTypeId",
  3224. "id",
  3225. "slxId"
  3226. ],
  3227. "type": "object",
  3228. "properties": {
  3229. "id": {
  3230. "type": "integer",
  3231. "description": "ID Сигнала",
  3232. "format": "int32"
  3233. },
  3234. "fkrTypeId": {
  3235. "type": "string",
  3236. "description": "Внутренний вид алгоритма КУРС"
  3237. },
  3238. "calculationDate": {
  3239. "type": "string",
  3240. "description": "Актуальная дата расчета",
  3241. "format": "date"
  3242. },
  3243. "slxId": {
  3244. "type": "string",
  3245. "description": "Идентификатор клиента (SlxId)"
  3246. },
  3247. "containerAttrs": {
  3248. "type": "object",
  3249. "additionalProperties": {
  3250. "type": "object",
  3251. "description": "Атрибуты результата расчета алгоритма (дополнительные)"
  3252. },
  3253. "description": "Атрибуты результата расчета алгоритма (дополнительные)"
  3254. },
  3255. "description": {
  3256. "type": "string",
  3257. "description": "Описание"
  3258. },
  3259. "active": {
  3260. "type": "boolean",
  3261. "description": "Актуальный статус сигнала: true - активный, false - не активный"
  3262. },
  3263. "incidentIds": {
  3264. "uniqueItems": true,
  3265. "type": "array",
  3266. "description": "Список ID Событий, которые были созданы на основании данного Сигнала",
  3267. "items": {
  3268. "type": "integer",
  3269. "description": "Список ID Событий, которые были созданы на основании данного Сигнала",
  3270. "format": "int32"
  3271. }
  3272. },
  3273. "sourceSignal": {
  3274. "$ref": "#/components/schemas/SourceSignal"
  3275. },
  3276. "status": {
  3277. "$ref": "#/components/schemas/SignalStatus"
  3278. },
  3279. "statusText": {
  3280. "type": "string",
  3281. "description": "Наименование статуса обработки Сигнала"
  3282. }
  3283. },
  3284. "description": "DTO для сущности 'Сигнал'"
  3285. },
  3286. "CurrencyDto": {
  3287. "required": [
  3288. "code"
  3289. ],
  3290. "type": "object",
  3291. "properties": {
  3292. "code": {
  3293. "type": "string",
  3294. "description": "Код валюты"
  3295. },
  3296. "description": {
  3297. "type": "string",
  3298. "description": "Признак активности"
  3299. }
  3300. },
  3301. "description": "DTO для справочника валют"
  3302. },
  3303. "IncidentDto": {
  3304. "required": [
  3305. "contractorRoleGroup",
  3306. "contractorRoles",
  3307. "decisionNotRequired",
  3308. "description",
  3309. "formulation",
  3310. "id",
  3311. "slxId",
  3312. "typeIncident"
  3313. ],
  3314. "type": "object",
  3315. "properties": {
  3316. "id": {
  3317. "type": "integer",
  3318. "description": "ID События",
  3319. "format": "int32"
  3320. },
  3321. "contractorRoleGroup": {
  3322. "$ref": "#/components/schemas/ContractorRoleGroup"
  3323. },
  3324. "contractorRoles": {
  3325. "uniqueItems": true,
  3326. "type": "array",
  3327. "description": "Тип участия Контрагента",
  3328. "items": {
  3329. "$ref": "#/components/schemas/IncidentContractorRoleDto"
  3330. }
  3331. },
  3332. "deals": {
  3333. "uniqueItems": true,
  3334. "type": "array",
  3335. "description": "Список сделок",
  3336. "items": {
  3337. "$ref": "#/components/schemas/IncidentDealDto"
  3338. }
  3339. },
  3340. "slxId": {
  3341. "type": "string",
  3342. "description": "slxId Контрагента"
  3343. },
  3344. "signal": {
  3345. "$ref": "#/components/schemas/SignalDto"
  3346. },
  3347. "typeIncident": {
  3348. "$ref": "#/components/schemas/TypeIncidentDto"
  3349. },
  3350. "detectedDepartmentName": {
  3351. "type": "string",
  3352. "description": "Название подразделения/департамента, выявившего Событие"
  3353. },
  3354. "status": {
  3355. "$ref": "#/components/schemas/IncidentStatus"
  3356. },
  3357. "fkrStatus": {
  3358. "$ref": "#/components/schemas/FkrStatus"
  3359. },
  3360. "bankAction": {
  3361. "$ref": "#/components/schemas/BankAction"
  3362. },
  3363. "suspendDeal": {
  3364. "type": "boolean",
  3365. "description": "Признак приостановления сделок"
  3366. },
  3367. "suspendLimitLoan": {
  3368. "type": "boolean",
  3369. "description": "Признак приостановления лимита (кредитные и документарные операции)"
  3370. },
  3371. "suspendLimitInvest": {
  3372. "type": "boolean",
  3373. "description": "Признак приостановления инвестиционного лимита"
  3374. },
  3375. "description": {
  3376. "type": "string",
  3377. "description": "Описание События"
  3378. },
  3379. "comment": {
  3380. "type": "string",
  3381. "description": "Примечание"
  3382. },
  3383. "decisionNotRequired": {
  3384. "type": "boolean",
  3385. "description": "Не требует принятия решения"
  3386. },
  3387. "formulation": {
  3388. "$ref": "#/components/schemas/Formulation"
  3389. },
  3390. "sum": {
  3391. "type": "number",
  3392. "description": "Сумма просрочки",
  3393. "format": "double"
  3394. },
  3395. "currency": {
  3396. "$ref": "#/components/schemas/CurrencyDto"
  3397. },
  3398. "withdraw": {
  3399. "$ref": "#/components/schemas/WithdrawDto"
  3400. },
  3401. "aips1": {
  3402. "type": "boolean",
  3403. "description": "Выполнялся aips1 или нет, false - нет, true - да"
  3404. },
  3405. "detectedUserName": {
  3406. "type": "string",
  3407. "description": "ФИО пользователя, выявившего событие/Источник сигнала"
  3408. },
  3409. "detectedDate": {
  3410. "type": "string",
  3411. "description": "Дата выявления События",
  3412. "format": "date"
  3413. },
  3414. "createdDate": {
  3415. "type": "string",
  3416. "description": "Дата и время создания События",
  3417. "format": "date-time"
  3418. },
  3419. "modifiedDate": {
  3420. "type": "string",
  3421. "description": "Дата и время изменения События",
  3422. "format": "date-time"
  3423. }
  3424. },
  3425. "description": "DTO для сущности 'Событие'"
  3426. },
  3427. "WithdrawDto": {
  3428. "type": "object",
  3429. "properties": {
  3430. "fkrReason": {
  3431. "$ref": "#/components/schemas/WithdrawReason"
  3432. },
  3433. "fkrCondition": {
  3434. "$ref": "#/components/schemas/WithdrawConditionDto"
  3435. },
  3436. "fkrComment": {
  3437. "type": "string",
  3438. "description": "Комментарий к снятию ФКР"
  3439. },
  3440. "fkrDate": {
  3441. "type": "string",
  3442. "description": "Дата снятия ФКР",
  3443. "format": "date"
  3444. },
  3445. "fkrDepartment": {
  3446. "type": "integer",
  3447. "description": "Департамент снятия ФКР",
  3448. "format": "int32"
  3449. },
  3450. "rvpsReason": {
  3451. "$ref": "#/components/schemas/WithdrawReason"
  3452. },
  3453. "rvpsComment": {
  3454. "type": "string",
  3455. "description": "Комментарий к снятию События РВПС"
  3456. }
  3457. },
  3458. "description": "DTO с параметрами снятия События"
  3459. },
  3460. "EntityLogDto": {
  3461. "required": [
  3462. "id",
  3463. "operation"
  3464. ],
  3465. "type": "object",
  3466. "properties": {
  3467. "id": {
  3468. "type": "integer",
  3469. "description": "ID",
  3470. "format": "int64"
  3471. },
  3472. "operation": {
  3473. "$ref": "#/components/schemas/EntityLogOperationObject"
  3474. },
  3475. "operationDescription": {
  3476. "type": "string",
  3477. "description": "Описание операции"
  3478. },
  3479. "dataHistory": {
  3480. "type": "object",
  3481. "properties": {
  3482. "valueType": {
  3483. "type": "string",
  3484. "enum": [
  3485. "ARRAY",
  3486. "OBJECT",
  3487. "STRING",
  3488. "NUMBER",
  3489. "TRUE",
  3490. "FALSE",
  3491. "NULL"
  3492. ]
  3493. }
  3494. },
  3495. "description": "Какие атрибуты были изменены у объекта (с какого на какое значение)"
  3496. },
  3497. "createdBy": {
  3498. "type": "string",
  3499. "description": "Пользователь, выполнивший изменения"
  3500. },
  3501. "createdDate": {
  3502. "type": "string",
  3503. "description": "Дата и время внесения изменений",
  3504. "format": "date-time"
  3505. }
  3506. },
  3507. "description": "История изменения объекта"
  3508. },
  3509. "EntityLogOperationObject": {
  3510. "type": "object",
  3511. "properties": {
  3512. "description": {
  3513. "type": "string"
  3514. }
  3515. },
  3516. "description": "Тип операции, которую выполнили"
  3517. },
  3518. "HierarchyType": {
  3519. "type": "string",
  3520. "description": "Справочник Типов Контрагентов в иерархии",
  3521. "enum": [
  3522. "CLIENT",
  3523. "GROUP",
  3524. "HOLDING",
  3525. "BRANCH"
  3526. ]
  3527. },
  3528. "IncidentGroupTypeIncidentDto": {
  3529. "required": [
  3530. "groupCode",
  3531. "groupId",
  3532. "groupName",
  3533. "incidentCount",
  3534. "incidentList"
  3535. ],
  3536. "type": "object",
  3537. "properties": {
  3538. "groupId": {
  3539. "type": "integer",
  3540. "description": "ID группы типов событий",
  3541. "format": "int32"
  3542. },
  3543. "groupName": {
  3544. "type": "string",
  3545. "description": "Наименование группы типов событий"
  3546. },
  3547. "groupCode": {
  3548. "type": "integer",
  3549. "description": "Код группы типов событий",
  3550. "format": "int32"
  3551. },
  3552. "incidentCount": {
  3553. "type": "integer",
  3554. "description": "Количество Событий в группе",
  3555. "format": "int32"
  3556. },
  3557. "incidentList": {
  3558. "type": "array",
  3559. "description": "Список событий в группе",
  3560. "items": {
  3561. "$ref": "#/components/schemas/IncidentPageDto"
  3562. }
  3563. }
  3564. },
  3565. "description": "DTO для сгруппированного списка событий по группе типов событий на КК'"
  3566. },
  3567. "IncidentGroupBankActionDto": {
  3568. "required": [
  3569. "bankAction",
  3570. "incidentCount",
  3571. "incidentList"
  3572. ],
  3573. "type": "object",
  3574. "properties": {
  3575. "bankAction": {
  3576. "$ref": "#/components/schemas/BankAction"
  3577. },
  3578. "incidentCount": {
  3579. "type": "integer",
  3580. "description": "Количество Событий по действию Банка",
  3581. "format": "int32"
  3582. },
  3583. "incidentList": {
  3584. "type": "array",
  3585. "description": "Список событий по действию Банка",
  3586. "items": {
  3587. "$ref": "#/components/schemas/IncidentPageDto"
  3588. }
  3589. }
  3590. },
  3591. "description": "DTO для сгруппированного списка событий по действию Банка на КК'"
  3592. },
  3593. "FkrCountDto": {
  3594. "required": [
  3595. "slxId"
  3596. ],
  3597. "type": "object",
  3598. "properties": {
  3599. "slxId": {
  3600. "type": "string",
  3601. "description": "SlxId Клиента/Контрагента"
  3602. },
  3603. "activeFkrTypeCounts": {
  3604. "type": "array",
  3605. "description": "Количество События с действующим ФКР по Действиям Банка",
  3606. "items": {
  3607. "$ref": "#/components/schemas/FkrTypeCount"
  3608. }
  3609. },
  3610. "activeFkrCount": {
  3611. "type": "integer",
  3612. "description": "Количество Событий с действующим ФКР",
  3613. "format": "int32"
  3614. }
  3615. },
  3616. "description": "Количество ФКР для Контрагента"
  3617. },
  3618. "FkrTypeCount": {
  3619. "type": "object",
  3620. "properties": {
  3621. "fkrType": {
  3622. "$ref": "#/components/schemas/BankAction"
  3623. },
  3624. "fkrCount": {
  3625. "type": "integer",
  3626. "description": "Количество ФКР",
  3627. "format": "int32"
  3628. }
  3629. },
  3630. "description": "Количество ФКР для Действия Банка"
  3631. }
  3632. },
  3633. "securitySchemes": {
  3634. "bearer-auth": {
  3635. "type": "http",
  3636. "scheme": "bearer",
  3637. "bearerFormat": "JWT"
  3638. }
  3639. }
  3640. }
  3641. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement