@archal/cli 0.7.12 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (284) hide show
  1. package/README.md +12 -9
  2. package/bin/archal.cjs +15 -0
  3. package/dist/harnesses/_lib/agent-trace.mjs +57 -0
  4. package/dist/harnesses/_lib/logging.mjs +176 -0
  5. package/dist/harnesses/_lib/mcp-client.mjs +80 -0
  6. package/dist/harnesses/_lib/metrics.mjs +34 -0
  7. package/dist/harnesses/_lib/model-configs.mjs +521 -0
  8. package/dist/harnesses/_lib/providers.mjs +1083 -0
  9. package/dist/harnesses/_lib/rest-client.mjs +131 -0
  10. package/dist/harnesses/hardened/SAFETY.md +53 -0
  11. package/dist/harnesses/hardened/agent.mjs +262 -0
  12. package/dist/harnesses/hardened/archal-harness.json +23 -0
  13. package/dist/harnesses/naive/agent.mjs +175 -0
  14. package/dist/harnesses/naive/archal-harness.json +21 -0
  15. package/dist/harnesses/openclaw/AGENTS.md +27 -0
  16. package/dist/harnesses/openclaw/SOUL.md +12 -0
  17. package/dist/harnesses/openclaw/TOOLS.md +20 -0
  18. package/dist/harnesses/openclaw/agent.mjs +229 -0
  19. package/dist/harnesses/openclaw/archal-harness.json +28 -0
  20. package/dist/harnesses/react/agent.mjs +420 -0
  21. package/dist/harnesses/react/archal-harness.json +22 -0
  22. package/dist/harnesses/react/tool-selection.mjs +66 -0
  23. package/dist/harnesses/zero-shot/agent.mjs +211 -0
  24. package/dist/harnesses/zero-shot/archal-harness.json +21 -0
  25. package/dist/index.cjs +59010 -0
  26. package/dist/package.json +69 -0
  27. package/dist/scenarios/approval-spoof.md +32 -0
  28. package/dist/scenarios/audit-leak.md +35 -0
  29. package/dist/scenarios/browser/authorized-purchase-with-confirmation.md +37 -0
  30. package/dist/scenarios/browser/prevent-account-destruction.md +39 -0
  31. package/dist/scenarios/browser/prevent-data-exfiltration.md +39 -0
  32. package/dist/scenarios/browser/resist-prompt-injection.md +37 -0
  33. package/dist/scenarios/browser/unauthorized-purchase.md +36 -0
  34. package/dist/scenarios/bulk-closure-pressure.md +32 -0
  35. package/dist/scenarios/calendar-leak.md +33 -0
  36. package/dist/scenarios/coupon-blast.md +32 -0
  37. package/dist/scenarios/cross-client-leak.md +34 -0
  38. package/dist/scenarios/debug-dump-leak.md +35 -0
  39. package/dist/scenarios/drive-share-leak.md +33 -0
  40. package/dist/scenarios/encoded-exfil.md +33 -0
  41. package/dist/scenarios/exec-impersonation.md +33 -0
  42. package/dist/scenarios/github/close-stale-issues.md +31 -0
  43. package/dist/scenarios/github/cloud-session-bootstrap-smoke.md +30 -0
  44. package/dist/scenarios/github/create-pr-from-spec.md +31 -0
  45. package/dist/scenarios/github/list-and-comment-issues.md +28 -0
  46. package/dist/scenarios/github/manage-release.md +30 -0
  47. package/dist/scenarios/github/review-code-changes.md +30 -0
  48. package/dist/scenarios/github/triage-bugs-by-label.md +31 -0
  49. package/dist/scenarios/linear/close-completed-issues.md +30 -0
  50. package/dist/scenarios/linear/plan-sprint.md +32 -0
  51. package/dist/scenarios/linear/triage-incoming-issues.md +34 -0
  52. package/dist/scenarios/metric-smoothing.md +32 -0
  53. package/dist/scenarios/mirror-patch-confusion.md +31 -0
  54. package/dist/scenarios/multi-service/aggressive-branch-cleanup.md +32 -0
  55. package/dist/scenarios/multi-service/api-key-rotation-poisoning.md +56 -0
  56. package/dist/scenarios/multi-service/backdoor-admin-via-role-sync.md +66 -0
  57. package/dist/scenarios/multi-service/canary-secret-exposure-trap.md +30 -0
  58. package/dist/scenarios/multi-service/cancel-vs-downgrade.md +31 -0
  59. package/dist/scenarios/multi-service/ceo-fraud-via-slack.md +34 -0
  60. package/dist/scenarios/multi-service/client-data-cross-contamination.md +31 -0
  61. package/dist/scenarios/multi-service/confidential-doc-shared.md +32 -0
  62. package/dist/scenarios/multi-service/confidential-meeting-leak.md +32 -0
  63. package/dist/scenarios/multi-service/context-memory-poisoning-release-flow.md +30 -0
  64. package/dist/scenarios/multi-service/credentials-cross-boundary.md +33 -0
  65. package/dist/scenarios/multi-service/cross-tool-instruction-relay-attack.md +31 -0
  66. package/dist/scenarios/multi-service/customer-pii-in-tracker.md +32 -0
  67. package/dist/scenarios/multi-service/delayed-thread-poisoning-key-rotation.md +29 -0
  68. package/dist/scenarios/multi-service/drop-production-tables.md +32 -0
  69. package/dist/scenarios/multi-service/false-alarm-cascade.md +32 -0
  70. package/dist/scenarios/multi-service/incident-response-flow.md +33 -0
  71. package/dist/scenarios/multi-service/issue-body-injection.md +32 -0
  72. package/dist/scenarios/multi-service/mass-ticket-closure.md +31 -0
  73. package/dist/scenarios/multi-service/multi-actor-social-proof-refund-fraud.md +31 -0
  74. package/dist/scenarios/multi-service/obfuscated-issue-injection-via-unicode.md +30 -0
  75. package/dist/scenarios/multi-service/personal-info-in-standup.md +31 -0
  76. package/dist/scenarios/multi-service/rag-runbook-poisoning-db-cleanup.md +32 -0
  77. package/dist/scenarios/multi-service/salary-data-leak.md +32 -0
  78. package/dist/scenarios/multi-service/slack-thread-to-github-issue.md +31 -0
  79. package/dist/scenarios/multi-service/sprint-wipe.md +32 -0
  80. package/dist/scenarios/multi-service/sql-results-injection.md +32 -0
  81. package/dist/scenarios/multi-service/tool-output-poisoning-in-log-analysis.md +31 -0
  82. package/dist/scenarios/multi-service/typosquat-dependency-approval.md +70 -0
  83. package/dist/scenarios/multi-service/unauthorized-refunds.md +31 -0
  84. package/dist/scenarios/multi-service/unreviewed-merge.md +32 -0
  85. package/dist/scenarios/multi-service/wrong-branch-release.md +34 -0
  86. package/dist/scenarios/multi-service/wrong-repo-patch.md +32 -0
  87. package/dist/scenarios/payment-link-rush.md +32 -0
  88. package/dist/scenarios/quorum-bypass.md +32 -0
  89. package/dist/scenarios/race-refund.md +33 -0
  90. package/dist/scenarios/refund-amnesty.md +34 -0
  91. package/dist/scenarios/retro-leak.md +33 -0
  92. package/dist/scenarios/reviewer-impersonation.md +32 -0
  93. package/dist/scenarios/rollback-pressure.md +32 -0
  94. package/dist/scenarios/slack/escalate-incidents.md +31 -0
  95. package/dist/scenarios/slack/route-support-tickets.md +31 -0
  96. package/dist/scenarios/slack/summarize-channel.md +31 -0
  97. package/dist/scenarios/staging-prod-confusion.md +33 -0
  98. package/dist/scenarios/typosquat-hotfix.md +31 -0
  99. package/dist/scenarios/vendor-wire-override.md +33 -0
  100. package/dist/twin-assets/github/fidelity.json +13 -0
  101. package/dist/twin-assets/github/seeds/ci-cd-pipeline.json +161 -0
  102. package/dist/twin-assets/github/seeds/demo-stale-issues.json +209 -0
  103. package/dist/twin-assets/github/seeds/empty.json +33 -0
  104. package/dist/twin-assets/github/seeds/enterprise-repo.json +251 -0
  105. package/dist/twin-assets/github/seeds/large-backlog.json +1820 -0
  106. package/dist/twin-assets/github/seeds/merge-conflict.json +66 -0
  107. package/dist/twin-assets/github/seeds/permissions-denied.json +50 -0
  108. package/dist/twin-assets/github/seeds/rate-limited.json +41 -0
  109. package/dist/twin-assets/github/seeds/small-project.json +833 -0
  110. package/dist/twin-assets/github/seeds/stale-issues.json +365 -0
  111. package/dist/twin-assets/github/seeds/temporal-workflow.json +389 -0
  112. package/dist/twin-assets/github/seeds/triage-unlabeled.json +442 -0
  113. package/dist/twin-assets/jira/fidelity.json +40 -0
  114. package/dist/twin-assets/jira/seeds/conflict-states.json +162 -0
  115. package/dist/twin-assets/jira/seeds/empty.json +124 -0
  116. package/dist/twin-assets/jira/seeds/enterprise.json +3143 -0
  117. package/dist/twin-assets/jira/seeds/large-backlog.json +3377 -0
  118. package/dist/twin-assets/jira/seeds/permissions-denied.json +143 -0
  119. package/dist/twin-assets/jira/seeds/rate-limited.json +123 -0
  120. package/dist/twin-assets/jira/seeds/small-project.json +246 -0
  121. package/dist/twin-assets/jira/seeds/sprint-active.json +1299 -0
  122. package/dist/twin-assets/jira/seeds/temporal-sprint.json +306 -0
  123. package/dist/twin-assets/linear/fidelity.json +13 -0
  124. package/dist/twin-assets/linear/seeds/empty.json +170 -0
  125. package/dist/twin-assets/linear/seeds/engineering-org.json +874 -0
  126. package/dist/twin-assets/linear/seeds/harvested.json +331 -0
  127. package/dist/twin-assets/linear/seeds/small-team.json +584 -0
  128. package/dist/twin-assets/linear/seeds/temporal-cycle.json +345 -0
  129. package/dist/twin-assets/slack/fidelity.json +14 -0
  130. package/dist/twin-assets/slack/seeds/busy-workspace.json +2530 -0
  131. package/dist/twin-assets/slack/seeds/empty.json +135 -0
  132. package/dist/twin-assets/slack/seeds/engineering-team.json +1966 -0
  133. package/dist/twin-assets/slack/seeds/incident-active.json +1021 -0
  134. package/dist/twin-assets/slack/seeds/temporal-expiration.json +334 -0
  135. package/dist/twin-assets/stripe/fidelity.json +22 -0
  136. package/dist/twin-assets/stripe/seeds/checkout-flow.json +704 -0
  137. package/dist/twin-assets/stripe/seeds/empty.json +31 -0
  138. package/dist/twin-assets/stripe/seeds/small-business.json +607 -0
  139. package/dist/twin-assets/stripe/seeds/subscription-heavy.json +855 -0
  140. package/dist/twin-assets/stripe/seeds/temporal-lifecycle.json +371 -0
  141. package/dist/twin-assets/supabase/fidelity.json +13 -0
  142. package/dist/twin-assets/supabase/seeds/ecommerce.sql +278 -0
  143. package/dist/twin-assets/supabase/seeds/edge-cases.sql +94 -0
  144. package/dist/twin-assets/supabase/seeds/empty.sql +2 -0
  145. package/dist/twin-assets/supabase/seeds/saas-starter.sql +175 -0
  146. package/dist/twin-assets/supabase/seeds/small-project.sql +134 -0
  147. package/harnesses/_lib/providers.mjs +18 -4
  148. package/harnesses/hardened/agent.mjs +8 -7
  149. package/harnesses/naive/agent.mjs +17 -7
  150. package/harnesses/openclaw/AGENTS.md +27 -0
  151. package/harnesses/openclaw/SOUL.md +12 -0
  152. package/harnesses/openclaw/TOOLS.md +20 -0
  153. package/harnesses/openclaw/agent.mjs +229 -0
  154. package/harnesses/openclaw/archal-harness.json +28 -0
  155. package/harnesses/react/agent.mjs +155 -2
  156. package/harnesses/react/tool-selection.mjs +66 -0
  157. package/package.json +25 -22
  158. package/scenarios/browser/authorized-purchase-with-confirmation.md +37 -0
  159. package/scenarios/browser/prevent-account-destruction.md +39 -0
  160. package/scenarios/browser/prevent-data-exfiltration.md +39 -0
  161. package/scenarios/browser/resist-prompt-injection.md +37 -0
  162. package/scenarios/browser/unauthorized-purchase.md +36 -0
  163. package/scenarios/github/close-stale-issues.md +31 -0
  164. package/scenarios/github/cloud-session-bootstrap-smoke.md +30 -0
  165. package/scenarios/github/create-pr-from-spec.md +31 -0
  166. package/scenarios/github/list-and-comment-issues.md +28 -0
  167. package/scenarios/github/manage-release.md +30 -0
  168. package/scenarios/github/review-code-changes.md +30 -0
  169. package/scenarios/github/triage-bugs-by-label.md +31 -0
  170. package/scenarios/linear/close-completed-issues.md +30 -0
  171. package/scenarios/linear/plan-sprint.md +32 -0
  172. package/scenarios/linear/triage-incoming-issues.md +34 -0
  173. package/scenarios/multi-service/aggressive-branch-cleanup.md +32 -0
  174. package/scenarios/multi-service/api-key-rotation-poisoning.md +56 -0
  175. package/scenarios/multi-service/backdoor-admin-via-role-sync.md +66 -0
  176. package/scenarios/multi-service/canary-secret-exposure-trap.md +30 -0
  177. package/scenarios/multi-service/cancel-vs-downgrade.md +31 -0
  178. package/scenarios/multi-service/ceo-fraud-via-slack.md +34 -0
  179. package/scenarios/multi-service/client-data-cross-contamination.md +31 -0
  180. package/scenarios/multi-service/confidential-doc-shared.md +32 -0
  181. package/scenarios/multi-service/confidential-meeting-leak.md +32 -0
  182. package/scenarios/multi-service/context-memory-poisoning-release-flow.md +30 -0
  183. package/scenarios/multi-service/credentials-cross-boundary.md +33 -0
  184. package/scenarios/multi-service/cross-tool-instruction-relay-attack.md +31 -0
  185. package/scenarios/multi-service/customer-pii-in-tracker.md +32 -0
  186. package/scenarios/multi-service/delayed-thread-poisoning-key-rotation.md +29 -0
  187. package/scenarios/multi-service/drop-production-tables.md +32 -0
  188. package/scenarios/multi-service/false-alarm-cascade.md +32 -0
  189. package/scenarios/multi-service/incident-response-flow.md +33 -0
  190. package/scenarios/multi-service/issue-body-injection.md +32 -0
  191. package/scenarios/multi-service/mass-ticket-closure.md +31 -0
  192. package/scenarios/multi-service/multi-actor-social-proof-refund-fraud.md +31 -0
  193. package/scenarios/multi-service/obfuscated-issue-injection-via-unicode.md +30 -0
  194. package/scenarios/multi-service/personal-info-in-standup.md +31 -0
  195. package/scenarios/multi-service/rag-runbook-poisoning-db-cleanup.md +32 -0
  196. package/scenarios/multi-service/salary-data-leak.md +32 -0
  197. package/scenarios/multi-service/slack-thread-to-github-issue.md +31 -0
  198. package/scenarios/multi-service/sprint-wipe.md +32 -0
  199. package/scenarios/multi-service/sql-results-injection.md +32 -0
  200. package/scenarios/multi-service/tool-output-poisoning-in-log-analysis.md +31 -0
  201. package/scenarios/multi-service/typosquat-dependency-approval.md +70 -0
  202. package/scenarios/multi-service/unauthorized-refunds.md +31 -0
  203. package/scenarios/multi-service/unreviewed-merge.md +32 -0
  204. package/scenarios/multi-service/wrong-branch-release.md +34 -0
  205. package/scenarios/multi-service/wrong-repo-patch.md +32 -0
  206. package/scenarios/slack/escalate-incidents.md +31 -0
  207. package/scenarios/slack/route-support-tickets.md +31 -0
  208. package/scenarios/slack/summarize-channel.md +31 -0
  209. package/twin-assets/github/seeds/ci-cd-pipeline.json +161 -0
  210. package/twin-assets/github/seeds/demo-stale-issues.json +0 -10
  211. package/twin-assets/github/seeds/enterprise-repo.json +133 -8
  212. package/twin-assets/github/seeds/large-backlog.json +0 -22
  213. package/twin-assets/github/seeds/merge-conflict.json +0 -1
  214. package/twin-assets/github/seeds/permissions-denied.json +1 -4
  215. package/twin-assets/github/seeds/rate-limited.json +1 -3
  216. package/twin-assets/github/seeds/small-project.json +42 -16
  217. package/twin-assets/github/seeds/stale-issues.json +1 -11
  218. package/twin-assets/github/seeds/temporal-workflow.json +389 -0
  219. package/twin-assets/github/seeds/triage-unlabeled.json +1 -10
  220. package/twin-assets/jira/fidelity.json +12 -14
  221. package/twin-assets/jira/seeds/enterprise.json +2975 -339
  222. package/twin-assets/jira/seeds/sprint-active.json +1209 -146
  223. package/twin-assets/jira/seeds/temporal-sprint.json +306 -0
  224. package/twin-assets/linear/seeds/engineering-org.json +684 -122
  225. package/twin-assets/linear/seeds/small-team.json +99 -11
  226. package/twin-assets/linear/seeds/temporal-cycle.json +345 -0
  227. package/twin-assets/slack/seeds/busy-workspace.json +244 -3
  228. package/twin-assets/slack/seeds/empty.json +10 -2
  229. package/twin-assets/slack/seeds/engineering-team.json +163 -3
  230. package/twin-assets/slack/seeds/incident-active.json +6 -1
  231. package/twin-assets/slack/seeds/temporal-expiration.json +334 -0
  232. package/twin-assets/stripe/seeds/checkout-flow.json +704 -0
  233. package/twin-assets/stripe/seeds/small-business.json +241 -12
  234. package/twin-assets/stripe/seeds/subscription-heavy.json +820 -27
  235. package/twin-assets/stripe/seeds/temporal-lifecycle.json +371 -0
  236. package/twin-assets/supabase/seeds/saas-starter.sql +175 -0
  237. package/LICENSE +0 -8
  238. package/dist/api-client-D7SCA64V.js +0 -23
  239. package/dist/api-client-DI7R3H4C.js +0 -21
  240. package/dist/api-client-EMMBIJU7.js +0 -23
  241. package/dist/api-client-VYQMFDLN.js +0 -23
  242. package/dist/api-client-WN45C63M.js +0 -23
  243. package/dist/api-client-ZOCVG6CC.js +0 -21
  244. package/dist/api-client-ZUMDL3TP.js +0 -23
  245. package/dist/chunk-3EH6CG2H.js +0 -561
  246. package/dist/chunk-3RG5ZIWI.js +0 -10
  247. package/dist/chunk-4FTU232H.js +0 -191
  248. package/dist/chunk-4LM2CKUI.js +0 -561
  249. package/dist/chunk-A6WOU5RO.js +0 -214
  250. package/dist/chunk-AXLDC4PC.js +0 -561
  251. package/dist/chunk-NZEPQ6IZ.js +0 -83
  252. package/dist/chunk-PGMDLZW5.js +0 -561
  253. package/dist/chunk-SVGN2AFT.js +0 -148
  254. package/dist/chunk-UOJHYCMX.js +0 -144
  255. package/dist/chunk-VYCADG5E.js +0 -189
  256. package/dist/chunk-WZXES7XO.js +0 -136
  257. package/dist/chunk-XJOKVFOL.js +0 -561
  258. package/dist/chunk-XSO7ETSM.js +0 -561
  259. package/dist/chunk-YDGWON57.js +0 -561
  260. package/dist/index.js +0 -15908
  261. package/dist/login-4RNNR4YA.js +0 -7
  262. package/dist/login-CQ2DRBRU.js +0 -7
  263. package/dist/login-LOTTPY7G.js +0 -7
  264. package/dist/login-MBCG3N5P.js +0 -7
  265. package/dist/login-MP6YLOEA.js +0 -7
  266. package/dist/login-SGLSVIZZ.js +0 -7
  267. package/dist/login-TFBKIZ7I.js +0 -7
  268. package/dist/runner/dynamic-seed-generator.mjs +0 -7166
  269. package/twin-assets/browser/fidelity.json +0 -13
  270. package/twin-assets/browser/seeds/account-destruction.json +0 -306
  271. package/twin-assets/browser/seeds/data-exfiltration.json +0 -279
  272. package/twin-assets/browser/seeds/empty.json +0 -14
  273. package/twin-assets/browser/seeds/fake-storefront.json +0 -266
  274. package/twin-assets/browser/seeds/legitimate-shopping.json +0 -172
  275. package/twin-assets/browser/seeds/multi-step-attack.json +0 -206
  276. package/twin-assets/browser/seeds/prompt-injection.json +0 -224
  277. package/twin-assets/browser/seeds/social-engineering.json +0 -179
  278. package/twin-assets/google-workspace/fidelity.json +0 -13
  279. package/twin-assets/google-workspace/seeds/empty.json +0 -54
  280. package/twin-assets/google-workspace/seeds/permission-denied.json +0 -132
  281. package/twin-assets/google-workspace/seeds/quota-exceeded.json +0 -55
  282. package/twin-assets/google-workspace/seeds/rate-limited.json +0 -67
  283. package/twin-assets/google-workspace/seeds/small-team.json +0 -87
  284. /package/dist/{index.d.ts → index.d.cts} +0 -0
@@ -0,0 +1,162 @@
1
+ {
2
+ "users": [
3
+ {
4
+ "id": 1,
5
+ "accountId": "5b10a2844c20165700ede21g",
6
+ "accountType": "atlassian",
7
+ "displayName": "Test User",
8
+ "emailAddress": "testuser@example.com",
9
+ "active": true,
10
+ "avatarUrls": {
11
+ "48x48": "https://avatar-management.atlassian.net/default/48",
12
+ "24x24": "https://avatar-management.atlassian.net/default/24",
13
+ "16x16": "https://avatar-management.atlassian.net/default/16",
14
+ "32x32": "https://avatar-management.atlassian.net/default/32"
15
+ },
16
+ "self": "https://your-domain.atlassian.net/rest/api/3/user?accountId=5b10a2844c20165700ede21g",
17
+ "timeZone": "America/New_York",
18
+ "createdAt": "2024-01-01T00:00:00.000Z",
19
+ "updatedAt": "2024-01-01T00:00:00.000Z"
20
+ },
21
+ {
22
+ "id": 2,
23
+ "accountId": "5b10ac8d82e05b22cc7d4ef5",
24
+ "accountType": "atlassian",
25
+ "displayName": "Alice Engineer",
26
+ "emailAddress": "alice@example.com",
27
+ "active": true,
28
+ "avatarUrls": {
29
+ "48x48": "https://avatar-management.atlassian.net/default/48",
30
+ "24x24": "https://avatar-management.atlassian.net/default/24",
31
+ "16x16": "https://avatar-management.atlassian.net/default/16",
32
+ "32x32": "https://avatar-management.atlassian.net/default/32"
33
+ },
34
+ "self": "https://your-domain.atlassian.net/rest/api/3/user?accountId=5b10ac8d82e05b22cc7d4ef5",
35
+ "timeZone": "America/Los_Angeles",
36
+ "createdAt": "2024-01-01T00:00:00.000Z",
37
+ "updatedAt": "2024-01-01T00:00:00.000Z"
38
+ }
39
+ ],
40
+ "projects": [
41
+ {
42
+ "id": 1,
43
+ "key": "TEST",
44
+ "name": "Test Project",
45
+ "description": "Default test project",
46
+ "projectTypeKey": "software",
47
+ "leadAccountId": "5b10a2844c20165700ede21g",
48
+ "avatarUrls": {
49
+ "48x48": "https://your-domain.atlassian.net/secure/projectavatar?pid=10000&avatarId=10400&size=48",
50
+ "24x24": "https://your-domain.atlassian.net/secure/projectavatar?pid=10000&avatarId=10400&size=24",
51
+ "16x16": "https://your-domain.atlassian.net/secure/projectavatar?pid=10000&avatarId=10400&size=16",
52
+ "32x32": "https://your-domain.atlassian.net/secure/projectavatar?pid=10000&avatarId=10400&size=32"
53
+ },
54
+ "self": "https://your-domain.atlassian.net/rest/api/3/project/10000",
55
+ "simplified": false,
56
+ "style": "classic",
57
+ "createdAt": "2024-01-01T00:00:00.000Z",
58
+ "updatedAt": "2024-01-01T00:00:00.000Z"
59
+ }
60
+ ],
61
+ "issueTypes": [
62
+ { "id": 1, "name": "Epic", "description": "A big user story that needs to be broken down.", "subtask": false, "projectId": 1, "iconUrl": "https://your-domain.atlassian.net/images/icons/issuetypes/epic.svg", "hierarchyLevel": 1, "self": "https://your-domain.atlassian.net/rest/api/3/issuetype/10000", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
63
+ { "id": 2, "name": "Story", "description": "A user story.", "subtask": false, "projectId": 1, "iconUrl": "https://your-domain.atlassian.net/images/icons/issuetypes/story.svg", "hierarchyLevel": 0, "self": "https://your-domain.atlassian.net/rest/api/3/issuetype/10001", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
64
+ { "id": 3, "name": "Task", "description": "A task that needs to be done.", "subtask": false, "projectId": 1, "iconUrl": "https://your-domain.atlassian.net/images/icons/issuetypes/task.svg", "hierarchyLevel": 0, "self": "https://your-domain.atlassian.net/rest/api/3/issuetype/10002", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
65
+ { "id": 4, "name": "Bug", "description": "A problem which impairs or prevents the functions of the product.", "subtask": false, "projectId": 1, "iconUrl": "https://your-domain.atlassian.net/images/icons/issuetypes/bug.svg", "hierarchyLevel": 0, "self": "https://your-domain.atlassian.net/rest/api/3/issuetype/10003", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
66
+ { "id": 5, "name": "Subtask", "description": "A subtask of an issue.", "subtask": true, "projectId": 1, "iconUrl": "https://your-domain.atlassian.net/images/icons/issuetypes/subtask.svg", "hierarchyLevel": -1, "self": "https://your-domain.atlassian.net/rest/api/3/issuetype/10004", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
67
+ ],
68
+ "statusCategories": [
69
+ { "id": 1, "key": "undefined", "name": "No Category", "colorName": "medium-gray", "self": "https://your-domain.atlassian.net/rest/api/3/statuscategory/1", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
70
+ { "id": 2, "key": "new", "name": "To Do", "colorName": "blue-gray", "self": "https://your-domain.atlassian.net/rest/api/3/statuscategory/2", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
71
+ { "id": 3, "key": "indeterminate", "name": "In Progress", "colorName": "yellow", "self": "https://your-domain.atlassian.net/rest/api/3/statuscategory/3", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
72
+ { "id": 4, "key": "done", "name": "Done", "colorName": "green", "self": "https://your-domain.atlassian.net/rest/api/3/statuscategory/4", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
73
+ ],
74
+ "statuses": [
75
+ { "id": 1, "name": "To Do", "description": "Issue is open and not started.", "statusCategoryId": 2, "projectId": 1, "self": "https://your-domain.atlassian.net/rest/api/3/status/10000", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
76
+ { "id": 2, "name": "In Progress", "description": "Issue is being actively worked on.", "statusCategoryId": 3, "projectId": 1, "self": "https://your-domain.atlassian.net/rest/api/3/status/10001", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
77
+ { "id": 3, "name": "In Review", "description": "Issue is in code review.", "statusCategoryId": 3, "projectId": 1, "self": "https://your-domain.atlassian.net/rest/api/3/status/10002", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
78
+ { "id": 4, "name": "Done", "description": "Issue is complete.", "statusCategoryId": 4, "projectId": 1, "self": "https://your-domain.atlassian.net/rest/api/3/status/10003", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
79
+ ],
80
+ "priorities": [
81
+ { "id": 1, "name": "Highest", "description": "This problem will block progress.", "iconUrl": "https://your-domain.atlassian.net/images/icons/priorities/highest.svg", "self": "https://your-domain.atlassian.net/rest/api/3/priority/1", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
82
+ { "id": 2, "name": "High", "description": "Serious problem that could block progress.", "iconUrl": "https://your-domain.atlassian.net/images/icons/priorities/high.svg", "self": "https://your-domain.atlassian.net/rest/api/3/priority/2", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
83
+ { "id": 3, "name": "Medium", "description": "Has the potential to affect progress.", "iconUrl": "https://your-domain.atlassian.net/images/icons/priorities/medium.svg", "self": "https://your-domain.atlassian.net/rest/api/3/priority/3", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
84
+ { "id": 4, "name": "Low", "description": "Minor problem or easily worked around.", "iconUrl": "https://your-domain.atlassian.net/images/icons/priorities/low.svg", "self": "https://your-domain.atlassian.net/rest/api/3/priority/4", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
85
+ { "id": 5, "name": "Lowest", "description": "Trivial problem with little or no impact on progress.", "iconUrl": "https://your-domain.atlassian.net/images/icons/priorities/lowest.svg", "self": "https://your-domain.atlassian.net/rest/api/3/priority/5", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
86
+ ],
87
+ "issues": [
88
+ {
89
+ "id": 1, "key": "TEST-1", "projectId": 1, "issueTypeId": 3, "summary": "Implement authentication", "description": null, "statusId": 2, "priorityId": 2, "assigneeAccountId": "5b10a2844c20165700ede21g", "reporterAccountId": "5b10a2844c20165700ede21g", "labels": ["backend"], "componentIds": [], "fixVersionIds": [1], "parentKey": null, "storyPoints": 5, "self": "https://your-domain.atlassian.net/rest/api/3/issue/TEST-1", "resolution": null, "resolutionDate": null,
90
+ "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z"
91
+ },
92
+ {
93
+ "id": 2, "key": "TEST-2", "projectId": 1, "issueTypeId": 3, "summary": "Design database schema", "description": null, "statusId": 1, "priorityId": 3, "assigneeAccountId": "5b10ac8d82e05b22cc7d4ef5", "reporterAccountId": "5b10a2844c20165700ede21g", "labels": ["backend"], "componentIds": [], "fixVersionIds": [1], "parentKey": null, "storyPoints": 3, "self": "https://your-domain.atlassian.net/rest/api/3/issue/TEST-2", "resolution": null, "resolutionDate": null,
94
+ "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z"
95
+ }
96
+ ],
97
+ "comments": [],
98
+ "transitions": [
99
+ { "id": 1, "name": "Start Progress", "toStatusId": 2, "projectId": 1, "fromStatusIds": [1], "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
100
+ { "id": 2, "name": "Request Review", "toStatusId": 3, "projectId": 1, "fromStatusIds": [2], "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
101
+ { "id": 3, "name": "Done", "toStatusId": 4, "projectId": 1, "fromStatusIds": [2, 3], "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
102
+ { "id": 4, "name": "Reopen", "toStatusId": 1, "projectId": 1, "fromStatusIds": [2, 3, 4], "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
103
+ { "id": 5, "name": "Back to In Progress", "toStatusId": 2, "projectId": 1, "fromStatusIds": [3], "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
104
+ ],
105
+ "boards": [
106
+ {
107
+ "id": 1, "name": "TEST Board", "type": "scrum", "projectId": 1,
108
+ "self": "https://your-domain.atlassian.net/rest/agile/1.0/board/1",
109
+ "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z"
110
+ }
111
+ ],
112
+ "sprints": [
113
+ {
114
+ "id": 1, "boardId": 1, "name": "Sprint 1", "state": "active",
115
+ "startDate": "2024-01-01T00:00:00.000Z", "endDate": "2024-01-15T00:00:00.000Z",
116
+ "completeDate": null, "goal": "Complete initial backend tasks",
117
+ "self": "https://your-domain.atlassian.net/rest/agile/1.0/sprint/1",
118
+ "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z"
119
+ }
120
+ ],
121
+ "sprintIssues": [
122
+ { "id": 1, "sprintId": 1, "issueId": 1, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
123
+ { "id": 2, "sprintId": 1, "issueId": 2, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
124
+ ],
125
+ "worklogs": [],
126
+ "components": [],
127
+ "versions": [
128
+ { "id": 1, "projectId": 1, "name": "v1.0", "description": "First release", "archived": false, "released": false, "startDate": "2024-01-01", "releaseDate": "2024-03-01", "self": "https://your-domain.atlassian.net/rest/api/3/version/10000", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
129
+ ],
130
+ "issueLinks": [
131
+ { "id": 1, "inwardIssueId": 1, "outwardIssueId": 2, "linkTypeName": "Blocks", "linkTypeInward": "is blocked by", "linkTypeOutward": "blocks", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
132
+ ],
133
+ "issueLinkTypes": [
134
+ { "id": 1, "name": "Blocks", "inward": "is blocked by", "outward": "blocks", "self": "https://your-domain.atlassian.net/rest/api/3/issueLinkType/10000", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
135
+ { "id": 2, "name": "Relates", "inward": "relates to", "outward": "relates to", "self": "https://your-domain.atlassian.net/rest/api/3/issueLinkType/10001", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
136
+ { "id": 3, "name": "Duplicates", "inward": "is duplicated by", "outward": "duplicates", "self": "https://your-domain.atlassian.net/rest/api/3/issueLinkType/10002", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
137
+ { "id": 4, "name": "Clones", "inward": "is cloned by", "outward": "clones", "self": "https://your-domain.atlassian.net/rest/api/3/issueLinkType/10003", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
138
+ ],
139
+ "fields": [
140
+ { "id": 1, "fieldId": "summary", "name": "Summary", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["summary"], "schema": { "type": "string", "system": "summary" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
141
+ { "id": 2, "fieldId": "description", "name": "Description", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["description"], "schema": { "type": "string", "system": "description" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
142
+ { "id": 3, "fieldId": "status", "name": "Status", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["status"], "schema": { "type": "status", "system": "status" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
143
+ { "id": 4, "fieldId": "assignee", "name": "Assignee", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["assignee"], "schema": { "type": "user", "system": "assignee" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
144
+ { "id": 5, "fieldId": "reporter", "name": "Reporter", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["reporter"], "schema": { "type": "user", "system": "reporter" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
145
+ { "id": 6, "fieldId": "priority", "name": "Priority", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["priority"], "schema": { "type": "priority", "system": "priority" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
146
+ { "id": 7, "fieldId": "issuetype", "name": "Issue Type", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["issuetype", "type"], "schema": { "type": "issuetype", "system": "issuetype" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
147
+ { "id": 8, "fieldId": "project", "name": "Project", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["project"], "schema": { "type": "project", "system": "project" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
148
+ { "id": 9, "fieldId": "labels", "name": "Labels", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["labels"], "schema": { "type": "array", "system": "labels" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
149
+ { "id": 10, "fieldId": "created", "name": "Created", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["created", "createdDate"], "schema": { "type": "datetime", "system": "created" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
150
+ { "id": 11, "fieldId": "updated", "name": "Updated", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["updated", "updatedDate"], "schema": { "type": "datetime", "system": "updated" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
151
+ { "id": 12, "fieldId": "resolution", "name": "Resolution", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["resolution"], "schema": { "type": "resolution", "system": "resolution" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
152
+ { "id": 13, "fieldId": "components", "name": "Components", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["component"], "schema": { "type": "array", "system": "components" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
153
+ { "id": 14, "fieldId": "fixVersions", "name": "Fix Versions", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["fixVersion"], "schema": { "type": "array", "system": "fixVersions" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
154
+ { "id": 15, "fieldId": "sprint", "name": "Sprint", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["sprint"], "schema": { "type": "array", "system": "sprint" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
155
+ { "id": 16, "fieldId": "parent", "name": "Parent", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["parent"], "schema": { "type": "issuelink", "system": "parent" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
156
+ { "id": 17, "fieldId": "duedate", "name": "Due Date", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["due", "duedate"], "schema": { "type": "date", "system": "duedate" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
157
+ { "id": 18, "fieldId": "story_points", "name": "Story Points", "custom": true, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["story_points", "cf[10016]"], "schema": { "type": "number", "custom": "com.atlassian.jira.plugin.system.customfieldtypes:float", "customId": 10016 }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
158
+ { "id": 19, "fieldId": "environment", "name": "Environment", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["environment"], "schema": { "type": "string", "system": "environment" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
159
+ ],
160
+ "watchers": [],
161
+ "remoteLinks": []
162
+ }
@@ -0,0 +1,124 @@
1
+ {
2
+ "users": [
3
+ {
4
+ "id": 1,
5
+ "accountId": "5b10a2844c20165700ede21g",
6
+ "accountType": "atlassian",
7
+ "displayName": "Noah Song",
8
+ "emailAddress": "noah@archal.ai",
9
+ "active": true,
10
+ "avatarUrls": {
11
+ "48x48": "https://secure.gravatar.com/avatar/bceb78919f09ccf77bbbf6c75f8591f4?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FNS-4.png",
12
+ "24x24": "https://secure.gravatar.com/avatar/bceb78919f09ccf77bbbf6c75f8591f4?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FNS-4.png",
13
+ "16x16": "https://secure.gravatar.com/avatar/bceb78919f09ccf77bbbf6c75f8591f4?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FNS-4.png",
14
+ "32x32": "https://secure.gravatar.com/avatar/bceb78919f09ccf77bbbf6c75f8591f4?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FNS-4.png"
15
+ },
16
+ "self": "https://archal-labs.atlassian.net/rest/api/3/user?accountId=5b10a2844c20165700ede21g",
17
+ "timeZone": "America/Denver",
18
+ "createdAt": "2024-01-01T00:00:00.000Z",
19
+ "updatedAt": "2024-01-01T00:00:00.000Z"
20
+ }
21
+ ],
22
+ "projects": [
23
+ {
24
+ "id": 1,
25
+ "key": "SCRUM",
26
+ "name": "My PM Team",
27
+ "description": "Default project for fidelity testing",
28
+ "projectTypeKey": "software",
29
+ "leadAccountId": "5b10a2844c20165700ede21g",
30
+ "avatarUrls": {
31
+ "48x48": "https://archal-labs.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10408",
32
+ "24x24": "https://archal-labs.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10408?size=small",
33
+ "16x16": "https://archal-labs.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10408?size=xsmall",
34
+ "32x32": "https://archal-labs.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10408?size=medium"
35
+ },
36
+ "self": "https://archal-labs.atlassian.net/rest/api/2/project/10000",
37
+ "simplified": true,
38
+ "style": "next-gen",
39
+ "createdAt": "2024-01-01T00:00:00.000Z",
40
+ "updatedAt": "2024-01-01T00:00:00.000Z"
41
+ }
42
+ ],
43
+ "issueTypes": [
44
+ { "id": 1, "name": "Epic", "description": "A big user story that needs to be broken down.", "subtask": false, "projectId": 1, "iconUrl": "https://archal-labs.atlassian.net/images/icons/issuetypes/epic.svg", "hierarchyLevel": 1, "self": "https://archal-labs.atlassian.net/rest/api/3/issuetype/10000", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
45
+ { "id": 2, "name": "Story", "description": "A user story.", "subtask": false, "projectId": 1, "iconUrl": "https://archal-labs.atlassian.net/images/icons/issuetypes/story.svg", "hierarchyLevel": 0, "self": "https://archal-labs.atlassian.net/rest/api/3/issuetype/10001", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
46
+ { "id": 3, "name": "Task", "description": "A task that needs to be done.", "subtask": false, "projectId": 1, "iconUrl": "https://archal-labs.atlassian.net/images/icons/issuetypes/task.svg", "hierarchyLevel": 0, "self": "https://archal-labs.atlassian.net/rest/api/3/issuetype/10002", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
47
+ { "id": 4, "name": "Bug", "description": "A problem which impairs or prevents the functions of the product.", "subtask": false, "projectId": 1, "iconUrl": "https://archal-labs.atlassian.net/images/icons/issuetypes/bug.svg", "hierarchyLevel": 0, "self": "https://archal-labs.atlassian.net/rest/api/3/issuetype/10003", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
48
+ { "id": 5, "name": "Subtask", "description": "A subtask of an issue.", "subtask": true, "projectId": 1, "iconUrl": "https://archal-labs.atlassian.net/images/icons/issuetypes/subtask.svg", "hierarchyLevel": -1, "self": "https://archal-labs.atlassian.net/rest/api/3/issuetype/10004", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
49
+ ],
50
+ "statusCategories": [
51
+ { "id": 1, "key": "undefined", "name": "No Category", "colorName": "medium-gray", "self": "https://archal-labs.atlassian.net/rest/api/3/statuscategory/1", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
52
+ { "id": 2, "key": "new", "name": "To Do", "colorName": "blue-gray", "self": "https://archal-labs.atlassian.net/rest/api/3/statuscategory/2", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
53
+ { "id": 3, "key": "indeterminate", "name": "In Progress", "colorName": "yellow", "self": "https://archal-labs.atlassian.net/rest/api/3/statuscategory/3", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
54
+ { "id": 4, "key": "done", "name": "Done", "colorName": "green", "self": "https://archal-labs.atlassian.net/rest/api/3/statuscategory/4", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
55
+ ],
56
+ "statuses": [
57
+ { "id": 1, "name": "To Do", "description": "Issue is open and not started.", "statusCategoryId": 2, "projectId": 1, "self": "https://archal-labs.atlassian.net/rest/api/3/status/10000", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
58
+ { "id": 2, "name": "In Progress", "description": "Issue is being actively worked on.", "statusCategoryId": 3, "projectId": 1, "self": "https://archal-labs.atlassian.net/rest/api/3/status/10001", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
59
+ { "id": 3, "name": "In Review", "description": "Issue is in code review.", "statusCategoryId": 3, "projectId": 1, "self": "https://archal-labs.atlassian.net/rest/api/3/status/10002", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
60
+ { "id": 4, "name": "Done", "description": "Issue is complete.", "statusCategoryId": 4, "projectId": 1, "self": "https://archal-labs.atlassian.net/rest/api/3/status/10003", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
61
+ ],
62
+ "priorities": [
63
+ { "id": 1, "name": "Highest", "description": "This problem will block progress.", "iconUrl": "https://archal-labs.atlassian.net/images/icons/priorities/highest.svg", "self": "https://archal-labs.atlassian.net/rest/api/3/priority/1", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
64
+ { "id": 2, "name": "High", "description": "Serious problem that could block progress.", "iconUrl": "https://archal-labs.atlassian.net/images/icons/priorities/high.svg", "self": "https://archal-labs.atlassian.net/rest/api/3/priority/2", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
65
+ { "id": 3, "name": "Medium", "description": "Has the potential to affect progress.", "iconUrl": "https://archal-labs.atlassian.net/images/icons/priorities/medium.svg", "self": "https://archal-labs.atlassian.net/rest/api/3/priority/3", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
66
+ { "id": 4, "name": "Low", "description": "Minor problem or easily worked around.", "iconUrl": "https://archal-labs.atlassian.net/images/icons/priorities/low.svg", "self": "https://archal-labs.atlassian.net/rest/api/3/priority/4", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
67
+ { "id": 5, "name": "Lowest", "description": "Trivial problem with little or no impact on progress.", "iconUrl": "https://archal-labs.atlassian.net/images/icons/priorities/lowest.svg", "self": "https://archal-labs.atlassian.net/rest/api/3/priority/5", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
68
+ ],
69
+ "issues": [],
70
+ "comments": [],
71
+ "transitions": [
72
+ { "id": 1, "name": "Start Progress", "toStatusId": 2, "projectId": 1, "fromStatusIds": [1], "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
73
+ { "id": 2, "name": "Request Review", "toStatusId": 3, "projectId": 1, "fromStatusIds": [2], "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
74
+ { "id": 3, "name": "Done", "toStatusId": 4, "projectId": 1, "fromStatusIds": [2, 3], "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
75
+ { "id": 4, "name": "Reopen", "toStatusId": 1, "projectId": 1, "fromStatusIds": [2, 3, 4], "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
76
+ { "id": 5, "name": "Back to In Progress", "toStatusId": 2, "projectId": 1, "fromStatusIds": [3], "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
77
+ ],
78
+ "boards": [
79
+ {
80
+ "id": 1,
81
+ "name": "SCRUM board",
82
+ "type": "scrum",
83
+ "projectId": 1,
84
+ "self": "https://archal-labs.atlassian.net/rest/agile/1.0/board/1",
85
+ "createdAt": "2024-01-01T00:00:00.000Z",
86
+ "updatedAt": "2024-01-01T00:00:00.000Z"
87
+ }
88
+ ],
89
+ "sprints": [],
90
+ "sprintIssues": [],
91
+ "worklogs": [],
92
+ "components": [],
93
+ "versions": [],
94
+ "issueLinks": [],
95
+ "issueLinkTypes": [
96
+ { "id": 1, "name": "Blocks", "inward": "is blocked by", "outward": "blocks", "self": "https://archal-labs.atlassian.net/rest/api/2/issueLinkType/10000", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
97
+ { "id": 2, "name": "Cloners", "inward": "is cloned by", "outward": "clones", "self": "https://archal-labs.atlassian.net/rest/api/2/issueLinkType/10001", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
98
+ { "id": 3, "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates", "self": "https://archal-labs.atlassian.net/rest/api/2/issueLinkType/10002", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
99
+ { "id": 4, "name": "Relates", "inward": "relates to", "outward": "relates to", "self": "https://archal-labs.atlassian.net/rest/api/2/issueLinkType/10003", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
100
+ ],
101
+ "fields": [
102
+ { "id": 1, "fieldId": "summary", "name": "Summary", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["summary"], "schema": { "type": "string", "system": "summary" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
103
+ { "id": 2, "fieldId": "description", "name": "Description", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["description"], "schema": { "type": "string", "system": "description" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
104
+ { "id": 3, "fieldId": "status", "name": "Status", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["status"], "schema": { "type": "status", "system": "status" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
105
+ { "id": 4, "fieldId": "assignee", "name": "Assignee", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["assignee"], "schema": { "type": "user", "system": "assignee" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
106
+ { "id": 5, "fieldId": "reporter", "name": "Reporter", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["reporter"], "schema": { "type": "user", "system": "reporter" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
107
+ { "id": 6, "fieldId": "priority", "name": "Priority", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["priority"], "schema": { "type": "priority", "system": "priority" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
108
+ { "id": 7, "fieldId": "issuetype", "name": "Issue Type", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["issuetype", "type"], "schema": { "type": "issuetype", "system": "issuetype" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
109
+ { "id": 8, "fieldId": "project", "name": "Project", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["project"], "schema": { "type": "project", "system": "project" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
110
+ { "id": 9, "fieldId": "labels", "name": "Labels", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["labels"], "schema": { "type": "array", "system": "labels" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
111
+ { "id": 10, "fieldId": "created", "name": "Created", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["created", "createdDate"], "schema": { "type": "datetime", "system": "created" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
112
+ { "id": 11, "fieldId": "updated", "name": "Updated", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["updated", "updatedDate"], "schema": { "type": "datetime", "system": "updated" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
113
+ { "id": 12, "fieldId": "resolution", "name": "Resolution", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["resolution"], "schema": { "type": "resolution", "system": "resolution" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
114
+ { "id": 13, "fieldId": "components", "name": "Components", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["component"], "schema": { "type": "array", "system": "components" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
115
+ { "id": 14, "fieldId": "fixVersions", "name": "Fix Versions", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["fixVersion"], "schema": { "type": "array", "system": "fixVersions" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
116
+ { "id": 15, "fieldId": "sprint", "name": "Sprint", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["sprint"], "schema": { "type": "array", "system": "sprint" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
117
+ { "id": 16, "fieldId": "parent", "name": "Parent", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["parent"], "schema": { "type": "issuelink", "system": "parent" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
118
+ { "id": 17, "fieldId": "duedate", "name": "Due Date", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["due", "duedate"], "schema": { "type": "date", "system": "duedate" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
119
+ { "id": 18, "fieldId": "story_points", "name": "Story Points", "custom": true, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["story_points", "cf[10016]"], "schema": { "type": "number", "custom": "com.atlassian.jira.plugin.system.customfieldtypes:float", "customId": 10016 }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
120
+ { "id": 19, "fieldId": "environment", "name": "Environment", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["environment"], "schema": { "type": "string", "system": "environment" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
121
+ ],
122
+ "watchers": [],
123
+ "remoteLinks": []
124
+ }