You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

workflows.yml 35KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926
  1. ---
  2. WorkflowTransitions_189:
  3. new_status_id: 5
  4. role_id: 1
  5. old_status_id: 2
  6. id: 189
  7. tracker_id: 3
  8. type: WorkflowTransition
  9. WorkflowTransitions_001:
  10. new_status_id: 2
  11. role_id: 1
  12. old_status_id: 1
  13. id: 1
  14. tracker_id: 1
  15. type: WorkflowTransition
  16. WorkflowTransitions_002:
  17. new_status_id: 3
  18. role_id: 1
  19. old_status_id: 1
  20. id: 2
  21. tracker_id: 1
  22. type: WorkflowTransition
  23. WorkflowTransitions_003:
  24. new_status_id: 4
  25. role_id: 1
  26. old_status_id: 1
  27. id: 3
  28. tracker_id: 1
  29. type: WorkflowTransition
  30. WorkflowTransitions_110:
  31. new_status_id: 6
  32. role_id: 1
  33. old_status_id: 4
  34. id: 110
  35. tracker_id: 2
  36. type: WorkflowTransition
  37. WorkflowTransitions_004:
  38. new_status_id: 5
  39. role_id: 1
  40. old_status_id: 1
  41. id: 4
  42. tracker_id: 1
  43. type: WorkflowTransition
  44. WorkflowTransitions_030:
  45. new_status_id: 5
  46. role_id: 1
  47. old_status_id: 6
  48. id: 30
  49. tracker_id: 1
  50. type: WorkflowTransition
  51. WorkflowTransitions_111:
  52. new_status_id: 1
  53. role_id: 1
  54. old_status_id: 5
  55. id: 111
  56. tracker_id: 2
  57. type: WorkflowTransition
  58. WorkflowTransitions_005:
  59. new_status_id: 6
  60. role_id: 1
  61. old_status_id: 1
  62. id: 5
  63. tracker_id: 1
  64. type: WorkflowTransition
  65. WorkflowTransitions_031:
  66. new_status_id: 2
  67. role_id: 2
  68. old_status_id: 1
  69. id: 31
  70. tracker_id: 1
  71. type: WorkflowTransition
  72. WorkflowTransitions_112:
  73. new_status_id: 2
  74. role_id: 1
  75. old_status_id: 5
  76. id: 112
  77. tracker_id: 2
  78. type: WorkflowTransition
  79. WorkflowTransitions_006:
  80. new_status_id: 1
  81. role_id: 1
  82. old_status_id: 2
  83. id: 6
  84. tracker_id: 1
  85. type: WorkflowTransition
  86. WorkflowTransitions_032:
  87. new_status_id: 3
  88. role_id: 2
  89. old_status_id: 1
  90. id: 32
  91. tracker_id: 1
  92. type: WorkflowTransition
  93. WorkflowTransitions_113:
  94. new_status_id: 3
  95. role_id: 1
  96. old_status_id: 5
  97. id: 113
  98. tracker_id: 2
  99. type: WorkflowTransition
  100. WorkflowTransitions_220:
  101. new_status_id: 6
  102. role_id: 2
  103. old_status_id: 2
  104. id: 220
  105. tracker_id: 3
  106. type: WorkflowTransition
  107. WorkflowTransitions_007:
  108. new_status_id: 3
  109. role_id: 1
  110. old_status_id: 2
  111. id: 7
  112. tracker_id: 1
  113. type: WorkflowTransition
  114. WorkflowTransitions_033:
  115. new_status_id: 4
  116. role_id: 2
  117. old_status_id: 1
  118. id: 33
  119. tracker_id: 1
  120. type: WorkflowTransition
  121. WorkflowTransitions_060:
  122. new_status_id: 5
  123. role_id: 2
  124. old_status_id: 6
  125. id: 60
  126. tracker_id: 1
  127. type: WorkflowTransition
  128. WorkflowTransitions_114:
  129. new_status_id: 4
  130. role_id: 1
  131. old_status_id: 5
  132. id: 114
  133. tracker_id: 2
  134. type: WorkflowTransition
  135. WorkflowTransitions_140:
  136. new_status_id: 6
  137. role_id: 2
  138. old_status_id: 4
  139. id: 140
  140. tracker_id: 2
  141. type: WorkflowTransition
  142. WorkflowTransitions_221:
  143. new_status_id: 1
  144. role_id: 2
  145. old_status_id: 3
  146. id: 221
  147. tracker_id: 3
  148. type: WorkflowTransition
  149. WorkflowTransitions_008:
  150. new_status_id: 4
  151. role_id: 1
  152. old_status_id: 2
  153. id: 8
  154. tracker_id: 1
  155. type: WorkflowTransition
  156. WorkflowTransitions_034:
  157. new_status_id: 5
  158. role_id: 2
  159. old_status_id: 1
  160. id: 34
  161. tracker_id: 1
  162. type: WorkflowTransition
  163. WorkflowTransitions_115:
  164. new_status_id: 6
  165. role_id: 1
  166. old_status_id: 5
  167. id: 115
  168. tracker_id: 2
  169. type: WorkflowTransition
  170. WorkflowTransitions_141:
  171. new_status_id: 1
  172. role_id: 2
  173. old_status_id: 5
  174. id: 141
  175. tracker_id: 2
  176. type: WorkflowTransition
  177. WorkflowTransitions_222:
  178. new_status_id: 2
  179. role_id: 2
  180. old_status_id: 3
  181. id: 222
  182. tracker_id: 3
  183. type: WorkflowTransition
  184. WorkflowTransitions_223:
  185. new_status_id: 4
  186. role_id: 2
  187. old_status_id: 3
  188. id: 223
  189. tracker_id: 3
  190. type: WorkflowTransition
  191. WorkflowTransitions_009:
  192. new_status_id: 5
  193. role_id: 1
  194. old_status_id: 2
  195. id: 9
  196. tracker_id: 1
  197. type: WorkflowTransition
  198. WorkflowTransitions_035:
  199. new_status_id: 6
  200. role_id: 2
  201. old_status_id: 1
  202. id: 35
  203. tracker_id: 1
  204. type: WorkflowTransition
  205. WorkflowTransitions_061:
  206. new_status_id: 2
  207. role_id: 3
  208. old_status_id: 1
  209. id: 61
  210. tracker_id: 1
  211. type: WorkflowTransition
  212. WorkflowTransitions_116:
  213. new_status_id: 1
  214. role_id: 1
  215. old_status_id: 6
  216. id: 116
  217. tracker_id: 2
  218. type: WorkflowTransition
  219. WorkflowTransitions_142:
  220. new_status_id: 2
  221. role_id: 2
  222. old_status_id: 5
  223. id: 142
  224. tracker_id: 2
  225. type: WorkflowTransition
  226. WorkflowTransitions_250:
  227. new_status_id: 6
  228. role_id: 3
  229. old_status_id: 2
  230. id: 250
  231. tracker_id: 3
  232. type: WorkflowTransition
  233. WorkflowTransitions_224:
  234. new_status_id: 5
  235. role_id: 2
  236. old_status_id: 3
  237. id: 224
  238. tracker_id: 3
  239. type: WorkflowTransition
  240. WorkflowTransitions_036:
  241. new_status_id: 1
  242. role_id: 2
  243. old_status_id: 2
  244. id: 36
  245. tracker_id: 1
  246. type: WorkflowTransition
  247. WorkflowTransitions_062:
  248. new_status_id: 3
  249. role_id: 3
  250. old_status_id: 1
  251. id: 62
  252. tracker_id: 1
  253. type: WorkflowTransition
  254. WorkflowTransitions_117:
  255. new_status_id: 2
  256. role_id: 1
  257. old_status_id: 6
  258. id: 117
  259. tracker_id: 2
  260. type: WorkflowTransition
  261. WorkflowTransitions_143:
  262. new_status_id: 3
  263. role_id: 2
  264. old_status_id: 5
  265. id: 143
  266. tracker_id: 2
  267. type: WorkflowTransition
  268. WorkflowTransitions_170:
  269. new_status_id: 6
  270. role_id: 3
  271. old_status_id: 4
  272. id: 170
  273. tracker_id: 2
  274. type: WorkflowTransition
  275. WorkflowTransitions_251:
  276. new_status_id: 1
  277. role_id: 3
  278. old_status_id: 3
  279. id: 251
  280. tracker_id: 3
  281. type: WorkflowTransition
  282. WorkflowTransitions_225:
  283. new_status_id: 6
  284. role_id: 2
  285. old_status_id: 3
  286. id: 225
  287. tracker_id: 3
  288. type: WorkflowTransition
  289. WorkflowTransitions_063:
  290. new_status_id: 4
  291. role_id: 3
  292. old_status_id: 1
  293. id: 63
  294. tracker_id: 1
  295. type: WorkflowTransition
  296. WorkflowTransitions_090:
  297. new_status_id: 5
  298. role_id: 3
  299. old_status_id: 6
  300. id: 90
  301. tracker_id: 1
  302. type: WorkflowTransition
  303. WorkflowTransitions_118:
  304. new_status_id: 3
  305. role_id: 1
  306. old_status_id: 6
  307. id: 118
  308. tracker_id: 2
  309. type: WorkflowTransition
  310. WorkflowTransitions_144:
  311. new_status_id: 4
  312. role_id: 2
  313. old_status_id: 5
  314. id: 144
  315. tracker_id: 2
  316. type: WorkflowTransition
  317. WorkflowTransitions_252:
  318. new_status_id: 2
  319. role_id: 3
  320. old_status_id: 3
  321. id: 252
  322. tracker_id: 3
  323. type: WorkflowTransition
  324. WorkflowTransitions_226:
  325. new_status_id: 1
  326. role_id: 2
  327. old_status_id: 4
  328. id: 226
  329. tracker_id: 3
  330. type: WorkflowTransition
  331. WorkflowTransitions_038:
  332. new_status_id: 4
  333. role_id: 2
  334. old_status_id: 2
  335. id: 38
  336. tracker_id: 1
  337. type: WorkflowTransition
  338. WorkflowTransitions_064:
  339. new_status_id: 5
  340. role_id: 3
  341. old_status_id: 1
  342. id: 64
  343. tracker_id: 1
  344. type: WorkflowTransition
  345. WorkflowTransitions_091:
  346. new_status_id: 2
  347. role_id: 1
  348. old_status_id: 1
  349. id: 91
  350. tracker_id: 2
  351. type: WorkflowTransition
  352. WorkflowTransitions_119:
  353. new_status_id: 4
  354. role_id: 1
  355. old_status_id: 6
  356. id: 119
  357. tracker_id: 2
  358. type: WorkflowTransition
  359. WorkflowTransitions_145:
  360. new_status_id: 6
  361. role_id: 2
  362. old_status_id: 5
  363. id: 145
  364. tracker_id: 2
  365. type: WorkflowTransition
  366. WorkflowTransitions_171:
  367. new_status_id: 1
  368. role_id: 3
  369. old_status_id: 5
  370. id: 171
  371. tracker_id: 2
  372. type: WorkflowTransition
  373. WorkflowTransitions_253:
  374. new_status_id: 4
  375. role_id: 3
  376. old_status_id: 3
  377. id: 253
  378. tracker_id: 3
  379. type: WorkflowTransition
  380. WorkflowTransitions_227:
  381. new_status_id: 2
  382. role_id: 2
  383. old_status_id: 4
  384. id: 227
  385. tracker_id: 3
  386. type: WorkflowTransition
  387. WorkflowTransitions_039:
  388. new_status_id: 5
  389. role_id: 2
  390. old_status_id: 2
  391. id: 39
  392. tracker_id: 1
  393. type: WorkflowTransition
  394. WorkflowTransitions_065:
  395. new_status_id: 6
  396. role_id: 3
  397. old_status_id: 1
  398. id: 65
  399. tracker_id: 1
  400. type: WorkflowTransition
  401. WorkflowTransitions_092:
  402. new_status_id: 3
  403. role_id: 1
  404. old_status_id: 1
  405. id: 92
  406. tracker_id: 2
  407. type: WorkflowTransition
  408. WorkflowTransitions_146:
  409. new_status_id: 1
  410. role_id: 2
  411. old_status_id: 6
  412. id: 146
  413. tracker_id: 2
  414. type: WorkflowTransition
  415. WorkflowTransitions_172:
  416. new_status_id: 2
  417. role_id: 3
  418. old_status_id: 5
  419. id: 172
  420. tracker_id: 2
  421. type: WorkflowTransition
  422. WorkflowTransitions_254:
  423. new_status_id: 5
  424. role_id: 3
  425. old_status_id: 3
  426. id: 254
  427. tracker_id: 3
  428. type: WorkflowTransition
  429. WorkflowTransitions_228:
  430. new_status_id: 3
  431. role_id: 2
  432. old_status_id: 4
  433. id: 228
  434. tracker_id: 3
  435. type: WorkflowTransition
  436. WorkflowTransitions_066:
  437. new_status_id: 1
  438. role_id: 3
  439. old_status_id: 2
  440. id: 66
  441. tracker_id: 1
  442. type: WorkflowTransition
  443. WorkflowTransitions_093:
  444. new_status_id: 4
  445. role_id: 1
  446. old_status_id: 1
  447. id: 93
  448. tracker_id: 2
  449. type: WorkflowTransition
  450. WorkflowTransitions_147:
  451. new_status_id: 2
  452. role_id: 2
  453. old_status_id: 6
  454. id: 147
  455. tracker_id: 2
  456. type: WorkflowTransition
  457. WorkflowTransitions_173:
  458. new_status_id: 3
  459. role_id: 3
  460. old_status_id: 5
  461. id: 173
  462. tracker_id: 2
  463. type: WorkflowTransition
  464. WorkflowTransitions_255:
  465. new_status_id: 6
  466. role_id: 3
  467. old_status_id: 3
  468. id: 255
  469. tracker_id: 3
  470. type: WorkflowTransition
  471. WorkflowTransitions_229:
  472. new_status_id: 5
  473. role_id: 2
  474. old_status_id: 4
  475. id: 229
  476. tracker_id: 3
  477. type: WorkflowTransition
  478. WorkflowTransitions_067:
  479. new_status_id: 3
  480. role_id: 3
  481. old_status_id: 2
  482. id: 67
  483. tracker_id: 1
  484. type: WorkflowTransition
  485. WorkflowTransitions_148:
  486. new_status_id: 3
  487. role_id: 2
  488. old_status_id: 6
  489. id: 148
  490. tracker_id: 2
  491. type: WorkflowTransition
  492. WorkflowTransitions_174:
  493. new_status_id: 4
  494. role_id: 3
  495. old_status_id: 5
  496. id: 174
  497. tracker_id: 2
  498. type: WorkflowTransition
  499. WorkflowTransitions_256:
  500. new_status_id: 1
  501. role_id: 3
  502. old_status_id: 4
  503. id: 256
  504. tracker_id: 3
  505. type: WorkflowTransition
  506. WorkflowTransitions_068:
  507. new_status_id: 4
  508. role_id: 3
  509. old_status_id: 2
  510. id: 68
  511. tracker_id: 1
  512. type: WorkflowTransition
  513. WorkflowTransitions_094:
  514. new_status_id: 5
  515. role_id: 1
  516. old_status_id: 1
  517. id: 94
  518. tracker_id: 2
  519. type: WorkflowTransition
  520. WorkflowTransitions_149:
  521. new_status_id: 4
  522. role_id: 2
  523. old_status_id: 6
  524. id: 149
  525. tracker_id: 2
  526. type: WorkflowTransition
  527. WorkflowTransitions_175:
  528. new_status_id: 6
  529. role_id: 3
  530. old_status_id: 5
  531. id: 175
  532. tracker_id: 2
  533. type: WorkflowTransition
  534. WorkflowTransitions_257:
  535. new_status_id: 2
  536. role_id: 3
  537. old_status_id: 4
  538. id: 257
  539. tracker_id: 3
  540. type: WorkflowTransition
  541. WorkflowTransitions_069:
  542. new_status_id: 5
  543. role_id: 3
  544. old_status_id: 2
  545. id: 69
  546. tracker_id: 1
  547. type: WorkflowTransition
  548. WorkflowTransitions_095:
  549. new_status_id: 6
  550. role_id: 1
  551. old_status_id: 1
  552. id: 95
  553. tracker_id: 2
  554. type: WorkflowTransition
  555. WorkflowTransitions_176:
  556. new_status_id: 1
  557. role_id: 3
  558. old_status_id: 6
  559. id: 176
  560. tracker_id: 2
  561. type: WorkflowTransition
  562. WorkflowTransitions_258:
  563. new_status_id: 3
  564. role_id: 3
  565. old_status_id: 4
  566. id: 258
  567. tracker_id: 3
  568. type: WorkflowTransition
  569. WorkflowTransitions_096:
  570. new_status_id: 1
  571. role_id: 1
  572. old_status_id: 2
  573. id: 96
  574. tracker_id: 2
  575. type: WorkflowTransition
  576. WorkflowTransitions_177:
  577. new_status_id: 2
  578. role_id: 3
  579. old_status_id: 6
  580. id: 177
  581. tracker_id: 2
  582. type: WorkflowTransition
  583. WorkflowTransitions_259:
  584. new_status_id: 5
  585. role_id: 3
  586. old_status_id: 4
  587. id: 259
  588. tracker_id: 3
  589. type: WorkflowTransition
  590. WorkflowTransitions_097:
  591. new_status_id: 3
  592. role_id: 1
  593. old_status_id: 2
  594. id: 97
  595. tracker_id: 2
  596. type: WorkflowTransition
  597. WorkflowTransitions_178:
  598. new_status_id: 3
  599. role_id: 3
  600. old_status_id: 6
  601. id: 178
  602. tracker_id: 2
  603. type: WorkflowTransition
  604. WorkflowTransitions_098:
  605. new_status_id: 4
  606. role_id: 1
  607. old_status_id: 2
  608. id: 98
  609. tracker_id: 2
  610. type: WorkflowTransition
  611. WorkflowTransitions_179:
  612. new_status_id: 4
  613. role_id: 3
  614. old_status_id: 6
  615. id: 179
  616. tracker_id: 2
  617. type: WorkflowTransition
  618. WorkflowTransitions_099:
  619. new_status_id: 5
  620. role_id: 1
  621. old_status_id: 2
  622. id: 99
  623. tracker_id: 2
  624. type: WorkflowTransition
  625. WorkflowTransitions_100:
  626. new_status_id: 6
  627. role_id: 1
  628. old_status_id: 2
  629. id: 100
  630. tracker_id: 2
  631. type: WorkflowTransition
  632. WorkflowTransitions_020:
  633. new_status_id: 6
  634. role_id: 1
  635. old_status_id: 4
  636. id: 20
  637. tracker_id: 1
  638. type: WorkflowTransition
  639. WorkflowTransitions_101:
  640. new_status_id: 1
  641. role_id: 1
  642. old_status_id: 3
  643. id: 101
  644. tracker_id: 2
  645. type: WorkflowTransition
  646. WorkflowTransitions_021:
  647. new_status_id: 1
  648. role_id: 1
  649. old_status_id: 5
  650. id: 21
  651. tracker_id: 1
  652. type: WorkflowTransition
  653. WorkflowTransitions_102:
  654. new_status_id: 2
  655. role_id: 1
  656. old_status_id: 3
  657. id: 102
  658. tracker_id: 2
  659. type: WorkflowTransition
  660. WorkflowTransitions_210:
  661. new_status_id: 5
  662. role_id: 1
  663. old_status_id: 6
  664. id: 210
  665. tracker_id: 3
  666. type: WorkflowTransition
  667. WorkflowTransitions_022:
  668. new_status_id: 2
  669. role_id: 1
  670. old_status_id: 5
  671. id: 22
  672. tracker_id: 1
  673. type: WorkflowTransition
  674. WorkflowTransitions_103:
  675. new_status_id: 4
  676. role_id: 1
  677. old_status_id: 3
  678. id: 103
  679. tracker_id: 2
  680. type: WorkflowTransition
  681. WorkflowTransitions_023:
  682. new_status_id: 3
  683. role_id: 1
  684. old_status_id: 5
  685. id: 23
  686. tracker_id: 1
  687. type: WorkflowTransition
  688. WorkflowTransitions_104:
  689. new_status_id: 5
  690. role_id: 1
  691. old_status_id: 3
  692. id: 104
  693. tracker_id: 2
  694. type: WorkflowTransition
  695. WorkflowTransitions_130:
  696. new_status_id: 6
  697. role_id: 2
  698. old_status_id: 2
  699. id: 130
  700. tracker_id: 2
  701. type: WorkflowTransition
  702. WorkflowTransitions_211:
  703. new_status_id: 2
  704. role_id: 2
  705. old_status_id: 1
  706. id: 211
  707. tracker_id: 3
  708. type: WorkflowTransition
  709. WorkflowTransitions_024:
  710. new_status_id: 4
  711. role_id: 1
  712. old_status_id: 5
  713. id: 24
  714. tracker_id: 1
  715. type: WorkflowTransition
  716. WorkflowTransitions_050:
  717. new_status_id: 6
  718. role_id: 2
  719. old_status_id: 4
  720. id: 50
  721. tracker_id: 1
  722. type: WorkflowTransition
  723. WorkflowTransitions_105:
  724. new_status_id: 6
  725. role_id: 1
  726. old_status_id: 3
  727. id: 105
  728. tracker_id: 2
  729. type: WorkflowTransition
  730. WorkflowTransitions_131:
  731. new_status_id: 1
  732. role_id: 2
  733. old_status_id: 3
  734. id: 131
  735. tracker_id: 2
  736. type: WorkflowTransition
  737. WorkflowTransitions_212:
  738. new_status_id: 3
  739. role_id: 2
  740. old_status_id: 1
  741. id: 212
  742. tracker_id: 3
  743. type: WorkflowTransition
  744. WorkflowTransitions_025:
  745. new_status_id: 6
  746. role_id: 1
  747. old_status_id: 5
  748. id: 25
  749. tracker_id: 1
  750. type: WorkflowTransition
  751. WorkflowTransitions_051:
  752. new_status_id: 1
  753. role_id: 2
  754. old_status_id: 5
  755. id: 51
  756. tracker_id: 1
  757. type: WorkflowTransition
  758. WorkflowTransitions_106:
  759. new_status_id: 1
  760. role_id: 1
  761. old_status_id: 4
  762. id: 106
  763. tracker_id: 2
  764. type: WorkflowTransition
  765. WorkflowTransitions_132:
  766. new_status_id: 2
  767. role_id: 2
  768. old_status_id: 3
  769. id: 132
  770. tracker_id: 2
  771. type: WorkflowTransition
  772. WorkflowTransitions_213:
  773. new_status_id: 4
  774. role_id: 2
  775. old_status_id: 1
  776. id: 213
  777. tracker_id: 3
  778. type: WorkflowTransition
  779. WorkflowTransitions_240:
  780. new_status_id: 5
  781. role_id: 2
  782. old_status_id: 6
  783. id: 240
  784. tracker_id: 3
  785. type: WorkflowTransition
  786. WorkflowTransitions_026:
  787. new_status_id: 1
  788. role_id: 1
  789. old_status_id: 6
  790. id: 26
  791. tracker_id: 1
  792. type: WorkflowTransition
  793. WorkflowTransitions_052:
  794. new_status_id: 2
  795. role_id: 2
  796. old_status_id: 5
  797. id: 52
  798. tracker_id: 1
  799. type: WorkflowTransition
  800. WorkflowTransitions_107:
  801. new_status_id: 2
  802. role_id: 1
  803. old_status_id: 4
  804. id: 107
  805. tracker_id: 2
  806. type: WorkflowTransition
  807. WorkflowTransitions_133:
  808. new_status_id: 4
  809. role_id: 2
  810. old_status_id: 3
  811. id: 133
  812. tracker_id: 2
  813. type: WorkflowTransition
  814. WorkflowTransitions_214:
  815. new_status_id: 5
  816. role_id: 2
  817. old_status_id: 1
  818. id: 214
  819. tracker_id: 3
  820. type: WorkflowTransition
  821. WorkflowTransitions_241:
  822. new_status_id: 2
  823. role_id: 3
  824. old_status_id: 1
  825. id: 241
  826. tracker_id: 3
  827. type: WorkflowTransition
  828. WorkflowTransitions_027:
  829. new_status_id: 2
  830. role_id: 1
  831. old_status_id: 6
  832. id: 27
  833. tracker_id: 1
  834. type: WorkflowTransition
  835. WorkflowTransitions_053:
  836. new_status_id: 3
  837. role_id: 2
  838. old_status_id: 5
  839. id: 53
  840. tracker_id: 1
  841. type: WorkflowTransition
  842. WorkflowTransitions_080:
  843. new_status_id: 6
  844. role_id: 3
  845. old_status_id: 4
  846. id: 80
  847. tracker_id: 1
  848. type: WorkflowTransition
  849. WorkflowTransitions_108:
  850. new_status_id: 3
  851. role_id: 1
  852. old_status_id: 4
  853. id: 108
  854. tracker_id: 2
  855. type: WorkflowTransition
  856. WorkflowTransitions_134:
  857. new_status_id: 5
  858. role_id: 2
  859. old_status_id: 3
  860. id: 134
  861. tracker_id: 2
  862. type: WorkflowTransition
  863. WorkflowTransitions_160:
  864. new_status_id: 6
  865. role_id: 3
  866. old_status_id: 2
  867. id: 160
  868. tracker_id: 2
  869. type: WorkflowTransition
  870. WorkflowTransitions_215:
  871. new_status_id: 6
  872. role_id: 2
  873. old_status_id: 1
  874. id: 215
  875. tracker_id: 3
  876. type: WorkflowTransition
  877. WorkflowTransitions_242:
  878. new_status_id: 3
  879. role_id: 3
  880. old_status_id: 1
  881. id: 242
  882. tracker_id: 3
  883. type: WorkflowTransition
  884. WorkflowTransitions_028:
  885. new_status_id: 3
  886. role_id: 1
  887. old_status_id: 6
  888. id: 28
  889. tracker_id: 1
  890. type: WorkflowTransition
  891. WorkflowTransitions_054:
  892. new_status_id: 4
  893. role_id: 2
  894. old_status_id: 5
  895. id: 54
  896. tracker_id: 1
  897. type: WorkflowTransition
  898. WorkflowTransitions_081:
  899. new_status_id: 1
  900. role_id: 3
  901. old_status_id: 5
  902. id: 81
  903. tracker_id: 1
  904. type: WorkflowTransition
  905. WorkflowTransitions_109:
  906. new_status_id: 5
  907. role_id: 1
  908. old_status_id: 4
  909. id: 109
  910. tracker_id: 2
  911. type: WorkflowTransition
  912. WorkflowTransitions_135:
  913. new_status_id: 6
  914. role_id: 2
  915. old_status_id: 3
  916. id: 135
  917. tracker_id: 2
  918. type: WorkflowTransition
  919. WorkflowTransitions_161:
  920. new_status_id: 1
  921. role_id: 3
  922. old_status_id: 3
  923. id: 161
  924. tracker_id: 2
  925. type: WorkflowTransition
  926. WorkflowTransitions_216:
  927. new_status_id: 1
  928. role_id: 2
  929. old_status_id: 2
  930. id: 216
  931. tracker_id: 3
  932. type: WorkflowTransition
  933. WorkflowTransitions_243:
  934. new_status_id: 4
  935. role_id: 3
  936. old_status_id: 1
  937. id: 243
  938. tracker_id: 3
  939. type: WorkflowTransition
  940. WorkflowTransitions_029:
  941. new_status_id: 4
  942. role_id: 1
  943. old_status_id: 6
  944. id: 29
  945. tracker_id: 1
  946. type: WorkflowTransition
  947. WorkflowTransitions_055:
  948. new_status_id: 6
  949. role_id: 2
  950. old_status_id: 5
  951. id: 55
  952. tracker_id: 1
  953. type: WorkflowTransition
  954. WorkflowTransitions_082:
  955. new_status_id: 2
  956. role_id: 3
  957. old_status_id: 5
  958. id: 82
  959. tracker_id: 1
  960. type: WorkflowTransition
  961. WorkflowTransitions_136:
  962. new_status_id: 1
  963. role_id: 2
  964. old_status_id: 4
  965. id: 136
  966. tracker_id: 2
  967. type: WorkflowTransition
  968. WorkflowTransitions_162:
  969. new_status_id: 2
  970. role_id: 3
  971. old_status_id: 3
  972. id: 162
  973. tracker_id: 2
  974. type: WorkflowTransition
  975. WorkflowTransitions_217:
  976. new_status_id: 3
  977. role_id: 2
  978. old_status_id: 2
  979. id: 217
  980. tracker_id: 3
  981. type: WorkflowTransition
  982. WorkflowTransitions_270:
  983. new_status_id: 5
  984. role_id: 3
  985. old_status_id: 6
  986. id: 270
  987. tracker_id: 3
  988. type: WorkflowTransition
  989. WorkflowTransitions_244:
  990. new_status_id: 5
  991. role_id: 3
  992. old_status_id: 1
  993. id: 244
  994. tracker_id: 3
  995. type: WorkflowTransition
  996. WorkflowTransitions_056:
  997. new_status_id: 1
  998. role_id: 2
  999. old_status_id: 6
  1000. id: 56
  1001. tracker_id: 1
  1002. type: WorkflowTransition
  1003. WorkflowTransitions_137:
  1004. new_status_id: 2
  1005. role_id: 2
  1006. old_status_id: 4
  1007. id: 137
  1008. tracker_id: 2
  1009. type: WorkflowTransition
  1010. WorkflowTransitions_163:
  1011. new_status_id: 4
  1012. role_id: 3
  1013. old_status_id: 3
  1014. id: 163
  1015. tracker_id: 2
  1016. type: WorkflowTransition
  1017. WorkflowTransitions_190:
  1018. new_status_id: 6
  1019. role_id: 1
  1020. old_status_id: 2
  1021. id: 190
  1022. tracker_id: 3
  1023. type: WorkflowTransition
  1024. WorkflowTransitions_218:
  1025. new_status_id: 4
  1026. role_id: 2
  1027. old_status_id: 2
  1028. id: 218
  1029. tracker_id: 3
  1030. type: WorkflowTransition
  1031. WorkflowTransitions_245:
  1032. new_status_id: 6
  1033. role_id: 3
  1034. old_status_id: 1
  1035. id: 245
  1036. tracker_id: 3
  1037. type: WorkflowTransition
  1038. WorkflowTransitions_057:
  1039. new_status_id: 2
  1040. role_id: 2
  1041. old_status_id: 6
  1042. id: 57
  1043. tracker_id: 1
  1044. type: WorkflowTransition
  1045. WorkflowTransitions_083:
  1046. new_status_id: 3
  1047. role_id: 3
  1048. old_status_id: 5
  1049. id: 83
  1050. tracker_id: 1
  1051. type: WorkflowTransition
  1052. WorkflowTransitions_138:
  1053. new_status_id: 3
  1054. role_id: 2
  1055. old_status_id: 4
  1056. id: 138
  1057. tracker_id: 2
  1058. type: WorkflowTransition
  1059. WorkflowTransitions_164:
  1060. new_status_id: 5
  1061. role_id: 3
  1062. old_status_id: 3
  1063. id: 164
  1064. tracker_id: 2
  1065. type: WorkflowTransition
  1066. WorkflowTransitions_191:
  1067. new_status_id: 1
  1068. role_id: 1
  1069. old_status_id: 3
  1070. id: 191
  1071. tracker_id: 3
  1072. type: WorkflowTransition
  1073. WorkflowTransitions_219:
  1074. new_status_id: 5
  1075. role_id: 2
  1076. old_status_id: 2
  1077. id: 219
  1078. tracker_id: 3
  1079. type: WorkflowTransition
  1080. WorkflowTransitions_246:
  1081. new_status_id: 1
  1082. role_id: 3
  1083. old_status_id: 2
  1084. id: 246
  1085. tracker_id: 3
  1086. type: WorkflowTransition
  1087. WorkflowTransitions_058:
  1088. new_status_id: 3
  1089. role_id: 2
  1090. old_status_id: 6
  1091. id: 58
  1092. tracker_id: 1
  1093. type: WorkflowTransition
  1094. WorkflowTransitions_084:
  1095. new_status_id: 4
  1096. role_id: 3
  1097. old_status_id: 5
  1098. id: 84
  1099. tracker_id: 1
  1100. type: WorkflowTransition
  1101. WorkflowTransitions_139:
  1102. new_status_id: 5
  1103. role_id: 2
  1104. old_status_id: 4
  1105. id: 139
  1106. tracker_id: 2
  1107. type: WorkflowTransition
  1108. WorkflowTransitions_165:
  1109. new_status_id: 6
  1110. role_id: 3
  1111. old_status_id: 3
  1112. id: 165
  1113. tracker_id: 2
  1114. type: WorkflowTransition
  1115. WorkflowTransitions_192:
  1116. new_status_id: 2
  1117. role_id: 1
  1118. old_status_id: 3
  1119. id: 192
  1120. tracker_id: 3
  1121. type: WorkflowTransition
  1122. WorkflowTransitions_247:
  1123. new_status_id: 3
  1124. role_id: 3
  1125. old_status_id: 2
  1126. id: 247
  1127. tracker_id: 3
  1128. type: WorkflowTransition
  1129. WorkflowTransitions_059:
  1130. new_status_id: 4
  1131. role_id: 2
  1132. old_status_id: 6
  1133. id: 59
  1134. tracker_id: 1
  1135. type: WorkflowTransition
  1136. WorkflowTransitions_085:
  1137. new_status_id: 6
  1138. role_id: 3
  1139. old_status_id: 5
  1140. id: 85
  1141. tracker_id: 1
  1142. type: WorkflowTransition
  1143. WorkflowTransitions_166:
  1144. new_status_id: 1
  1145. role_id: 3
  1146. old_status_id: 4
  1147. id: 166
  1148. tracker_id: 2
  1149. type: WorkflowTransition
  1150. WorkflowTransitions_248:
  1151. new_status_id: 4
  1152. role_id: 3
  1153. old_status_id: 2
  1154. id: 248
  1155. tracker_id: 3
  1156. type: WorkflowTransition
  1157. WorkflowTransitions_086:
  1158. new_status_id: 1
  1159. role_id: 3
  1160. old_status_id: 6
  1161. id: 86
  1162. tracker_id: 1
  1163. type: WorkflowTransition
  1164. WorkflowTransitions_167:
  1165. new_status_id: 2
  1166. role_id: 3
  1167. old_status_id: 4
  1168. id: 167
  1169. tracker_id: 2
  1170. type: WorkflowTransition
  1171. WorkflowTransitions_193:
  1172. new_status_id: 4
  1173. role_id: 1
  1174. old_status_id: 3
  1175. id: 193
  1176. tracker_id: 3
  1177. type: WorkflowTransition
  1178. WorkflowTransitions_249:
  1179. new_status_id: 5
  1180. role_id: 3
  1181. old_status_id: 2
  1182. id: 249
  1183. tracker_id: 3
  1184. type: WorkflowTransition
  1185. WorkflowTransitions_087:
  1186. new_status_id: 2
  1187. role_id: 3
  1188. old_status_id: 6
  1189. id: 87
  1190. tracker_id: 1
  1191. type: WorkflowTransition
  1192. WorkflowTransitions_168:
  1193. new_status_id: 3
  1194. role_id: 3
  1195. old_status_id: 4
  1196. id: 168
  1197. tracker_id: 2
  1198. type: WorkflowTransition
  1199. WorkflowTransitions_194:
  1200. new_status_id: 5
  1201. role_id: 1
  1202. old_status_id: 3
  1203. id: 194
  1204. tracker_id: 3
  1205. type: WorkflowTransition
  1206. WorkflowTransitions_088:
  1207. new_status_id: 3
  1208. role_id: 3
  1209. old_status_id: 6
  1210. id: 88
  1211. tracker_id: 1
  1212. type: WorkflowTransition
  1213. WorkflowTransitions_169:
  1214. new_status_id: 5
  1215. role_id: 3
  1216. old_status_id: 4
  1217. id: 169
  1218. tracker_id: 2
  1219. type: WorkflowTransition
  1220. WorkflowTransitions_195:
  1221. new_status_id: 6
  1222. role_id: 1
  1223. old_status_id: 3
  1224. id: 195
  1225. tracker_id: 3
  1226. type: WorkflowTransition
  1227. WorkflowTransitions_089:
  1228. new_status_id: 4
  1229. role_id: 3
  1230. old_status_id: 6
  1231. id: 89
  1232. tracker_id: 1
  1233. type: WorkflowTransition
  1234. WorkflowTransitions_196:
  1235. new_status_id: 1
  1236. role_id: 1
  1237. old_status_id: 4
  1238. id: 196
  1239. tracker_id: 3
  1240. type: WorkflowTransition
  1241. WorkflowTransitions_197:
  1242. new_status_id: 2
  1243. role_id: 1
  1244. old_status_id: 4
  1245. id: 197
  1246. tracker_id: 3
  1247. type: WorkflowTransition
  1248. WorkflowTransitions_198:
  1249. new_status_id: 3
  1250. role_id: 1
  1251. old_status_id: 4
  1252. id: 198
  1253. tracker_id: 3
  1254. type: WorkflowTransition
  1255. WorkflowTransitions_199:
  1256. new_status_id: 5
  1257. role_id: 1
  1258. old_status_id: 4
  1259. id: 199
  1260. tracker_id: 3
  1261. type: WorkflowTransition
  1262. WorkflowTransitions_010:
  1263. new_status_id: 6
  1264. role_id: 1
  1265. old_status_id: 2
  1266. id: 10
  1267. tracker_id: 1
  1268. type: WorkflowTransition
  1269. WorkflowTransitions_011:
  1270. new_status_id: 1
  1271. role_id: 1
  1272. old_status_id: 3
  1273. id: 11
  1274. tracker_id: 1
  1275. type: WorkflowTransition
  1276. WorkflowTransitions_012:
  1277. new_status_id: 2
  1278. role_id: 1
  1279. old_status_id: 3
  1280. id: 12
  1281. tracker_id: 1
  1282. type: WorkflowTransition
  1283. WorkflowTransitions_200:
  1284. new_status_id: 6
  1285. role_id: 1
  1286. old_status_id: 4
  1287. id: 200
  1288. tracker_id: 3
  1289. type: WorkflowTransition
  1290. WorkflowTransitions_013:
  1291. new_status_id: 4
  1292. role_id: 1
  1293. old_status_id: 3
  1294. id: 13
  1295. tracker_id: 1
  1296. type: WorkflowTransition
  1297. WorkflowTransitions_120:
  1298. new_status_id: 5
  1299. role_id: 1
  1300. old_status_id: 6
  1301. id: 120
  1302. tracker_id: 2
  1303. type: WorkflowTransition
  1304. WorkflowTransitions_201:
  1305. new_status_id: 1
  1306. role_id: 1
  1307. old_status_id: 5
  1308. id: 201
  1309. tracker_id: 3
  1310. type: WorkflowTransition
  1311. WorkflowTransitions_040:
  1312. new_status_id: 6
  1313. role_id: 2
  1314. old_status_id: 2
  1315. id: 40
  1316. tracker_id: 1
  1317. type: WorkflowTransition
  1318. WorkflowTransitions_121:
  1319. new_status_id: 2
  1320. role_id: 2
  1321. old_status_id: 1
  1322. id: 121
  1323. tracker_id: 2
  1324. type: WorkflowTransition
  1325. WorkflowTransitions_202:
  1326. new_status_id: 2
  1327. role_id: 1
  1328. old_status_id: 5
  1329. id: 202
  1330. tracker_id: 3
  1331. type: WorkflowTransition
  1332. WorkflowTransitions_014:
  1333. new_status_id: 5
  1334. role_id: 1
  1335. old_status_id: 3
  1336. id: 14
  1337. tracker_id: 1
  1338. type: WorkflowTransition
  1339. WorkflowTransitions_041:
  1340. new_status_id: 1
  1341. role_id: 2
  1342. old_status_id: 3
  1343. id: 41
  1344. tracker_id: 1
  1345. type: WorkflowTransition
  1346. WorkflowTransitions_122:
  1347. new_status_id: 3
  1348. role_id: 2
  1349. old_status_id: 1
  1350. id: 122
  1351. tracker_id: 2
  1352. type: WorkflowTransition
  1353. WorkflowTransitions_203:
  1354. new_status_id: 3
  1355. role_id: 1
  1356. old_status_id: 5
  1357. id: 203
  1358. tracker_id: 3
  1359. type: WorkflowTransition
  1360. WorkflowTransitions_015:
  1361. new_status_id: 6
  1362. role_id: 1
  1363. old_status_id: 3
  1364. id: 15
  1365. tracker_id: 1
  1366. type: WorkflowTransition
  1367. WorkflowTransitions_230:
  1368. new_status_id: 6
  1369. role_id: 2
  1370. old_status_id: 4
  1371. id: 230
  1372. tracker_id: 3
  1373. type: WorkflowTransition
  1374. WorkflowTransitions_123:
  1375. new_status_id: 4
  1376. role_id: 2
  1377. old_status_id: 1
  1378. id: 123
  1379. tracker_id: 2
  1380. type: WorkflowTransition
  1381. WorkflowTransitions_204:
  1382. new_status_id: 4
  1383. role_id: 1
  1384. old_status_id: 5
  1385. id: 204
  1386. tracker_id: 3
  1387. type: WorkflowTransition
  1388. WorkflowTransitions_016:
  1389. new_status_id: 1
  1390. role_id: 1
  1391. old_status_id: 4
  1392. id: 16
  1393. tracker_id: 1
  1394. type: WorkflowTransition
  1395. WorkflowTransitions_042:
  1396. new_status_id: 2
  1397. role_id: 2
  1398. old_status_id: 3
  1399. id: 42
  1400. tracker_id: 1
  1401. type: WorkflowTransition
  1402. WorkflowTransitions_231:
  1403. new_status_id: 1
  1404. role_id: 2
  1405. old_status_id: 5
  1406. id: 231
  1407. tracker_id: 3
  1408. type: WorkflowTransition
  1409. WorkflowTransitions_070:
  1410. new_status_id: 6
  1411. role_id: 3
  1412. old_status_id: 2
  1413. id: 70
  1414. tracker_id: 1
  1415. type: WorkflowTransition
  1416. WorkflowTransitions_124:
  1417. new_status_id: 5
  1418. role_id: 2
  1419. old_status_id: 1
  1420. id: 124
  1421. tracker_id: 2
  1422. type: WorkflowTransition
  1423. WorkflowTransitions_150:
  1424. new_status_id: 5
  1425. role_id: 2
  1426. old_status_id: 6
  1427. id: 150
  1428. tracker_id: 2
  1429. type: WorkflowTransition
  1430. WorkflowTransitions_205:
  1431. new_status_id: 6
  1432. role_id: 1
  1433. old_status_id: 5
  1434. id: 205
  1435. tracker_id: 3
  1436. type: WorkflowTransition
  1437. WorkflowTransitions_017:
  1438. new_status_id: 2
  1439. role_id: 1
  1440. old_status_id: 4
  1441. id: 17
  1442. tracker_id: 1
  1443. type: WorkflowTransition
  1444. WorkflowTransitions_043:
  1445. new_status_id: 4
  1446. role_id: 2
  1447. old_status_id: 3
  1448. id: 43
  1449. tracker_id: 1
  1450. type: WorkflowTransition
  1451. WorkflowTransitions_232:
  1452. new_status_id: 2
  1453. role_id: 2
  1454. old_status_id: 5
  1455. id: 232
  1456. tracker_id: 3
  1457. type: WorkflowTransition
  1458. WorkflowTransitions_125:
  1459. new_status_id: 6
  1460. role_id: 2
  1461. old_status_id: 1
  1462. id: 125
  1463. tracker_id: 2
  1464. type: WorkflowTransition
  1465. WorkflowTransitions_151:
  1466. new_status_id: 2
  1467. role_id: 3
  1468. old_status_id: 1
  1469. id: 151
  1470. tracker_id: 2
  1471. type: WorkflowTransition
  1472. WorkflowTransitions_206:
  1473. new_status_id: 1
  1474. role_id: 1
  1475. old_status_id: 6
  1476. id: 206
  1477. tracker_id: 3
  1478. type: WorkflowTransition
  1479. WorkflowTransitions_018:
  1480. new_status_id: 3
  1481. role_id: 1
  1482. old_status_id: 4
  1483. id: 18
  1484. tracker_id: 1
  1485. type: WorkflowTransition
  1486. WorkflowTransitions_044:
  1487. new_status_id: 5
  1488. role_id: 2
  1489. old_status_id: 3
  1490. id: 44
  1491. tracker_id: 1
  1492. type: WorkflowTransition
  1493. WorkflowTransitions_071:
  1494. new_status_id: 1
  1495. role_id: 3
  1496. old_status_id: 3
  1497. id: 71
  1498. tracker_id: 1
  1499. type: WorkflowTransition
  1500. WorkflowTransitions_233:
  1501. new_status_id: 3
  1502. role_id: 2
  1503. old_status_id: 5
  1504. id: 233
  1505. tracker_id: 3
  1506. type: WorkflowTransition
  1507. WorkflowTransitions_126:
  1508. new_status_id: 1
  1509. role_id: 2
  1510. old_status_id: 2
  1511. id: 126
  1512. tracker_id: 2
  1513. type: WorkflowTransition
  1514. WorkflowTransitions_152:
  1515. new_status_id: 3
  1516. role_id: 3
  1517. old_status_id: 1
  1518. id: 152
  1519. tracker_id: 2
  1520. type: WorkflowTransition
  1521. WorkflowTransitions_207:
  1522. new_status_id: 2
  1523. role_id: 1
  1524. old_status_id: 6
  1525. id: 207
  1526. tracker_id: 3
  1527. type: WorkflowTransition
  1528. WorkflowTransitions_019:
  1529. new_status_id: 5
  1530. role_id: 1
  1531. old_status_id: 4
  1532. id: 19
  1533. tracker_id: 1
  1534. type: WorkflowTransition
  1535. WorkflowTransitions_045:
  1536. new_status_id: 6
  1537. role_id: 2
  1538. old_status_id: 3
  1539. id: 45
  1540. tracker_id: 1
  1541. type: WorkflowTransition
  1542. WorkflowTransitions_260:
  1543. new_status_id: 6
  1544. role_id: 3
  1545. old_status_id: 4
  1546. id: 260
  1547. tracker_id: 3
  1548. type: WorkflowTransition
  1549. WorkflowTransitions_234:
  1550. new_status_id: 4
  1551. role_id: 2
  1552. old_status_id: 5
  1553. id: 234
  1554. tracker_id: 3
  1555. type: WorkflowTransition
  1556. WorkflowTransitions_127:
  1557. new_status_id: 3
  1558. role_id: 2
  1559. old_status_id: 2
  1560. id: 127
  1561. tracker_id: 2
  1562. type: WorkflowTransition
  1563. WorkflowTransitions_153:
  1564. new_status_id: 4
  1565. role_id: 3
  1566. old_status_id: 1
  1567. id: 153
  1568. tracker_id: 2
  1569. type: WorkflowTransition
  1570. WorkflowTransitions_180:
  1571. new_status_id: 5
  1572. role_id: 3
  1573. old_status_id: 6
  1574. id: 180
  1575. tracker_id: 2
  1576. type: WorkflowTransition
  1577. WorkflowTransitions_208:
  1578. new_status_id: 3
  1579. role_id: 1
  1580. old_status_id: 6
  1581. id: 208
  1582. tracker_id: 3
  1583. type: WorkflowTransition
  1584. WorkflowTransitions_046:
  1585. new_status_id: 1
  1586. role_id: 2
  1587. old_status_id: 4
  1588. id: 46
  1589. tracker_id: 1
  1590. type: WorkflowTransition
  1591. WorkflowTransitions_072:
  1592. new_status_id: 2
  1593. role_id: 3
  1594. old_status_id: 3
  1595. id: 72
  1596. tracker_id: 1
  1597. type: WorkflowTransition
  1598. WorkflowTransitions_261:
  1599. new_status_id: 1
  1600. role_id: 3
  1601. old_status_id: 5
  1602. id: 261
  1603. tracker_id: 3
  1604. type: WorkflowTransition
  1605. WorkflowTransitions_235:
  1606. new_status_id: 6
  1607. role_id: 2
  1608. old_status_id: 5
  1609. id: 235
  1610. tracker_id: 3
  1611. type: WorkflowTransition
  1612. WorkflowTransitions_154:
  1613. new_status_id: 5
  1614. role_id: 3
  1615. old_status_id: 1
  1616. id: 154
  1617. tracker_id: 2
  1618. type: WorkflowTransition
  1619. WorkflowTransitions_181:
  1620. new_status_id: 2
  1621. role_id: 1
  1622. old_status_id: 1
  1623. id: 181
  1624. tracker_id: 3
  1625. type: WorkflowTransition
  1626. WorkflowTransitions_209:
  1627. new_status_id: 4
  1628. role_id: 1
  1629. old_status_id: 6
  1630. id: 209
  1631. tracker_id: 3
  1632. type: WorkflowTransition
  1633. WorkflowTransitions_047:
  1634. new_status_id: 2
  1635. role_id: 2
  1636. old_status_id: 4
  1637. id: 47
  1638. tracker_id: 1
  1639. type: WorkflowTransition
  1640. WorkflowTransitions_073:
  1641. new_status_id: 4
  1642. role_id: 3
  1643. old_status_id: 3
  1644. id: 73
  1645. tracker_id: 1
  1646. type: WorkflowTransition
  1647. WorkflowTransitions_128:
  1648. new_status_id: 4
  1649. role_id: 2
  1650. old_status_id: 2
  1651. id: 128
  1652. tracker_id: 2
  1653. type: WorkflowTransition
  1654. WorkflowTransitions_262:
  1655. new_status_id: 2
  1656. role_id: 3
  1657. old_status_id: 5
  1658. id: 262
  1659. tracker_id: 3
  1660. type: WorkflowTransition
  1661. WorkflowTransitions_236:
  1662. new_status_id: 1
  1663. role_id: 2
  1664. old_status_id: 6
  1665. id: 236
  1666. tracker_id: 3
  1667. type: WorkflowTransition
  1668. WorkflowTransitions_155:
  1669. new_status_id: 6
  1670. role_id: 3
  1671. old_status_id: 1
  1672. id: 155
  1673. tracker_id: 2
  1674. type: WorkflowTransition
  1675. WorkflowTransitions_048:
  1676. new_status_id: 3
  1677. role_id: 2
  1678. old_status_id: 4
  1679. id: 48
  1680. tracker_id: 1
  1681. type: WorkflowTransition
  1682. WorkflowTransitions_074:
  1683. new_status_id: 5
  1684. role_id: 3
  1685. old_status_id: 3
  1686. id: 74
  1687. tracker_id: 1
  1688. type: WorkflowTransition
  1689. WorkflowTransitions_129:
  1690. new_status_id: 5
  1691. role_id: 2
  1692. old_status_id: 2
  1693. id: 129
  1694. tracker_id: 2
  1695. type: WorkflowTransition
  1696. WorkflowTransitions_263:
  1697. new_status_id: 3
  1698. role_id: 3
  1699. old_status_id: 5
  1700. id: 263
  1701. tracker_id: 3
  1702. type: WorkflowTransition
  1703. WorkflowTransitions_237:
  1704. new_status_id: 2
  1705. role_id: 2
  1706. old_status_id: 6
  1707. id: 237
  1708. tracker_id: 3
  1709. type: WorkflowTransition
  1710. WorkflowTransitions_182:
  1711. new_status_id: 3
  1712. role_id: 1
  1713. old_status_id: 1
  1714. id: 182
  1715. tracker_id: 3
  1716. type: WorkflowTransition
  1717. WorkflowTransitions_049:
  1718. new_status_id: 5
  1719. role_id: 2
  1720. old_status_id: 4
  1721. id: 49
  1722. tracker_id: 1
  1723. type: WorkflowTransition
  1724. WorkflowTransitions_075:
  1725. new_status_id: 6
  1726. role_id: 3
  1727. old_status_id: 3
  1728. id: 75
  1729. tracker_id: 1
  1730. type: WorkflowTransition
  1731. WorkflowTransitions_156:
  1732. new_status_id: 1
  1733. role_id: 3
  1734. old_status_id: 2
  1735. id: 156
  1736. tracker_id: 2
  1737. type: WorkflowTransition
  1738. WorkflowTransitions_264:
  1739. new_status_id: 4
  1740. role_id: 3
  1741. old_status_id: 5
  1742. id: 264
  1743. tracker_id: 3
  1744. type: WorkflowTransition
  1745. WorkflowTransitions_238:
  1746. new_status_id: 3
  1747. role_id: 2
  1748. old_status_id: 6
  1749. id: 238
  1750. tracker_id: 3
  1751. type: WorkflowTransition
  1752. WorkflowTransitions_183:
  1753. new_status_id: 4
  1754. role_id: 1
  1755. old_status_id: 1
  1756. id: 183
  1757. tracker_id: 3
  1758. type: WorkflowTransition
  1759. WorkflowTransitions_076:
  1760. new_status_id: 1
  1761. role_id: 3
  1762. old_status_id: 4
  1763. id: 76
  1764. tracker_id: 1
  1765. type: WorkflowTransition
  1766. WorkflowTransitions_157:
  1767. new_status_id: 3
  1768. role_id: 3
  1769. old_status_id: 2
  1770. id: 157
  1771. tracker_id: 2
  1772. type: WorkflowTransition
  1773. WorkflowTransitions_265:
  1774. new_status_id: 6
  1775. role_id: 3
  1776. old_status_id: 5
  1777. id: 265
  1778. tracker_id: 3
  1779. type: WorkflowTransition
  1780. WorkflowTransitions_239:
  1781. new_status_id: 4
  1782. role_id: 2
  1783. old_status_id: 6
  1784. id: 239
  1785. tracker_id: 3
  1786. type: WorkflowTransition
  1787. WorkflowTransitions_077:
  1788. new_status_id: 2
  1789. role_id: 3
  1790. old_status_id: 4
  1791. id: 77
  1792. tracker_id: 1
  1793. type: WorkflowTransition
  1794. WorkflowTransitions_158:
  1795. new_status_id: 4
  1796. role_id: 3
  1797. old_status_id: 2
  1798. id: 158
  1799. tracker_id: 2
  1800. type: WorkflowTransition
  1801. WorkflowTransitions_184:
  1802. new_status_id: 5
  1803. role_id: 1
  1804. old_status_id: 1
  1805. id: 184
  1806. tracker_id: 3
  1807. type: WorkflowTransition
  1808. WorkflowTransitions_266:
  1809. new_status_id: 1
  1810. role_id: 3
  1811. old_status_id: 6
  1812. id: 266
  1813. tracker_id: 3
  1814. type: WorkflowTransition
  1815. WorkflowTransitions_078:
  1816. new_status_id: 3
  1817. role_id: 3
  1818. old_status_id: 4
  1819. id: 78
  1820. tracker_id: 1
  1821. type: WorkflowTransition
  1822. WorkflowTransitions_159:
  1823. new_status_id: 5
  1824. role_id: 3
  1825. old_status_id: 2
  1826. id: 159
  1827. tracker_id: 2
  1828. type: WorkflowTransition
  1829. WorkflowTransitions_185:
  1830. new_status_id: 6
  1831. role_id: 1
  1832. old_status_id: 1
  1833. id: 185
  1834. tracker_id: 3
  1835. type: WorkflowTransition
  1836. WorkflowTransitions_267:
  1837. new_status_id: 2
  1838. role_id: 3
  1839. old_status_id: 6
  1840. id: 267
  1841. tracker_id: 3
  1842. type: WorkflowTransition
  1843. WorkflowTransitions_079:
  1844. new_status_id: 5
  1845. role_id: 3
  1846. old_status_id: 4
  1847. id: 79
  1848. tracker_id: 1
  1849. type: WorkflowTransition
  1850. WorkflowTransitions_186:
  1851. new_status_id: 1
  1852. role_id: 1
  1853. old_status_id: 2
  1854. id: 186
  1855. tracker_id: 3
  1856. type: WorkflowTransition
  1857. WorkflowTransitions_268:
  1858. new_status_id: 3
  1859. role_id: 3
  1860. old_status_id: 6
  1861. id: 268
  1862. tracker_id: 3
  1863. type: WorkflowTransition
  1864. WorkflowTransitions_187:
  1865. new_status_id: 3
  1866. role_id: 1
  1867. old_status_id: 2
  1868. id: 187
  1869. tracker_id: 3
  1870. type: WorkflowTransition
  1871. WorkflowTransitions_269:
  1872. new_status_id: 4
  1873. role_id: 3
  1874. old_status_id: 6
  1875. id: 269
  1876. tracker_id: 3
  1877. type: WorkflowTransition
  1878. WorkflowTransitions_188:
  1879. new_status_id: 4
  1880. role_id: 1
  1881. old_status_id: 2
  1882. id: 188
  1883. tracker_id: 3
  1884. type: WorkflowTransition
  1885. WorkflowTransitions_271:
  1886. new_status_id: 3
  1887. role_id: 1
  1888. old_status_id: 0
  1889. id: 271
  1890. tracker_id: 2
  1891. type: WorkflowTransition
  1892. WorkflowTransitions_272:
  1893. new_status_id: 3
  1894. role_id: 2
  1895. old_status_id: 0
  1896. id: 272
  1897. tracker_id: 1
  1898. type: WorkflowTransition
  1899. WorkflowTransitions_273:
  1900. new_status_id: 2
  1901. role_id: 1
  1902. old_status_id: 0
  1903. id: 273
  1904. tracker_id: 3
  1905. type: WorkflowTransition
  1906. WorkflowTransitions_274:
  1907. new_status_id: 2
  1908. role_id: 1
  1909. old_status_id: 0
  1910. id: 274
  1911. tracker_id: 1
  1912. type: WorkflowTransition
  1913. WorkflowTransitions_275:
  1914. new_status_id: 1
  1915. role_id: 1
  1916. old_status_id: 0
  1917. id: 275
  1918. tracker_id: 1
  1919. type: WorkflowTransition
  1920. WorkflowTransitions_276:
  1921. new_status_id: 1
  1922. role_id: 1
  1923. old_status_id: 0
  1924. id: 276
  1925. tracker_id: 2
  1926. type: WorkflowTransition