issue.json 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682
  1. {
  2. "Issue": {
  3. "type": "object",
  4. "required": [
  5. "lastSeen",
  6. "numComments",
  7. "userCount",
  8. "culprit",
  9. "title",
  10. "id",
  11. "assignedTo",
  12. "logger",
  13. "stats",
  14. "type",
  15. "annotations",
  16. "metadata",
  17. "status",
  18. "subscriptionDetails",
  19. "isPublic",
  20. "hasSeen",
  21. "shortId",
  22. "shareId",
  23. "firstSeen",
  24. "count",
  25. "permalink",
  26. "level",
  27. "isSubscribed",
  28. "isBookmarked",
  29. "project",
  30. "statusDetails"
  31. ],
  32. "properties": {
  33. "annotations": {
  34. "type": "array",
  35. "items": {
  36. "type": "string"
  37. }
  38. },
  39. "assignedTo": {
  40. "type": "object",
  41. "nullable": true
  42. },
  43. "count": {
  44. "type": "string"
  45. },
  46. "culprit": {
  47. "type": "string"
  48. },
  49. "firstSeen": {
  50. "type": "string"
  51. },
  52. "hasSeen": {
  53. "type": "boolean"
  54. },
  55. "id": {
  56. "type": "string"
  57. },
  58. "isBookmarked": {
  59. "type": "boolean"
  60. },
  61. "isPublic": {
  62. "type": "boolean"
  63. },
  64. "isSubscribed": {
  65. "type": "boolean"
  66. },
  67. "lastSeen": {
  68. "type": "string"
  69. },
  70. "level": {
  71. "type": "string"
  72. },
  73. "logger": {
  74. "type": "string",
  75. "nullable": true
  76. },
  77. "metadata": {
  78. "oneOf": [
  79. {
  80. "type": "object",
  81. "required": [
  82. "filename",
  83. "type",
  84. "value"
  85. ],
  86. "properties": {
  87. "filename": {
  88. "type": "string"
  89. },
  90. "type": {
  91. "type": "string"
  92. },
  93. "value": {
  94. "type": "string"
  95. }
  96. }
  97. },
  98. {
  99. "type": "object",
  100. "required": [
  101. "title"
  102. ],
  103. "properties": {
  104. "title": {
  105. "type": "string"
  106. }
  107. }
  108. }
  109. ]
  110. },
  111. "numComments": {
  112. "type": "integer"
  113. },
  114. "permalink": {
  115. "type": "string"
  116. },
  117. "project": {
  118. "type": "object",
  119. "properties": {
  120. "id": {
  121. "type": "string"
  122. },
  123. "name": {
  124. "type": "string"
  125. },
  126. "slug": {
  127. "type": "string"
  128. }
  129. }
  130. },
  131. "shareId": {
  132. "type": "string",
  133. "nullable": true
  134. },
  135. "shortId": {
  136. "type": "string"
  137. },
  138. "stats": {
  139. "type": "object",
  140. "properties": {
  141. "24h": {
  142. "type": "array",
  143. "items": {
  144. "type": "array",
  145. "items": {
  146. "type": "number"
  147. }
  148. }
  149. }
  150. }
  151. },
  152. "status": {
  153. "type": "string",
  154. "enum": [
  155. "resolved",
  156. "unresolved",
  157. "ignored"
  158. ]
  159. },
  160. "statusDetails": {
  161. "type": "object"
  162. },
  163. "subscriptionDetails": {
  164. "type": "object",
  165. "nullable": true
  166. },
  167. "title": {
  168. "type": "string"
  169. },
  170. "type": {
  171. "type": "string"
  172. },
  173. "userCount": {
  174. "type": "integer"
  175. }
  176. }
  177. },
  178. "IssueDetailed": {
  179. "type": "object",
  180. "required": [
  181. "activity",
  182. "annotations",
  183. "assignedTo",
  184. "count",
  185. "culprit",
  186. "firstRelease",
  187. "firstSeen",
  188. "hasSeen",
  189. "id",
  190. "isBookmarked",
  191. "isPublic",
  192. "isSubscribed",
  193. "lastRelease",
  194. "lastSeen",
  195. "level",
  196. "logger",
  197. "metadata",
  198. "numComments",
  199. "participants",
  200. "permalink",
  201. "pluginActions",
  202. "pluginContexts",
  203. "pluginIssues",
  204. "project",
  205. "seenBy",
  206. "shareId",
  207. "shortId",
  208. "stats",
  209. "status",
  210. "statusDetails",
  211. "subscriptionDetails",
  212. "tags",
  213. "title",
  214. "type",
  215. "userCount",
  216. "userReportCount"
  217. ],
  218. "properties": {
  219. "activity": {
  220. "type": "array",
  221. "items": {
  222. "type": "object",
  223. "properties": {
  224. "data": {
  225. "type": "object"
  226. },
  227. "dateCreated": {
  228. "type": "string"
  229. },
  230. "id": {
  231. "type": "string"
  232. },
  233. "type": {
  234. "type": "string"
  235. },
  236. "user": {
  237. "type": "object",
  238. "nullable": true
  239. }
  240. }
  241. }
  242. },
  243. "annotations": {
  244. "type": "array",
  245. "items": {
  246. "type": "string"
  247. }
  248. },
  249. "assignedTo": {
  250. "type": "object",
  251. "nullable": true
  252. },
  253. "count": {
  254. "type": "string"
  255. },
  256. "culprit": {
  257. "type": "string"
  258. },
  259. "firstRelease": {
  260. "type": "object",
  261. "nullable": true,
  262. "properties": {
  263. "authors": {
  264. "type": "array",
  265. "items": {
  266. "type": "string"
  267. }
  268. },
  269. "commitCount": {
  270. "type": "integer"
  271. },
  272. "data": {
  273. "type": "object",
  274. "nullable": true
  275. },
  276. "dateCreated": {
  277. "type": "string"
  278. },
  279. "dateReleased": {
  280. "type": "string",
  281. "nullable": true
  282. },
  283. "deployCount": {
  284. "type": "integer"
  285. },
  286. "firstEvent": {
  287. "type": "string"
  288. },
  289. "lastCommit": {
  290. "type": "string",
  291. "nullable": true
  292. },
  293. "lastDeploy": {
  294. "type": "string",
  295. "nullable": true
  296. },
  297. "lastEvent": {
  298. "type": "string"
  299. },
  300. "newGroups": {
  301. "type": "integer"
  302. },
  303. "owner": {
  304. "type": "string",
  305. "nullable": true
  306. },
  307. "projects": {
  308. "type": "array",
  309. "items": {
  310. "type": "object",
  311. "properties": {
  312. "name": {
  313. "type": "string"
  314. },
  315. "slug": {
  316. "type": "string"
  317. }
  318. }
  319. }
  320. },
  321. "ref": {
  322. "type": "string",
  323. "nullable": true
  324. },
  325. "shortVersion": {
  326. "type": "string"
  327. },
  328. "url": {
  329. "type": "string",
  330. "nullable": true
  331. },
  332. "version": {
  333. "type": "string"
  334. }
  335. }
  336. },
  337. "firstSeen": {
  338. "type": "string"
  339. },
  340. "hasSeen": {
  341. "type": "boolean"
  342. },
  343. "id": {
  344. "type": "string"
  345. },
  346. "isBookmarked": {
  347. "type": "boolean"
  348. },
  349. "isPublic": {
  350. "type": "boolean"
  351. },
  352. "isSubscribed": {
  353. "type": "boolean"
  354. },
  355. "lastRelease": {
  356. "type": "object",
  357. "nullable": true
  358. },
  359. "lastSeen": {
  360. "type": "string"
  361. },
  362. "level": {
  363. "type": "string"
  364. },
  365. "logger": {
  366. "type": "string",
  367. "nullable": true
  368. },
  369. "metadata": {
  370. "oneOf": [
  371. {
  372. "type": "object",
  373. "required": [
  374. "filename",
  375. "type",
  376. "value"
  377. ],
  378. "properties": {
  379. "filename": {
  380. "type": "string"
  381. },
  382. "type": {
  383. "type": "string"
  384. },
  385. "value": {
  386. "type": "string"
  387. }
  388. }
  389. },
  390. {
  391. "type": "object",
  392. "required": [
  393. "title"
  394. ],
  395. "properties": {
  396. "title": {
  397. "type": "string"
  398. }
  399. }
  400. }
  401. ]
  402. },
  403. "numComments": {
  404. "type": "integer"
  405. },
  406. "participants": {
  407. "type": "array",
  408. "items": {
  409. "type": "object"
  410. }
  411. },
  412. "permalink": {
  413. "type": "string"
  414. },
  415. "pluginActions": {
  416. "type": "array",
  417. "items": {
  418. "type": "array",
  419. "items": {
  420. "type": "string"
  421. }
  422. }
  423. },
  424. "pluginContexts": {
  425. "type": "array",
  426. "items": {
  427. "type": "string"
  428. }
  429. },
  430. "pluginIssues": {
  431. "type": "array",
  432. "items": {
  433. "type": "object"
  434. }
  435. },
  436. "project": {
  437. "type": "object",
  438. "properties": {
  439. "id": {
  440. "type": "string"
  441. },
  442. "name": {
  443. "type": "string"
  444. },
  445. "slug": {
  446. "type": "string"
  447. }
  448. }
  449. },
  450. "seenBy": {
  451. "type": "array",
  452. "items": {
  453. "type": "object"
  454. }
  455. },
  456. "shareId": {
  457. "type": "string",
  458. "nullable": true
  459. },
  460. "shortId": {
  461. "type": "string"
  462. },
  463. "stats": {
  464. "type": "object",
  465. "properties": {
  466. "24h": {
  467. "type": "array",
  468. "items": {
  469. "type": "array",
  470. "items": {
  471. "type": "number"
  472. }
  473. }
  474. },
  475. "30d": {
  476. "type": "array",
  477. "items": {
  478. "type": "array",
  479. "items": {
  480. "type": "number"
  481. }
  482. }
  483. }
  484. }
  485. },
  486. "status": {
  487. "type": "string",
  488. "enum": [
  489. "resolved",
  490. "unresolved",
  491. "ignored"
  492. ]
  493. },
  494. "statusDetails": {
  495. "type": "object"
  496. },
  497. "subscriptionDetails": {
  498. "type": "object",
  499. "nullable": true
  500. },
  501. "tags": {
  502. "type": "array",
  503. "items": {
  504. "type": "object"
  505. }
  506. },
  507. "title": {
  508. "type": "string"
  509. },
  510. "type": {
  511. "type": "string"
  512. },
  513. "userCount": {
  514. "type": "integer"
  515. },
  516. "userReportCount": {
  517. "type": "integer"
  518. }
  519. }
  520. },
  521. "IssueNoStats": {
  522. "type": "object",
  523. "required": [
  524. "lastSeen",
  525. "numComments",
  526. "userCount",
  527. "culprit",
  528. "title",
  529. "id",
  530. "assignedTo",
  531. "logger",
  532. "type",
  533. "annotations",
  534. "metadata",
  535. "status",
  536. "subscriptionDetails",
  537. "isPublic",
  538. "hasSeen",
  539. "shortId",
  540. "shareId",
  541. "firstSeen",
  542. "count",
  543. "permalink",
  544. "level",
  545. "isSubscribed",
  546. "isBookmarked",
  547. "project",
  548. "statusDetails"
  549. ],
  550. "properties": {
  551. "annotations": {
  552. "type": "array",
  553. "items": {
  554. "type": "string"
  555. }
  556. },
  557. "assignedTo": {
  558. "type": "object",
  559. "nullable": true
  560. },
  561. "count": {
  562. "type": "string"
  563. },
  564. "culprit": {
  565. "type": "string"
  566. },
  567. "firstSeen": {
  568. "type": "string"
  569. },
  570. "hasSeen": {
  571. "type": "boolean"
  572. },
  573. "id": {
  574. "type": "string"
  575. },
  576. "isBookmarked": {
  577. "type": "boolean"
  578. },
  579. "isPublic": {
  580. "type": "boolean"
  581. },
  582. "isSubscribed": {
  583. "type": "boolean"
  584. },
  585. "lastSeen": {
  586. "type": "string"
  587. },
  588. "level": {
  589. "type": "string"
  590. },
  591. "logger": {
  592. "type": "string",
  593. "nullable": true
  594. },
  595. "metadata": {
  596. "oneOf": [
  597. {
  598. "type": "object",
  599. "required": [
  600. "filename",
  601. "type",
  602. "value"
  603. ],
  604. "properties": {
  605. "filename": {
  606. "type": "string"
  607. },
  608. "type": {
  609. "type": "string"
  610. },
  611. "value": {
  612. "type": "string"
  613. }
  614. }
  615. },
  616. {
  617. "type": "object",
  618. "required": [
  619. "title"
  620. ],
  621. "properties": {
  622. "title": {
  623. "type": "string"
  624. }
  625. }
  626. }
  627. ]
  628. },
  629. "numComments": {
  630. "type": "integer"
  631. },
  632. "permalink": {
  633. "type": "string"
  634. },
  635. "project": {
  636. "type": "object",
  637. "properties": {
  638. "id": {
  639. "type": "string"
  640. },
  641. "name": {
  642. "type": "string"
  643. },
  644. "slug": {
  645. "type": "string"
  646. }
  647. }
  648. },
  649. "shareId": {
  650. "type": "string",
  651. "nullable": true
  652. },
  653. "shortId": {
  654. "type": "string"
  655. },
  656. "status": {
  657. "type": "string",
  658. "enum": [
  659. "resolved",
  660. "unresolved",
  661. "ignored"
  662. ]
  663. },
  664. "statusDetails": {
  665. "type": "object"
  666. },
  667. "subscriptionDetails": {
  668. "type": "object",
  669. "nullable": true
  670. },
  671. "title": {
  672. "type": "string"
  673. },
  674. "type": {
  675. "type": "string"
  676. },
  677. "userCount": {
  678. "type": "integer"
  679. }
  680. }
  681. }
  682. }