@uipath/maestro-builder-sdk 5.2.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 (238) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +322 -0
  3. package/dist/bindings-v2.d.ts +37 -0
  4. package/dist/bindings-v2.js +155 -0
  5. package/dist/bindings.d.ts +6 -0
  6. package/dist/bindings.js +6 -0
  7. package/dist/bpmn/bpmn-expr-check.d.ts +41 -0
  8. package/dist/bpmn/bpmn-expr-check.js +218 -0
  9. package/dist/bpmn/bpmn-sdk.d.ts +2257 -0
  10. package/dist/bpmn/bpmn-sdk.js +1476 -0
  11. package/dist/bpmn/check-cli.d.ts +3 -0
  12. package/dist/bpmn/check-cli.js +32 -0
  13. package/dist/bpmn/check.d.ts +25 -0
  14. package/dist/bpmn/check.js +430 -0
  15. package/dist/bpmn/compile-cli.d.ts +3 -0
  16. package/dist/bpmn/compile-cli.js +60 -0
  17. package/dist/bpmn/connector.d.ts +56 -0
  18. package/dist/bpmn/connector.js +199 -0
  19. package/dist/bpmn/decompile-cli.d.ts +8 -0
  20. package/dist/bpmn/decompile-cli.js +54 -0
  21. package/dist/bpmn/decompile.d.ts +6 -0
  22. package/dist/bpmn/decompile.js +1108 -0
  23. package/dist/bpmn/format-profile.d.ts +27 -0
  24. package/dist/bpmn/format-profile.js +11 -0
  25. package/dist/bpmn/intsvc.d.ts +77 -0
  26. package/dist/bpmn/intsvc.js +155 -0
  27. package/dist/bpmn/load.d.ts +4 -0
  28. package/dist/bpmn/load.js +22 -0
  29. package/dist/bpmn/merge-cli.d.ts +3 -0
  30. package/dist/bpmn/merge-cli.js +45 -0
  31. package/dist/bpmn/merge.d.ts +19 -0
  32. package/dist/bpmn/merge.js +293 -0
  33. package/dist/bpmn/registry-types.json +1869 -0
  34. package/dist/bpmn/serialize.d.ts +28 -0
  35. package/dist/bpmn/serialize.js +757 -0
  36. package/dist/bpmn/tidy-cli.d.ts +2 -0
  37. package/dist/bpmn/tidy-cli.js +39 -0
  38. package/dist/bpmn/typed-node.d.ts +382 -0
  39. package/dist/bpmn/typed-node.js +551 -0
  40. package/dist/bpmn/uipath-moddle.v1.json +823 -0
  41. package/dist/bpmn/xml-ranges.d.ts +45 -0
  42. package/dist/bpmn/xml-ranges.js +151 -0
  43. package/dist/case/case-expr-check.d.ts +35 -0
  44. package/dist/case/case-expr-check.js +85 -0
  45. package/dist/case/case-sdk.d.ts +1282 -0
  46. package/dist/case/case-sdk.js +923 -0
  47. package/dist/case/check-cli.d.ts +3 -0
  48. package/dist/case/check-cli.js +31 -0
  49. package/dist/case/check.d.ts +18 -0
  50. package/dist/case/check.js +456 -0
  51. package/dist/case/compile-cli.d.ts +3 -0
  52. package/dist/case/compile-cli.js +291 -0
  53. package/dist/case/decompile-cli.d.ts +9 -0
  54. package/dist/case/decompile-cli.js +117 -0
  55. package/dist/case/decompile.d.ts +187 -0
  56. package/dist/case/decompile.js +1170 -0
  57. package/dist/case/entry-points.d.ts +79 -0
  58. package/dist/case/entry-points.js +118 -0
  59. package/dist/case/format-profile.d.ts +60 -0
  60. package/dist/case/format-profile.js +79 -0
  61. package/dist/case/ids.d.ts +24 -0
  62. package/dist/case/ids.js +76 -0
  63. package/dist/case/load.d.ts +12 -0
  64. package/dist/case/load.js +32 -0
  65. package/dist/case/preserve.d.ts +133 -0
  66. package/dist/case/preserve.js +105 -0
  67. package/dist/case/serialize.d.ts +10 -0
  68. package/dist/case/serialize.js +1414 -0
  69. package/dist/check-cli.d.ts +3 -0
  70. package/dist/check-cli.js +118 -0
  71. package/dist/check.d.ts +146 -0
  72. package/dist/check.js +4898 -0
  73. package/dist/cli/commands/bpmn.d.ts +2 -0
  74. package/dist/cli/commands/bpmn.js +73 -0
  75. package/dist/cli/commands/case.d.ts +2 -0
  76. package/dist/cli/commands/case.js +60 -0
  77. package/dist/cli/commands/flow.d.ts +2 -0
  78. package/dist/cli/commands/flow.js +99 -0
  79. package/dist/cli/commands/registry.d.ts +10 -0
  80. package/dist/cli/commands/registry.js +170 -0
  81. package/dist/cli/common.d.ts +30 -0
  82. package/dist/cli/common.js +92 -0
  83. package/dist/cli/index.d.ts +2 -0
  84. package/dist/cli/index.js +18 -0
  85. package/dist/cli-run.d.ts +2 -0
  86. package/dist/cli-run.js +42 -0
  87. package/dist/compile-cli.d.ts +3 -0
  88. package/dist/compile-cli.js +160 -0
  89. package/dist/config.d.ts +47 -0
  90. package/dist/config.js +201 -0
  91. package/dist/core/actions.d.ts +3244 -0
  92. package/dist/core/actions.js +1062 -0
  93. package/dist/core/binding-messages.d.ts +1 -0
  94. package/dist/core/binding-messages.js +16 -0
  95. package/dist/core/bindings.d.ts +12 -0
  96. package/dist/core/bindings.js +67 -0
  97. package/dist/core/ceql.d.ts +73 -0
  98. package/dist/core/ceql.js +272 -0
  99. package/dist/core/cli-spelling.d.ts +39 -0
  100. package/dist/core/cli-spelling.js +62 -0
  101. package/dist/core/connector-raw-node.d.ts +21 -0
  102. package/dist/core/connector-raw-node.js +47 -0
  103. package/dist/core/connectors.d.ts +184 -0
  104. package/dist/core/connectors.js +128 -0
  105. package/dist/core/expr-check.d.ts +93 -0
  106. package/dist/core/expr-check.js +186 -0
  107. package/dist/core/expr.d.ts +323 -0
  108. package/dist/core/expr.js +400 -0
  109. package/dist/core/index.d.ts +10 -0
  110. package/dist/core/index.js +10 -0
  111. package/dist/core/library.d.ts +440 -0
  112. package/dist/core/library.js +1183 -0
  113. package/dist/core/list-envelope.d.ts +45 -0
  114. package/dist/core/list-envelope.js +97 -0
  115. package/dist/core/lookup-store.d.ts +22 -0
  116. package/dist/core/lookup-store.js +85 -0
  117. package/dist/core/lookups.d.ts +227 -0
  118. package/dist/core/lookups.js +231 -0
  119. package/dist/core/node-classes.d.ts +234 -0
  120. package/dist/core/node-classes.js +158 -0
  121. package/dist/core/script-return.d.ts +68 -0
  122. package/dist/core/script-return.js +197 -0
  123. package/dist/core/stable-id.d.ts +28 -0
  124. package/dist/core/stable-id.js +37 -0
  125. package/dist/core-definitions.json +16249 -0
  126. package/dist/decompile-cli.d.ts +3 -0
  127. package/dist/decompile-cli.js +131 -0
  128. package/dist/decompile.d.ts +138 -0
  129. package/dist/decompile.js +2482 -0
  130. package/dist/emit.d.ts +10 -0
  131. package/dist/emit.js +60 -0
  132. package/dist/event-filters.d.ts +130 -0
  133. package/dist/event-filters.js +137 -0
  134. package/dist/flow-expr-check.d.ts +17 -0
  135. package/dist/flow-expr-check.js +193 -0
  136. package/dist/flow-sdk.d.ts +1341 -0
  137. package/dist/flow-sdk.js +1164 -0
  138. package/dist/flow-variables.d.ts +13 -0
  139. package/dist/flow-variables.js +42 -0
  140. package/dist/format-profile.d.ts +72 -0
  141. package/dist/format-profile.js +97 -0
  142. package/dist/generators/_connections.py +287 -0
  143. package/dist/generators/_events.py +355 -0
  144. package/dist/generators/_lookups.py +114 -0
  145. package/dist/generators/_naming.py +185 -0
  146. package/dist/generators/_objects.py +299 -0
  147. package/dist/generators/_resolve.py +273 -0
  148. package/dist/generators/convert_library_to_md.py +1441 -0
  149. package/dist/generators/extract_library.py +125 -0
  150. package/dist/generators/generate_connectors_ts.py +936 -0
  151. package/dist/generators/generate_library_json.py +2527 -0
  152. package/dist/generators/generate_triggers_ts.py +110 -0
  153. package/dist/generators/materialize_registry.py +155 -0
  154. package/dist/generators/prepare_connector.py +1688 -0
  155. package/dist/index.d.ts +35 -0
  156. package/dist/index.js +35 -0
  157. package/dist/ixp-definition.json +1982 -0
  158. package/dist/library.d.ts +6 -0
  159. package/dist/library.js +6 -0
  160. package/dist/load.d.ts +16 -0
  161. package/dist/load.js +95 -0
  162. package/dist/merge-cli.d.ts +3 -0
  163. package/dist/merge-cli.js +47 -0
  164. package/dist/merge.d.ts +125 -0
  165. package/dist/merge.js +0 -0
  166. package/dist/migrate.d.ts +15 -0
  167. package/dist/migrate.js +245 -0
  168. package/dist/node-runtime.d.ts +3 -0
  169. package/dist/node-runtime.js +22 -0
  170. package/dist/package-name.d.ts +17 -0
  171. package/dist/package-name.js +17 -0
  172. package/dist/ref-resolve.d.ts +77 -0
  173. package/dist/ref-resolve.js +170 -0
  174. package/dist/registry/cache.d.ts +55 -0
  175. package/dist/registry/cache.js +134 -0
  176. package/dist/registry/curated-overlay.d.ts +16 -0
  177. package/dist/registry/curated-overlay.js +62 -0
  178. package/dist/registry/extractor.d.ts +22 -0
  179. package/dist/registry/extractor.js +18 -0
  180. package/dist/registry/materialize-bin.d.ts +2 -0
  181. package/dist/registry/materialize-bin.js +7 -0
  182. package/dist/registry/materialize-cli.d.ts +1 -0
  183. package/dist/registry/materialize-cli.js +46 -0
  184. package/dist/registry/materializer.d.ts +23 -0
  185. package/dist/registry/materializer.js +34 -0
  186. package/dist/registry/path-cli.d.ts +1 -0
  187. package/dist/registry/path-cli.js +56 -0
  188. package/dist/registry/prepare-cli.d.ts +62 -0
  189. package/dist/registry/prepare-cli.js +185 -0
  190. package/dist/registry/pull-cli.d.ts +1 -0
  191. package/dist/registry/pull-cli.js +274 -0
  192. package/dist/registry/python.d.ts +26 -0
  193. package/dist/registry/python.js +46 -0
  194. package/dist/registry/search-cli.d.ts +52 -0
  195. package/dist/registry/search-cli.js +159 -0
  196. package/dist/schema-version.d.ts +165 -0
  197. package/dist/schema-version.js +148 -0
  198. package/dist/serialize.d.ts +64 -0
  199. package/dist/serialize.js +6398 -0
  200. package/lib/README.md +112 -0
  201. package/lib/library-json.samples/index.json +158 -0
  202. package/lib/library-json.samples/invariant-collections.json +83 -0
  203. package/lib/library-json.samples/list-envelopes.json +123 -0
  204. package/lib/library-json.samples/uipath-atlassian-jira/create-issue@1.0.0.json +131 -0
  205. package/lib/library-json.samples/uipath-atlassian-jira/create-issue@1.0.0.v1def.json +306 -0
  206. package/lib/library-json.samples/uipath-atlassian-jira/generic/create_issue/create@1.0.0.json +86 -0
  207. package/lib/library-json.samples/uipath-atlassian-jira/generic/create_issue/create@1.0.0.v1def.json +208 -0
  208. package/lib/library-json.samples/uipath-atlassian-jira/get-issue@1.0.0.json +2040 -0
  209. package/lib/library-json.samples/uipath-atlassian-jira/get-issue@1.0.0.v1def.json +195 -0
  210. package/lib/library-json.samples/uipath-google-vertex/execute-google-vertex-agent@1.0.0.json +169 -0
  211. package/lib/library-json.samples/uipath-google-vertex/execute-google-vertex-agent@1.0.0.v1def.json +209 -0
  212. package/lib/library-json.samples/uipath-http-webhook/event-http-webhook@1.0.0.json +63 -0
  213. package/lib/library-json.samples/uipath-http-webhook/event-http-webhook@1.0.0.v1def.json +262 -0
  214. package/lib/library-json.samples/uipath-http-webhook/trigger-http-webhook@1.0.0.json +63 -0
  215. package/lib/library-json.samples/uipath-http-webhook/trigger-http-webhook@1.0.0.v1def.json +213 -0
  216. package/lib/library-json.samples/uipath-microsoft-azureactivedirectory/list-groups@1.0.0.json +227 -0
  217. package/lib/library-json.samples/uipath-microsoft-azureactivedirectory/list-groups@1.0.0.v1def.json +373 -0
  218. package/lib/library-json.samples/uipath-microsoft-onedrive/event-file-created@1.0.0.json +116 -0
  219. package/lib/library-json.samples/uipath-microsoft-onedrive/event-file-created@1.0.0.v1def.json +369 -0
  220. package/lib/library-json.samples/uipath-microsoft-onedrive/event-list-item-added@1.0.0.json +56 -0
  221. package/lib/library-json.samples/uipath-microsoft-onedrive/event-list-item-added@1.0.0.v1def.json +256 -0
  222. package/lib/library-json.samples/uipath-microsoft-onedrive/trigger-file-created@1.0.0.json +116 -0
  223. package/lib/library-json.samples/uipath-microsoft-onedrive/trigger-file-created@1.0.0.v1def.json +320 -0
  224. package/lib/library-json.samples/uipath-microsoft-onedrive/trigger-list-item-added@1.0.0.json +56 -0
  225. package/lib/library-json.samples/uipath-microsoft-onedrive/trigger-list-item-added@1.0.0.v1def.json +207 -0
  226. package/lib/library-json.samples/uipath-microsoft-outlook365/event-email-received@1.0.0.json +107 -0
  227. package/lib/library-json.samples/uipath-microsoft-outlook365/event-email-received@1.0.0.v1def.json +264 -0
  228. package/lib/library-json.samples/uipath-microsoft-outlook365/send-email@1.0.0.json +142 -0
  229. package/lib/library-json.samples/uipath-microsoft-outlook365/send-email@1.0.0.v1def.json +306 -0
  230. package/lib/library-json.samples/uipath-microsoft-outlook365/trigger-email-received@1.0.0.json +107 -0
  231. package/lib/library-json.samples/uipath-microsoft-outlook365/trigger-email-received@1.0.0.v1def.json +217 -0
  232. package/lib/library-json.samples/uipath-microsoft-powerautomate/invoke-a-microsoft-power-automate-flow@1.0.0.json +85 -0
  233. package/lib/library-json.samples/uipath-microsoft-powerautomate/invoke-a-microsoft-power-automate-flow@1.0.0.v1def.json +209 -0
  234. package/lib/library-json.samples/uipath-salesforce-slack/send-message-to-user@1.0.0.json +755 -0
  235. package/lib/library-json.samples/uipath-salesforce-slack/send-message-to-user@1.0.0.v1def.json +513 -0
  236. package/lib/library-json.samples/uipath-uipath-dataservice/query-entity-records@1.0.0.json +122 -0
  237. package/lib/library-json.samples/uipath-uipath-dataservice/query-entity-records@1.0.0.v1def.json +227 -0
  238. package/package.json +85 -0
@@ -0,0 +1,2040 @@
1
+ {
2
+ "schemaVersion": "1",
3
+ "nodeType": "uipath.connector.uipath-atlassian-jira.get-issue",
4
+ "version": "1.0.0",
5
+ "category": "connector.196560",
6
+ "tags": [
7
+ "connector",
8
+ "activity"
9
+ ],
10
+ "connector": {
11
+ "key": "uipath-atlassian-jira",
12
+ "name": "Jira"
13
+ },
14
+ "operation": {
15
+ "name": "Retrieve",
16
+ "objectName": "curated_get_issue",
17
+ "objectDisplayName": "Get Issue",
18
+ "httpMethod": "GETBYID",
19
+ "path": "/curated_get_issue/{issueId}",
20
+ "subType": "standard",
21
+ "supportsStreaming": false,
22
+ "activityType": "Curated",
23
+ "pathTemplate": "/curated_get_issue/{issueId}",
24
+ "parameters": [
25
+ {
26
+ "name": "project",
27
+ "type": "query",
28
+ "dataType": "string",
29
+ "required": true,
30
+ "displayName": "Project",
31
+ "description": "The unique key of the project",
32
+ "reference": {
33
+ "objectName": "project",
34
+ "lookupNames": [
35
+ "name",
36
+ "key"
37
+ ],
38
+ "lookupValue": "key",
39
+ "path": "/project/search",
40
+ "filterPattern": "query={filter}"
41
+ }
42
+ },
43
+ {
44
+ "name": "issuetype",
45
+ "type": "query",
46
+ "dataType": "string",
47
+ "required": true,
48
+ "displayName": "Issue type",
49
+ "description": "The type of the issue (task, story, bug, epic, etc). Select one to enable custom fields",
50
+ "reference": {
51
+ "objectName": "project",
52
+ "lookupNames": [
53
+ "name",
54
+ "id"
55
+ ],
56
+ "lookupValue": "id",
57
+ "path": "/project/{project}/issuetypes"
58
+ }
59
+ },
60
+ {
61
+ "name": "issueId",
62
+ "type": "path",
63
+ "dataType": "string",
64
+ "required": true,
65
+ "displayName": "Issue ID or key",
66
+ "description": "The issue key (ABCD-1234) or issue ID"
67
+ }
68
+ ]
69
+ },
70
+ "display": {
71
+ "label": "Get Issue",
72
+ "description": "(Jira) Retrieve detailed information of a Jira issue, including assignee, reporter, and project.",
73
+ "icon": "https://alpha.uipath.com/bc2ddac5-57bc-40e6-93fe-3b319b60ce36/studio_/typecache/icons/34ef2aa2837dd167dab37718dbff7bb5eb83f8c210be71fc25ac55a67aa6de1b.svg",
74
+ "iconBackground": "linear-gradient(225deg, #FAFAFB 0%, #ECEDEF 100%)",
75
+ "iconBackgroundDark": "linear-gradient(225deg, #526069 0%, rgba(50, 60, 66, 0.6) 100%)",
76
+ "operationLabel": "Get Issue"
77
+ },
78
+ "runtime": {
79
+ "bpmnType": "bpmn:SendTask",
80
+ "serviceType": "Intsvc.ActivityExecution",
81
+ "activityConfigurationVersion": "v1",
82
+ "requiresConnection": true,
83
+ "requiresFolderKey": true,
84
+ "requiresConnectionForSchema": false
85
+ },
86
+ "inputSchema": {
87
+ "fields": [
88
+ {
89
+ "name": "project",
90
+ "type": "string",
91
+ "required": true,
92
+ "description": "The unique key of the project"
93
+ },
94
+ {
95
+ "name": "issuetype",
96
+ "type": "string",
97
+ "required": true,
98
+ "description": "The type of the issue (task, story, bug, epic, etc). Select one to enable custom fields"
99
+ },
100
+ {
101
+ "name": "issueId",
102
+ "type": "string",
103
+ "required": true,
104
+ "description": "The issue key (ABCD-1234) or issue ID"
105
+ }
106
+ ]
107
+ },
108
+ "outputSchema": {
109
+ "fields": [
110
+ {
111
+ "name": "changelog.histories[*].author.accountId",
112
+ "type": "string",
113
+ "displayName": "Changelog histories author account ID",
114
+ "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*."
115
+ },
116
+ {
117
+ "name": "changelog.histories[*].author.accountType",
118
+ "type": "string",
119
+ "displayName": "Changelog histories author account type",
120
+ "description": "The type of account represented by this user. This will be one of 'atlassian' (normal users), 'app' (application user) or 'customer' (Jira Service Desk customer user)"
121
+ },
122
+ {
123
+ "name": "changelog.histories[*].author.active",
124
+ "type": "boolean",
125
+ "displayName": "Changelog histories author active",
126
+ "description": "Whether the user is active"
127
+ },
128
+ {
129
+ "name": "changelog.histories[*].author.avatarUrls.16x16",
130
+ "type": "string",
131
+ "displayName": "Changelog histories author avatar urls 16 x 16",
132
+ "description": "The URL of the item's 16x16 pixel avatar"
133
+ },
134
+ {
135
+ "name": "changelog.histories[*].author.avatarUrls.24x24",
136
+ "type": "string",
137
+ "displayName": "Changelog histories author avatar urls 24 x 24",
138
+ "description": "The URL of the item's 24x24 pixel avatar"
139
+ },
140
+ {
141
+ "name": "changelog.histories[*].author.avatarUrls.32x32",
142
+ "type": "string",
143
+ "displayName": "Changelog histories author avatar urls 32 x 32",
144
+ "description": "The URL of the item's 32x32 pixel avatar"
145
+ },
146
+ {
147
+ "name": "changelog.histories[*].author.avatarUrls.48x48",
148
+ "type": "string",
149
+ "displayName": "Changelog histories author avatar urls 48 x 48",
150
+ "description": "The URL of the item's 48x48 pixel avatar"
151
+ },
152
+ {
153
+ "name": "changelog.histories[*].author.displayName",
154
+ "type": "string",
155
+ "displayName": "Changelog histories author display name",
156
+ "description": "The display name of the user. Depending on the user\u2019s privacy settings, this may return an alternative value."
157
+ },
158
+ {
159
+ "name": "changelog.histories[*].author.emailAddress",
160
+ "type": "string",
161
+ "displayName": "Changelog histories author email address",
162
+ "description": "The email address of the user. Depending on the user\u2019s privacy settings, this may be returned as null."
163
+ },
164
+ {
165
+ "name": "changelog.histories[*].author.key",
166
+ "type": "string",
167
+ "displayName": "Changelog histories author key",
168
+ "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details."
169
+ },
170
+ {
171
+ "name": "changelog.histories[*].author.name",
172
+ "type": "string",
173
+ "displayName": "Changelog histories author name",
174
+ "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details."
175
+ },
176
+ {
177
+ "name": "changelog.histories[*].author.self",
178
+ "type": "string",
179
+ "displayName": "Changelog histories author self",
180
+ "description": "The URL of the user"
181
+ },
182
+ {
183
+ "name": "changelog.histories[*].author.timeZone",
184
+ "type": "string",
185
+ "displayName": "Changelog histories author time zone",
186
+ "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy settings, this may be returned as null."
187
+ },
188
+ {
189
+ "name": "changelog.histories[*].created",
190
+ "type": "string",
191
+ "displayName": "Changelog histories created",
192
+ "description": "The date on which the change took place"
193
+ },
194
+ {
195
+ "name": "changelog.histories[*].historyMetadata.activityDescription",
196
+ "type": "string",
197
+ "displayName": "Changelog histories history metadata activity description",
198
+ "description": "The activity described in the history record"
199
+ },
200
+ {
201
+ "name": "changelog.histories[*].historyMetadata.activityDescriptionKey",
202
+ "type": "string",
203
+ "displayName": "Changelog histories history metadata activity description key",
204
+ "description": "The key of the activity described in the history record"
205
+ },
206
+ {
207
+ "name": "changelog.histories[*].historyMetadata.actor.avatarUrl",
208
+ "type": "string",
209
+ "displayName": "Changelog histories history metadata actor avatar url",
210
+ "description": "The URL to an avatar for the user or system associated with a history record"
211
+ },
212
+ {
213
+ "name": "changelog.histories[*].historyMetadata.actor.displayName",
214
+ "type": "string",
215
+ "displayName": "Changelog histories history metadata actor display name",
216
+ "description": "The display name of the user or system associated with a history record"
217
+ },
218
+ {
219
+ "name": "changelog.histories[*].historyMetadata.actor.displayNameKey",
220
+ "type": "string",
221
+ "displayName": "Changelog histories history metadata actor display name key",
222
+ "description": "The key of the display name of the user or system associated with a history record"
223
+ },
224
+ {
225
+ "name": "changelog.histories[*].historyMetadata.actor.id",
226
+ "type": "string",
227
+ "displayName": "Changelog histories history metadata actor ID",
228
+ "description": "The ID of the user or system associated with a history record"
229
+ },
230
+ {
231
+ "name": "changelog.histories[*].historyMetadata.actor.type",
232
+ "type": "string",
233
+ "displayName": "Changelog histories history metadata actor type",
234
+ "description": "The type of the user or system associated with a history record"
235
+ },
236
+ {
237
+ "name": "changelog.histories[*].historyMetadata.actor.url",
238
+ "type": "string",
239
+ "displayName": "Changelog histories history metadata actor url",
240
+ "description": "The URL of the user or system associated with a history record"
241
+ },
242
+ {
243
+ "name": "changelog.histories[*].historyMetadata.cause.avatarUrl",
244
+ "type": "string",
245
+ "displayName": "Changelog histories history metadata cause avatar url",
246
+ "description": "The URL to an avatar for the user or system associated with a history record"
247
+ },
248
+ {
249
+ "name": "changelog.histories[*].historyMetadata.cause.displayName",
250
+ "type": "string",
251
+ "displayName": "Changelog histories history metadata cause display name",
252
+ "description": "The display name of the user or system associated with a history record"
253
+ },
254
+ {
255
+ "name": "changelog.histories[*].historyMetadata.cause.displayNameKey",
256
+ "type": "string",
257
+ "displayName": "Changelog histories history metadata cause display name key",
258
+ "description": "The key of the display name of the user or system associated with a history record"
259
+ },
260
+ {
261
+ "name": "changelog.histories[*].historyMetadata.cause.id",
262
+ "type": "string",
263
+ "displayName": "Changelog histories history metadata cause ID",
264
+ "description": "The ID of the user or system associated with a history record"
265
+ },
266
+ {
267
+ "name": "changelog.histories[*].historyMetadata.cause.type",
268
+ "type": "string",
269
+ "displayName": "Changelog histories history metadata cause type",
270
+ "description": "The type of the user or system associated with a history record"
271
+ },
272
+ {
273
+ "name": "changelog.histories[*].historyMetadata.cause.url",
274
+ "type": "string",
275
+ "displayName": "Changelog histories history metadata cause url",
276
+ "description": "The URL of the user or system associated with a history record."
277
+ },
278
+ {
279
+ "name": "changelog.histories[*].historyMetadata.description",
280
+ "type": "string",
281
+ "displayName": "Changelog histories history metadata description",
282
+ "description": "The description of the history record"
283
+ },
284
+ {
285
+ "name": "changelog.histories[*].historyMetadata.descriptionKey",
286
+ "type": "string",
287
+ "displayName": "Changelog histories history metadata description key",
288
+ "description": "The description key of the history record"
289
+ },
290
+ {
291
+ "name": "changelog.histories[*].historyMetadata.emailDescription",
292
+ "type": "string",
293
+ "displayName": "Changelog histories history metadata email description",
294
+ "description": "The description of the email address associated the history record"
295
+ },
296
+ {
297
+ "name": "changelog.histories[*].historyMetadata.emailDescriptionKey",
298
+ "type": "string",
299
+ "displayName": "Changelog histories history metadata email description key",
300
+ "description": "The description key of the email address associated the history record"
301
+ },
302
+ {
303
+ "name": "changelog.histories[*].historyMetadata.generator.avatarUrl",
304
+ "type": "string",
305
+ "displayName": "Changelog histories history metadata generator avatar url",
306
+ "description": "The URL to an avatar for the user or system associated with a history record"
307
+ },
308
+ {
309
+ "name": "changelog.histories[*].historyMetadata.generator.displayName",
310
+ "type": "string",
311
+ "displayName": "Changelog histories history metadata generator display name",
312
+ "description": "The display name of the user or system associated with a history record"
313
+ },
314
+ {
315
+ "name": "changelog.histories[*].historyMetadata.generator.displayNameKey",
316
+ "type": "string",
317
+ "displayName": "Changelog histories history metadata generator display name key",
318
+ "description": "The key of the display name of the user or system associated with a history record"
319
+ },
320
+ {
321
+ "name": "changelog.histories[*].historyMetadata.generator.id",
322
+ "type": "string",
323
+ "displayName": "Changelog histories history metadata generator ID",
324
+ "description": "The ID of the user or system associated with a history record"
325
+ },
326
+ {
327
+ "name": "changelog.histories[*].historyMetadata.generator.type",
328
+ "type": "string",
329
+ "displayName": "Changelog histories history metadata generator type",
330
+ "description": "The type of the user or system associated with a history record"
331
+ },
332
+ {
333
+ "name": "changelog.histories[*].historyMetadata.generator.url",
334
+ "type": "string",
335
+ "displayName": "Changelog histories history metadata generator url",
336
+ "description": "The URL of the user or system associated with a history record"
337
+ },
338
+ {
339
+ "name": "changelog.histories[*].historyMetadata.type",
340
+ "type": "string",
341
+ "displayName": "Changelog histories history metadata type",
342
+ "description": "The type of the history record"
343
+ },
344
+ {
345
+ "name": "changelog.histories[*].id",
346
+ "type": "string",
347
+ "displayName": "Changelog histories ID",
348
+ "description": "The ID of the changelog."
349
+ },
350
+ {
351
+ "name": "changelog.histories[*].items[*].field",
352
+ "type": "string",
353
+ "displayName": "Changelog histories items field",
354
+ "description": "The name of the field changed"
355
+ },
356
+ {
357
+ "name": "changelog.histories[*].items[*].fieldId",
358
+ "type": "string",
359
+ "displayName": "Changelog histories items field ID",
360
+ "description": "The ID of the field changed"
361
+ },
362
+ {
363
+ "name": "changelog.histories[*].items[*].fieldtype",
364
+ "type": "string",
365
+ "displayName": "Changelog histories items fieldtype",
366
+ "description": "The type of the field changed"
367
+ },
368
+ {
369
+ "name": "changelog.histories[*].items[*].from",
370
+ "type": "string",
371
+ "displayName": "Changelog histories items from",
372
+ "description": "The details of the original value"
373
+ },
374
+ {
375
+ "name": "changelog.histories[*].items[*].fromString",
376
+ "type": "string",
377
+ "displayName": "Changelog histories items from string",
378
+ "description": "The details of the original value as a string"
379
+ },
380
+ {
381
+ "name": "changelog.histories[*].items[*].to",
382
+ "type": "string",
383
+ "displayName": "Changelog histories items to",
384
+ "description": "The details of the new value"
385
+ },
386
+ {
387
+ "name": "changelog.histories[*].items[*].toString",
388
+ "type": "string",
389
+ "displayName": "Changelog histories items to string",
390
+ "description": "The details of the new value as a string"
391
+ },
392
+ {
393
+ "name": "changelog.maxResults",
394
+ "type": "integer",
395
+ "displayName": "Changelog max results",
396
+ "description": "The maximum number of results that could be on the page"
397
+ },
398
+ {
399
+ "name": "changelog.startAt",
400
+ "type": "integer",
401
+ "displayName": "Changelog start at",
402
+ "description": "The index of the first item returned on the page"
403
+ },
404
+ {
405
+ "name": "changelog.total",
406
+ "type": "integer",
407
+ "displayName": "Changelog total",
408
+ "description": "The number of results on the page"
409
+ },
410
+ {
411
+ "name": "editmeta.fields.allowedValues[*]",
412
+ "type": "string",
413
+ "displayName": "Editmeta fields allowed values"
414
+ },
415
+ {
416
+ "name": "editmeta.fields.autoCompleteUrl",
417
+ "type": "string",
418
+ "displayName": "Editmeta fields auto complete url",
419
+ "description": "The URL that can be used to automatically complete the field"
420
+ },
421
+ {
422
+ "name": "editmeta.fields.defaultValue",
423
+ "type": "string",
424
+ "displayName": "Editmeta fields default value",
425
+ "description": "The default value of the field"
426
+ },
427
+ {
428
+ "name": "editmeta.fields.hasDefaultValue",
429
+ "type": "boolean",
430
+ "displayName": "Editmeta fields has default value",
431
+ "description": "Whether the field has a default value"
432
+ },
433
+ {
434
+ "name": "editmeta.fields.key",
435
+ "type": "string",
436
+ "displayName": "Editmeta fields key",
437
+ "description": "The key of the field"
438
+ },
439
+ {
440
+ "name": "editmeta.fields.name",
441
+ "type": "string",
442
+ "displayName": "Editmeta fields name",
443
+ "description": "The name of the field"
444
+ },
445
+ {
446
+ "name": "editmeta.fields.operations[*]",
447
+ "type": "string",
448
+ "displayName": "Editmeta fields operations"
449
+ },
450
+ {
451
+ "name": "editmeta.fields.required",
452
+ "type": "boolean",
453
+ "displayName": "Editmeta fields required",
454
+ "description": "Whether the field is required"
455
+ },
456
+ {
457
+ "name": "editmeta.fields.schema.custom",
458
+ "type": "string",
459
+ "displayName": "Editmeta fields schema custom",
460
+ "description": "If the field is a custom field, the URI of the field"
461
+ },
462
+ {
463
+ "name": "editmeta.fields.schema.customId",
464
+ "type": "integer",
465
+ "displayName": "Editmeta fields schema custom ID",
466
+ "description": "If the field is a custom field, the custom ID of the field"
467
+ },
468
+ {
469
+ "name": "editmeta.fields.schema.items",
470
+ "type": "string",
471
+ "displayName": "Editmeta fields schema items",
472
+ "description": "When the data type is an array, the name of the field items within the array"
473
+ },
474
+ {
475
+ "name": "editmeta.fields.schema.system",
476
+ "type": "string",
477
+ "displayName": "Editmeta fields schema system",
478
+ "description": "If the field is a system field, the name of the field"
479
+ },
480
+ {
481
+ "name": "editmeta.fields.schema.type",
482
+ "type": "string",
483
+ "displayName": "Editmeta fields schema type",
484
+ "description": "The data type of the field"
485
+ },
486
+ {
487
+ "name": "expand",
488
+ "type": "string",
489
+ "displayName": "Expand",
490
+ "description": "Expand options that include additional issue details in the response"
491
+ },
492
+ {
493
+ "name": "fieldsToInclude.actuallyIncluded[*]",
494
+ "type": "string",
495
+ "displayName": "Fields to include actually included"
496
+ },
497
+ {
498
+ "name": "fieldsToInclude.excluded[*]",
499
+ "type": "string",
500
+ "displayName": "Fields to include excluded"
501
+ },
502
+ {
503
+ "name": "fieldsToInclude.included[*]",
504
+ "type": "string",
505
+ "displayName": "Fields to include included"
506
+ },
507
+ {
508
+ "name": "update.issuelink.outwardIssue.key",
509
+ "type": "string",
510
+ "displayName": "Linked issue",
511
+ "description": "The key of a linked issue"
512
+ },
513
+ {
514
+ "name": "update.issuelink.type.name",
515
+ "type": "string",
516
+ "displayName": "Linked issue relationship",
517
+ "description": "Select or type a relationship for the linked issue"
518
+ },
519
+ {
520
+ "name": "update.issuelinks.outwardIssue.key",
521
+ "type": "string",
522
+ "displayName": "Linked issues",
523
+ "description": "The key of a linked issues"
524
+ },
525
+ {
526
+ "name": "update.issuelinks.type.name",
527
+ "type": "string",
528
+ "displayName": "Linked issues relationship",
529
+ "description": "Select or type a relationship for the linked issues"
530
+ },
531
+ {
532
+ "name": "update.comment.body",
533
+ "type": "string",
534
+ "displayName": "Comment"
535
+ },
536
+ {
537
+ "name": "fields.aggregateprogress.progress",
538
+ "type": "integer",
539
+ "displayName": "Aggregate progress"
540
+ },
541
+ {
542
+ "name": "fields.aggregateprogress.total",
543
+ "type": "integer",
544
+ "displayName": "Aggregate progress total"
545
+ },
546
+ {
547
+ "name": "fields.assignee.accountId",
548
+ "type": "string",
549
+ "displayName": "Assignee account ID"
550
+ },
551
+ {
552
+ "name": "fields.assignee.accountType",
553
+ "type": "string",
554
+ "displayName": "Assignee account type"
555
+ },
556
+ {
557
+ "name": "fields.assignee.active",
558
+ "type": "boolean",
559
+ "displayName": "Assignee active"
560
+ },
561
+ {
562
+ "name": "fields.assignee.avatarUrls.16x16",
563
+ "type": "string",
564
+ "displayName": "Assignee avatar urls 16 x 16"
565
+ },
566
+ {
567
+ "name": "fields.assignee.avatarUrls.24x24",
568
+ "type": "string",
569
+ "displayName": "Assignee avatar urls 24 x 24"
570
+ },
571
+ {
572
+ "name": "fields.attachment[*].thumbnail",
573
+ "type": "string",
574
+ "displayName": "Thumbnail",
575
+ "description": "The thumbnail of attachment"
576
+ },
577
+ {
578
+ "name": "fields.attachment[*].filename",
579
+ "type": "string",
580
+ "displayName": "File name",
581
+ "description": "The file name of attachment"
582
+ },
583
+ {
584
+ "name": "fields.attachment[*].size",
585
+ "type": "integer",
586
+ "displayName": "Size",
587
+ "description": "The size of attachment"
588
+ },
589
+ {
590
+ "name": "fields.attachment[*].author.accountId",
591
+ "type": "string",
592
+ "displayName": "Author account ID",
593
+ "description": "The author account ID of attachment"
594
+ },
595
+ {
596
+ "name": "fields.attachment[*].author.emailAddress",
597
+ "type": "string",
598
+ "displayName": "Author email address",
599
+ "description": "The author email address of attachment"
600
+ },
601
+ {
602
+ "name": "fields.attachment[*].author.displayName",
603
+ "type": "string",
604
+ "displayName": "Author display name",
605
+ "description": "The author display name of attachment"
606
+ },
607
+ {
608
+ "name": "fields.attachment[*].author.accountType",
609
+ "type": "string",
610
+ "displayName": "Author account type",
611
+ "description": "The author account type of attachment"
612
+ },
613
+ {
614
+ "name": "fields.attachment[*].author.self",
615
+ "type": "string",
616
+ "displayName": "Author self",
617
+ "description": "The author self of attachment"
618
+ },
619
+ {
620
+ "name": "fields.attachment[*].author.active",
621
+ "type": "boolean",
622
+ "displayName": "Author active",
623
+ "description": "Is attachment author active"
624
+ },
625
+ {
626
+ "name": "fields.attachment[*].author.timeZone",
627
+ "type": "string",
628
+ "displayName": "Author timezone",
629
+ "description": "The timezone of author"
630
+ },
631
+ {
632
+ "name": "fields.attachment[*].author.avatarUrls.48x48",
633
+ "type": "string",
634
+ "displayName": "Attachment author avatar urls 48 x 48",
635
+ "description": "The author avatar urls 48 x 48 of attachment"
636
+ },
637
+ {
638
+ "name": "fields.attachment[*].author.avatarUrls.32x32",
639
+ "type": "string",
640
+ "displayName": "Attachment author avatar urls 32 x 32",
641
+ "description": "The author avatar urls 32 x 32 of attachment"
642
+ },
643
+ {
644
+ "name": "fields.attachment[*].author.avatarUrls.24x24",
645
+ "type": "string",
646
+ "displayName": "Attachment author avatar urls 24 x 24",
647
+ "description": "The author avatar urls 24 x 24 of attachment"
648
+ },
649
+ {
650
+ "name": "fields.attachment[*].author.avatarUrls.16x16",
651
+ "type": "string",
652
+ "displayName": "Attachment author avatar urls 16 x 16",
653
+ "description": "The author avatar urls 16 x 16 of attachment"
654
+ },
655
+ {
656
+ "name": "fields.attachment[*].created",
657
+ "type": "string",
658
+ "displayName": "Attachment created",
659
+ "description": "The created of attachment"
660
+ },
661
+ {
662
+ "name": "fields.attachment[*].self",
663
+ "type": "string",
664
+ "displayName": "Attachment self",
665
+ "description": "The self of attachment"
666
+ },
667
+ {
668
+ "name": "fields.attachment[*].id",
669
+ "type": "string",
670
+ "displayName": "Attachment ID",
671
+ "description": "The ID of attachment"
672
+ },
673
+ {
674
+ "name": "fields.attachment[*].mimeType",
675
+ "type": "string",
676
+ "displayName": "Attachment mimeType",
677
+ "description": "The mime type of attachment"
678
+ },
679
+ {
680
+ "name": "fields.attachment[*].content",
681
+ "type": "string",
682
+ "displayName": "Attachment content",
683
+ "description": "The content of attachment"
684
+ },
685
+ {
686
+ "name": "fields.assignee.avatarUrls.32x32",
687
+ "type": "string",
688
+ "displayName": "Assignee avatar urls 32 x 32"
689
+ },
690
+ {
691
+ "name": "fields.assignee.avatarUrls.48x48",
692
+ "type": "string",
693
+ "displayName": "Assignee avatar urls 48 x 48"
694
+ },
695
+ {
696
+ "name": "fields.assignee.displayName",
697
+ "type": "string",
698
+ "displayName": "Assignee display name"
699
+ },
700
+ {
701
+ "name": "fields.assignee.emailAddress",
702
+ "type": "string",
703
+ "displayName": "Assignee email address"
704
+ },
705
+ {
706
+ "name": "fields.assignee.id",
707
+ "type": "string",
708
+ "displayName": "Assignee ID"
709
+ },
710
+ {
711
+ "name": "fields.assignee.self",
712
+ "type": "string",
713
+ "displayName": "Assignee self"
714
+ },
715
+ {
716
+ "name": "fields.assignee.timeZone",
717
+ "type": "string",
718
+ "displayName": "Assignee time zone"
719
+ },
720
+ {
721
+ "name": "fields.components[*].id",
722
+ "type": "string",
723
+ "displayName": "Components ID"
724
+ },
725
+ {
726
+ "name": "fields.components[*].name",
727
+ "type": "string",
728
+ "displayName": "Components"
729
+ },
730
+ {
731
+ "name": "fields.created",
732
+ "type": "string",
733
+ "displayName": "Created"
734
+ },
735
+ {
736
+ "name": "fields.creator.accountId",
737
+ "type": "string",
738
+ "displayName": "Creator account ID"
739
+ },
740
+ {
741
+ "name": "fields.creator.accountType",
742
+ "type": "string",
743
+ "displayName": "Creator account type"
744
+ },
745
+ {
746
+ "name": "fields.creator.active",
747
+ "type": "boolean",
748
+ "displayName": "Creator active"
749
+ },
750
+ {
751
+ "name": "fields.creator.avatarUrls.16x16",
752
+ "type": "string",
753
+ "displayName": "Creator avatar urls 16 x 16"
754
+ },
755
+ {
756
+ "name": "fields.creator.avatarUrls.24x24",
757
+ "type": "string",
758
+ "displayName": "Creator avatar urls 24 x 24"
759
+ },
760
+ {
761
+ "name": "fields.creator.avatarUrls.32x32",
762
+ "type": "string",
763
+ "displayName": "Creator avatar urls 32 x 32"
764
+ },
765
+ {
766
+ "name": "fields.creator.avatarUrls.48x48",
767
+ "type": "string",
768
+ "displayName": "Creator avatar urls 48 x 48"
769
+ },
770
+ {
771
+ "name": "fields.creator.displayName",
772
+ "type": "string",
773
+ "displayName": "Creator display name"
774
+ },
775
+ {
776
+ "name": "fields.creator.emailAddress",
777
+ "type": "string",
778
+ "displayName": "Creator email address"
779
+ },
780
+ {
781
+ "name": "fields.creator.self",
782
+ "type": "string",
783
+ "displayName": "Creator self"
784
+ },
785
+ {
786
+ "name": "fields.creator.timeZone",
787
+ "type": "string",
788
+ "displayName": "Creator time zone"
789
+ },
790
+ {
791
+ "name": "fields.description",
792
+ "type": "string",
793
+ "displayName": "Description"
794
+ },
795
+ {
796
+ "name": "fields.duedate",
797
+ "type": "string",
798
+ "displayName": "Due date"
799
+ },
800
+ {
801
+ "name": "fields.environment",
802
+ "type": "string",
803
+ "displayName": "Environment"
804
+ },
805
+ {
806
+ "name": "fields.fixVersions[*].id",
807
+ "type": "string",
808
+ "displayName": "Fix versions ID"
809
+ },
810
+ {
811
+ "name": "fields.fixVersions[*].name",
812
+ "type": "string",
813
+ "displayName": "Fix versions"
814
+ },
815
+ {
816
+ "name": "fields.issuetype.avatarId",
817
+ "type": "integer",
818
+ "displayName": "Issue type avatar ID"
819
+ },
820
+ {
821
+ "name": "fields.issuetype.description",
822
+ "type": "string",
823
+ "displayName": "Issue type description"
824
+ },
825
+ {
826
+ "name": "fields.issuetype.entityId",
827
+ "type": "string",
828
+ "displayName": "Issue type entity ID"
829
+ },
830
+ {
831
+ "name": "fields.issuetype.hierarchyLevel",
832
+ "type": "integer",
833
+ "displayName": "Issue type hierarchy level"
834
+ },
835
+ {
836
+ "name": "fields.issuetype.iconUrl",
837
+ "type": "string",
838
+ "displayName": "Issue type icon url"
839
+ },
840
+ {
841
+ "name": "fields.issuetype.id",
842
+ "type": "string",
843
+ "displayName": "Issue type",
844
+ "description": "The type of the issue (task, story, bug, epic, etc). Select one to enable custom fields",
845
+ "reference": {
846
+ "objectName": "project",
847
+ "lookupNames": [
848
+ "issueTypes[*].name"
849
+ ],
850
+ "lookupValue": "issueTypes[*].id",
851
+ "dependsOn": [
852
+ "fields.project.key"
853
+ ],
854
+ "path": "/project/{fields.project.key}"
855
+ }
856
+ },
857
+ {
858
+ "name": "fields.issuetype.name",
859
+ "type": "string",
860
+ "displayName": "Issue type name",
861
+ "reference": {
862
+ "objectName": "project",
863
+ "lookupNames": [
864
+ "name",
865
+ "id"
866
+ ],
867
+ "lookupValue": "name",
868
+ "path": "/project/{fields.project.key}/issuetypes"
869
+ }
870
+ },
871
+ {
872
+ "name": "fields.issuetype.self",
873
+ "type": "string",
874
+ "displayName": "Issue type self"
875
+ },
876
+ {
877
+ "name": "fields.issuetype.subtask",
878
+ "type": "boolean",
879
+ "displayName": "Issue type subtask"
880
+ },
881
+ {
882
+ "name": "fields.labels[*]",
883
+ "type": "string",
884
+ "displayName": "Labels"
885
+ },
886
+ {
887
+ "name": "fields.parent.key",
888
+ "type": "string",
889
+ "displayName": "Parent issue key",
890
+ "description": "The Parent of the issue"
891
+ },
892
+ {
893
+ "name": "fields.priority.iconUrl",
894
+ "type": "string",
895
+ "displayName": "Priority icon url"
896
+ },
897
+ {
898
+ "name": "fields.priority.id",
899
+ "type": "string",
900
+ "displayName": "Priority ID"
901
+ },
902
+ {
903
+ "name": "fields.priority.self",
904
+ "type": "string",
905
+ "displayName": "Priority self"
906
+ },
907
+ {
908
+ "name": "fields.progress.progress",
909
+ "type": "integer",
910
+ "displayName": "Progress"
911
+ },
912
+ {
913
+ "name": "fields.progress.total",
914
+ "type": "integer",
915
+ "displayName": "Progress total"
916
+ },
917
+ {
918
+ "name": "fields.project.avatarUrls.16x16",
919
+ "type": "string",
920
+ "displayName": "Project avatar urls 16 x 16"
921
+ },
922
+ {
923
+ "name": "fields.project.avatarUrls.24x24",
924
+ "type": "string",
925
+ "displayName": "Project avatar urls 24 x 24"
926
+ },
927
+ {
928
+ "name": "fields.project.avatarUrls.32x32",
929
+ "type": "string",
930
+ "displayName": "Project avatar urls 32 x 32"
931
+ },
932
+ {
933
+ "name": "fields.project.avatarUrls.48x48",
934
+ "type": "string",
935
+ "displayName": "Project avatar urls 48 x 48"
936
+ },
937
+ {
938
+ "name": "fields.project.id",
939
+ "type": "string",
940
+ "displayName": "Project ID"
941
+ },
942
+ {
943
+ "name": "fields.project.key",
944
+ "type": "string",
945
+ "displayName": "Project",
946
+ "description": "Enter the project name or key to begin",
947
+ "reference": {
948
+ "objectName": "project",
949
+ "lookupNames": [
950
+ "name"
951
+ ],
952
+ "lookupValue": "key",
953
+ "path": "/project/search",
954
+ "filterPattern": "query={filter}"
955
+ }
956
+ },
957
+ {
958
+ "name": "fields.project.name",
959
+ "type": "string",
960
+ "displayName": "Project name"
961
+ },
962
+ {
963
+ "name": "fields.project.projectTypeKey",
964
+ "type": "string",
965
+ "displayName": "Project type key"
966
+ },
967
+ {
968
+ "name": "fields.project.self",
969
+ "type": "string",
970
+ "displayName": "Project self"
971
+ },
972
+ {
973
+ "name": "fields.project.simplified",
974
+ "type": "boolean",
975
+ "displayName": "Project simplified"
976
+ },
977
+ {
978
+ "name": "fields.reporter.accountId",
979
+ "type": "string",
980
+ "displayName": "Reporter account ID"
981
+ },
982
+ {
983
+ "name": "fields.reporter.accountType",
984
+ "type": "string",
985
+ "displayName": "Reporter account type"
986
+ },
987
+ {
988
+ "name": "fields.reporter.active",
989
+ "type": "boolean",
990
+ "displayName": "Reporter active"
991
+ },
992
+ {
993
+ "name": "fields.reporter.avatarUrls.16x16",
994
+ "type": "string",
995
+ "displayName": "Reporter avatar urls 16 x 16"
996
+ },
997
+ {
998
+ "name": "fields.reporter.avatarUrls.24x24",
999
+ "type": "string",
1000
+ "displayName": "Reporter avatar urls 24 x 24"
1001
+ },
1002
+ {
1003
+ "name": "fields.reporter.avatarUrls.32x32",
1004
+ "type": "string",
1005
+ "displayName": "Reporter avatar urls 32 x 32"
1006
+ },
1007
+ {
1008
+ "name": "fields.reporter.avatarUrls.48x48",
1009
+ "type": "string",
1010
+ "displayName": "Reporter avatar urls 48 x 48"
1011
+ },
1012
+ {
1013
+ "name": "fields.reporter.displayName",
1014
+ "type": "string",
1015
+ "displayName": "Reporter display name"
1016
+ },
1017
+ {
1018
+ "name": "fields.reporter.emailAddress",
1019
+ "type": "string",
1020
+ "displayName": "Reporter email address"
1021
+ },
1022
+ {
1023
+ "name": "fields.reporter.id",
1024
+ "type": "string",
1025
+ "displayName": "Reporter ID"
1026
+ },
1027
+ {
1028
+ "name": "fields.reporter.self",
1029
+ "type": "string",
1030
+ "displayName": "Reporter self"
1031
+ },
1032
+ {
1033
+ "name": "fields.reporter.timeZone",
1034
+ "type": "string",
1035
+ "displayName": "Reporter time zone"
1036
+ },
1037
+ {
1038
+ "name": "fields.security.id",
1039
+ "type": "string",
1040
+ "displayName": "Security ID"
1041
+ },
1042
+ {
1043
+ "name": "fields.status.description",
1044
+ "type": "string",
1045
+ "displayName": "Status description"
1046
+ },
1047
+ {
1048
+ "name": "fields.status.iconUrl",
1049
+ "type": "string",
1050
+ "displayName": "Status icon url"
1051
+ },
1052
+ {
1053
+ "name": "fields.status.id",
1054
+ "type": "string",
1055
+ "displayName": "Status ID"
1056
+ },
1057
+ {
1058
+ "name": "fields.status.name",
1059
+ "type": "string",
1060
+ "displayName": "Status"
1061
+ },
1062
+ {
1063
+ "name": "fields.status.self",
1064
+ "type": "string",
1065
+ "displayName": "Status self"
1066
+ },
1067
+ {
1068
+ "name": "fields.status.statusCategory.colorName",
1069
+ "type": "string",
1070
+ "displayName": "Status category color name"
1071
+ },
1072
+ {
1073
+ "name": "fields.status.statusCategory.id",
1074
+ "type": "integer",
1075
+ "displayName": "Status category ID"
1076
+ },
1077
+ {
1078
+ "name": "fields.status.statusCategory.key",
1079
+ "type": "string",
1080
+ "displayName": "Status category key"
1081
+ },
1082
+ {
1083
+ "name": "fields.status.statusCategory.name",
1084
+ "type": "string",
1085
+ "displayName": "Status category name"
1086
+ },
1087
+ {
1088
+ "name": "fields.status.statusCategory.self",
1089
+ "type": "string",
1090
+ "displayName": "Status category self"
1091
+ },
1092
+ {
1093
+ "name": "fields.statuscategorychangedate",
1094
+ "type": "string",
1095
+ "displayName": "Status category changed ate"
1096
+ },
1097
+ {
1098
+ "name": "fields.summary",
1099
+ "type": "string",
1100
+ "displayName": "Summary"
1101
+ },
1102
+ {
1103
+ "name": "fields.timetracking.originalEstimate",
1104
+ "type": "string",
1105
+ "displayName": "Timetracking original estimate"
1106
+ },
1107
+ {
1108
+ "name": "fields.timetracking.remainingEstimate",
1109
+ "type": "string",
1110
+ "displayName": "Timetracking remaining estimate"
1111
+ },
1112
+ {
1113
+ "name": "fields.updated",
1114
+ "type": "string",
1115
+ "displayName": "Updated"
1116
+ },
1117
+ {
1118
+ "name": "fields.versions[*].id",
1119
+ "type": "string",
1120
+ "displayName": "Versions"
1121
+ },
1122
+ {
1123
+ "name": "fields.votes.hasVoted",
1124
+ "type": "boolean",
1125
+ "displayName": "Votes has voted"
1126
+ },
1127
+ {
1128
+ "name": "fields.votes.self",
1129
+ "type": "string",
1130
+ "displayName": "Votes self"
1131
+ },
1132
+ {
1133
+ "name": "fields.votes.votes",
1134
+ "type": "integer",
1135
+ "displayName": "Votes"
1136
+ },
1137
+ {
1138
+ "name": "fields.watches.isWatching",
1139
+ "type": "boolean",
1140
+ "displayName": "Watches is watching"
1141
+ },
1142
+ {
1143
+ "name": "fields.watches.self",
1144
+ "type": "string",
1145
+ "displayName": "Watches self"
1146
+ },
1147
+ {
1148
+ "name": "fields.watches.watchCount",
1149
+ "type": "integer",
1150
+ "displayName": "Watches watch count"
1151
+ },
1152
+ {
1153
+ "name": "fields.workratio",
1154
+ "type": "integer",
1155
+ "displayName": "Workratio"
1156
+ },
1157
+ {
1158
+ "name": "historyMetadata.activityDescription",
1159
+ "type": "string",
1160
+ "displayName": "History metadata activity description",
1161
+ "description": "The activity described in the history record"
1162
+ },
1163
+ {
1164
+ "name": "historyMetadata.activityDescriptionKey",
1165
+ "type": "string",
1166
+ "displayName": "History metadata activity description key",
1167
+ "description": "The key of the activity described in the history record"
1168
+ },
1169
+ {
1170
+ "name": "historyMetadata.actor.avatarUrl",
1171
+ "type": "string",
1172
+ "displayName": "History metadata actor avatar url",
1173
+ "description": "The URL to an avatar for the user or system associated with a history record"
1174
+ },
1175
+ {
1176
+ "name": "historyMetadata.actor.displayName",
1177
+ "type": "string",
1178
+ "displayName": "History metadata actor display name",
1179
+ "description": "The display name of the user or system associated with a history record"
1180
+ },
1181
+ {
1182
+ "name": "historyMetadata.actor.displayNameKey",
1183
+ "type": "string",
1184
+ "displayName": "History metadata actor display name key",
1185
+ "description": "The key of the display name of the user or system associated with a history record"
1186
+ },
1187
+ {
1188
+ "name": "historyMetadata.actor.id",
1189
+ "type": "string",
1190
+ "displayName": "History metadata actor ID",
1191
+ "description": "The ID of the user or system associated with a history record"
1192
+ },
1193
+ {
1194
+ "name": "historyMetadata.actor.type",
1195
+ "type": "string",
1196
+ "displayName": "History metadata actor type",
1197
+ "description": "The type of the user or system associated with a history record"
1198
+ },
1199
+ {
1200
+ "name": "historyMetadata.actor.url",
1201
+ "type": "string",
1202
+ "displayName": "History metadata actor url",
1203
+ "description": "The URL of the user or system associated with a history record"
1204
+ },
1205
+ {
1206
+ "name": "historyMetadata.cause.avatarUrl",
1207
+ "type": "string",
1208
+ "displayName": "History metadata cause avatar url",
1209
+ "description": "The URL to an avatar for the user or system associated with a history record"
1210
+ },
1211
+ {
1212
+ "name": "historyMetadata.cause.displayName",
1213
+ "type": "string",
1214
+ "displayName": "History metadata cause display name",
1215
+ "description": "The display name of the user or system associated with a history record."
1216
+ },
1217
+ {
1218
+ "name": "historyMetadata.cause.displayNameKey",
1219
+ "type": "string",
1220
+ "displayName": "History metadata cause display name key",
1221
+ "description": "The key of the display name of the user or system associated with a history record"
1222
+ },
1223
+ {
1224
+ "name": "historyMetadata.cause.id",
1225
+ "type": "string",
1226
+ "displayName": "History metadata cause ID",
1227
+ "description": "The ID of the user or system associated with a history record"
1228
+ },
1229
+ {
1230
+ "name": "historyMetadata.cause.type",
1231
+ "type": "string",
1232
+ "displayName": "History metadata cause type",
1233
+ "description": "The type of the user or system associated with a history record"
1234
+ },
1235
+ {
1236
+ "name": "historyMetadata.cause.url",
1237
+ "type": "string",
1238
+ "displayName": "History metadata cause url",
1239
+ "description": "The URL of the user or system associated with a history record"
1240
+ },
1241
+ {
1242
+ "name": "historyMetadata.description",
1243
+ "type": "string",
1244
+ "displayName": "History metadata description",
1245
+ "description": "The description of the history record"
1246
+ },
1247
+ {
1248
+ "name": "historyMetadata.descriptionKey",
1249
+ "type": "string",
1250
+ "displayName": "History metadata description key",
1251
+ "description": "The description key of the history record"
1252
+ },
1253
+ {
1254
+ "name": "historyMetadata.emailDescription",
1255
+ "type": "string",
1256
+ "displayName": "History metadata email description",
1257
+ "description": "The description of the email address associated the history record"
1258
+ },
1259
+ {
1260
+ "name": "historyMetadata.emailDescriptionKey",
1261
+ "type": "string",
1262
+ "displayName": "History metadata email description key",
1263
+ "description": "The description key of the email address associated the history record"
1264
+ },
1265
+ {
1266
+ "name": "historyMetadata.generator.avatarUrl",
1267
+ "type": "string",
1268
+ "displayName": "History metadata generator avatar url",
1269
+ "description": "The URL to an avatar for the user or system associated with a history record"
1270
+ },
1271
+ {
1272
+ "name": "historyMetadata.generator.displayName",
1273
+ "type": "string",
1274
+ "displayName": "History metadata generator display name",
1275
+ "description": "The display name of the user or system associated with a history record"
1276
+ },
1277
+ {
1278
+ "name": "historyMetadata.generator.displayNameKey",
1279
+ "type": "string",
1280
+ "displayName": "History metadata generator display name key",
1281
+ "description": "The key of the display name of the user or system associated with a history record"
1282
+ },
1283
+ {
1284
+ "name": "historyMetadata.generator.id",
1285
+ "type": "string",
1286
+ "displayName": "History metadata generator ID",
1287
+ "description": "The ID of the user or system associated with a history record"
1288
+ },
1289
+ {
1290
+ "name": "historyMetadata.generator.type",
1291
+ "type": "string",
1292
+ "displayName": "History metadata generator type",
1293
+ "description": "The type of the user or system associated with a history record"
1294
+ },
1295
+ {
1296
+ "name": "historyMetadata.generator.url",
1297
+ "type": "string",
1298
+ "displayName": "History metadata generator url",
1299
+ "description": "The URL of the user or system associated with a history record"
1300
+ },
1301
+ {
1302
+ "name": "historyMetadata.type",
1303
+ "type": "string",
1304
+ "displayName": "History metadata type",
1305
+ "description": "The type of the history record"
1306
+ },
1307
+ {
1308
+ "name": "id",
1309
+ "type": "string",
1310
+ "displayName": "Issue ID",
1311
+ "description": "The ID of the issue",
1312
+ "reference": {
1313
+ "objectName": "issues",
1314
+ "lookupNames": [
1315
+ "key"
1316
+ ],
1317
+ "lookupValue": "id",
1318
+ "path": "/issues",
1319
+ "childPath": "/edit-issue-fields-meta?issueIdOrKey={id}"
1320
+ }
1321
+ },
1322
+ {
1323
+ "name": "key",
1324
+ "type": "string",
1325
+ "displayName": "Issue key",
1326
+ "description": "The key of the issue",
1327
+ "reference": {
1328
+ "objectName": "issues",
1329
+ "lookupNames": [
1330
+ "key"
1331
+ ],
1332
+ "lookupValue": "id",
1333
+ "path": "/issues",
1334
+ "childPath": "/edit-issue-fields-meta?issueIdOrKey={key}"
1335
+ }
1336
+ },
1337
+ {
1338
+ "name": "operations.linkGroups[*].groups[*].header.href",
1339
+ "type": "string",
1340
+ "displayName": "Operations link groups groups header href"
1341
+ },
1342
+ {
1343
+ "name": "operations.linkGroups[*].groups[*].header.iconClass",
1344
+ "type": "string",
1345
+ "displayName": "Operations link groups groups header icon class"
1346
+ },
1347
+ {
1348
+ "name": "operations.linkGroups[*].groups[*].header.id",
1349
+ "type": "string",
1350
+ "displayName": "Operations link groups groups header ID"
1351
+ },
1352
+ {
1353
+ "name": "operations.linkGroups[*].groups[*].header.label",
1354
+ "type": "string",
1355
+ "displayName": "Operations link groups groups header label"
1356
+ },
1357
+ {
1358
+ "name": "operations.linkGroups[*].groups[*].header.styleClass",
1359
+ "type": "string",
1360
+ "displayName": "Operations link groups groups header style class"
1361
+ },
1362
+ {
1363
+ "name": "operations.linkGroups[*].groups[*].header.title",
1364
+ "type": "string",
1365
+ "displayName": "Operations link groups groups header title"
1366
+ },
1367
+ {
1368
+ "name": "operations.linkGroups[*].groups[*].header.weight",
1369
+ "type": "integer",
1370
+ "displayName": "Operations link groups groups header weight"
1371
+ },
1372
+ {
1373
+ "name": "operations.linkGroups[*].groups[*].id",
1374
+ "type": "string",
1375
+ "displayName": "Operations link groups groups ID"
1376
+ },
1377
+ {
1378
+ "name": "operations.linkGroups[*].groups[*].links[*].href",
1379
+ "type": "string",
1380
+ "displayName": "Operations link groups groups links href"
1381
+ },
1382
+ {
1383
+ "name": "operations.linkGroups[*].groups[*].links[*].iconClass",
1384
+ "type": "string",
1385
+ "displayName": "Operations link groups groups links icon class"
1386
+ },
1387
+ {
1388
+ "name": "operations.linkGroups[*].groups[*].links[*].id",
1389
+ "type": "string",
1390
+ "displayName": "Operations link groups groups links ID"
1391
+ },
1392
+ {
1393
+ "name": "operations.linkGroups[*].groups[*].links[*].label",
1394
+ "type": "string",
1395
+ "displayName": "Operations link groups groups links label"
1396
+ },
1397
+ {
1398
+ "name": "operations.linkGroups[*].groups[*].links[*].styleClass",
1399
+ "type": "string",
1400
+ "displayName": "Operations link groups groups links style class"
1401
+ },
1402
+ {
1403
+ "name": "operations.linkGroups[*].groups[*].links[*].title",
1404
+ "type": "string",
1405
+ "displayName": "Operations link groups groups links title"
1406
+ },
1407
+ {
1408
+ "name": "operations.linkGroups[*].groups[*].links[*].weight",
1409
+ "type": "integer",
1410
+ "displayName": "Operations link groups groups links weight"
1411
+ },
1412
+ {
1413
+ "name": "operations.linkGroups[*].groups[*].styleClass",
1414
+ "type": "string",
1415
+ "displayName": "Operations link groups groups style class"
1416
+ },
1417
+ {
1418
+ "name": "operations.linkGroups[*].groups[*].weight",
1419
+ "type": "integer",
1420
+ "displayName": "Operations link groups groups weight"
1421
+ },
1422
+ {
1423
+ "name": "operations.linkGroups[*].header.href",
1424
+ "type": "string",
1425
+ "displayName": "Operations link groups header href"
1426
+ },
1427
+ {
1428
+ "name": "operations.linkGroups[*].header.iconClass",
1429
+ "type": "string",
1430
+ "displayName": "Operations link groups header icon class"
1431
+ },
1432
+ {
1433
+ "name": "operations.linkGroups[*].header.id",
1434
+ "type": "string",
1435
+ "displayName": "Operations link groups header ID"
1436
+ },
1437
+ {
1438
+ "name": "operations.linkGroups[*].header.label",
1439
+ "type": "string",
1440
+ "displayName": "Operations link groups header label"
1441
+ },
1442
+ {
1443
+ "name": "operations.linkGroups[*].header.styleClass",
1444
+ "type": "string",
1445
+ "displayName": "Operations link groups header style class"
1446
+ },
1447
+ {
1448
+ "name": "operations.linkGroups[*].header.title",
1449
+ "type": "string",
1450
+ "displayName": "Operations link groups header title"
1451
+ },
1452
+ {
1453
+ "name": "operations.linkGroups[*].header.weight",
1454
+ "type": "integer",
1455
+ "displayName": "Operations link groups header weight"
1456
+ },
1457
+ {
1458
+ "name": "operations.linkGroups[*].id",
1459
+ "type": "string",
1460
+ "displayName": "Operations link groups ID"
1461
+ },
1462
+ {
1463
+ "name": "operations.linkGroups[*].links[*].href",
1464
+ "type": "string",
1465
+ "displayName": "Operations link groups links href"
1466
+ },
1467
+ {
1468
+ "name": "operations.linkGroups[*].links[*].iconClass",
1469
+ "type": "string",
1470
+ "displayName": "Operations link groups links icon class"
1471
+ },
1472
+ {
1473
+ "name": "operations.linkGroups[*].links[*].id",
1474
+ "type": "string",
1475
+ "displayName": "Operations link groups links ID"
1476
+ },
1477
+ {
1478
+ "name": "operations.linkGroups[*].links[*].label",
1479
+ "type": "string",
1480
+ "displayName": "Operations link groups links label"
1481
+ },
1482
+ {
1483
+ "name": "operations.linkGroups[*].links[*].styleClass",
1484
+ "type": "string",
1485
+ "displayName": "Operations link groups links style class"
1486
+ },
1487
+ {
1488
+ "name": "operations.linkGroups[*].links[*].title",
1489
+ "type": "string",
1490
+ "displayName": "Operations link groups links title"
1491
+ },
1492
+ {
1493
+ "name": "operations.linkGroups[*].links[*].weight",
1494
+ "type": "integer",
1495
+ "displayName": "Operations link groups links weight"
1496
+ },
1497
+ {
1498
+ "name": "operations.linkGroups[*].styleClass",
1499
+ "type": "string",
1500
+ "displayName": "Operations link groups style class"
1501
+ },
1502
+ {
1503
+ "name": "operations.linkGroups[*].weight",
1504
+ "type": "integer",
1505
+ "displayName": "Operations link groups weight"
1506
+ },
1507
+ {
1508
+ "name": "properties[*].key",
1509
+ "type": "string",
1510
+ "displayName": "Properties key",
1511
+ "description": "The key of the property. Required on create and update."
1512
+ },
1513
+ {
1514
+ "name": "properties[*].value",
1515
+ "type": "string",
1516
+ "displayName": "Properties value",
1517
+ "description": "The value of the property. Required on create and update."
1518
+ },
1519
+ {
1520
+ "name": "schema.custom",
1521
+ "type": "string",
1522
+ "displayName": "Schema custom",
1523
+ "description": "If the field is a custom field, the URI of the field"
1524
+ },
1525
+ {
1526
+ "name": "schema.customId",
1527
+ "type": "integer",
1528
+ "displayName": "Schema custom ID",
1529
+ "description": "If the field is a custom field, the custom ID of the field"
1530
+ },
1531
+ {
1532
+ "name": "schema.items",
1533
+ "type": "string",
1534
+ "displayName": "Schema items",
1535
+ "description": "When the data type is an array, the name of the field items within the array"
1536
+ },
1537
+ {
1538
+ "name": "schema.system",
1539
+ "type": "string",
1540
+ "displayName": "Schema system",
1541
+ "description": "If the field is a system field, the name of the field"
1542
+ },
1543
+ {
1544
+ "name": "schema.type",
1545
+ "type": "string",
1546
+ "displayName": "Schema type",
1547
+ "description": "The data type of the field"
1548
+ },
1549
+ {
1550
+ "name": "self",
1551
+ "type": "string",
1552
+ "displayName": "Self",
1553
+ "description": "The URL of the issue details"
1554
+ },
1555
+ {
1556
+ "name": "transition.errorCollection.errorMessages[*]",
1557
+ "type": "string",
1558
+ "displayName": "Transition error collection error messages"
1559
+ },
1560
+ {
1561
+ "name": "transition.errorCollection.status",
1562
+ "type": "integer",
1563
+ "displayName": "Transition error collection status"
1564
+ },
1565
+ {
1566
+ "name": "transition.expand",
1567
+ "type": "string",
1568
+ "displayName": "Transition expand",
1569
+ "description": "Expand options that include additional transition details in the response"
1570
+ },
1571
+ {
1572
+ "name": "transition.fields.allowedValues[*]",
1573
+ "type": "string",
1574
+ "displayName": "Transition fields allowed values"
1575
+ },
1576
+ {
1577
+ "name": "transition.fields.autoCompleteUrl",
1578
+ "type": "string",
1579
+ "displayName": "Transition fields auto complete url",
1580
+ "description": "The URL that can be used to automatically complete the field"
1581
+ },
1582
+ {
1583
+ "name": "transition.fields.defaultValue",
1584
+ "type": "string",
1585
+ "displayName": "Transition fields default value",
1586
+ "description": "The default value of the field"
1587
+ },
1588
+ {
1589
+ "name": "transition.fields.hasDefaultValue",
1590
+ "type": "boolean",
1591
+ "displayName": "Transition fields has default value",
1592
+ "description": "Whether the field has a default value"
1593
+ },
1594
+ {
1595
+ "name": "transition.fields.key",
1596
+ "type": "string",
1597
+ "displayName": "Transition fields key",
1598
+ "description": "The key of the field"
1599
+ },
1600
+ {
1601
+ "name": "transition.fields.name",
1602
+ "type": "string",
1603
+ "displayName": "Transition fields name",
1604
+ "description": "The name of the field"
1605
+ },
1606
+ {
1607
+ "name": "transition.fields.operations[*]",
1608
+ "type": "string",
1609
+ "displayName": "Transition fields operations"
1610
+ },
1611
+ {
1612
+ "name": "transition.fields.required",
1613
+ "type": "boolean",
1614
+ "displayName": "Transition fields required",
1615
+ "description": "Whether the field is required"
1616
+ },
1617
+ {
1618
+ "name": "transition.fields.schema.custom",
1619
+ "type": "string",
1620
+ "displayName": "Transition fields schema custom",
1621
+ "description": "If the field is a custom field, the URI of the field"
1622
+ },
1623
+ {
1624
+ "name": "transition.fields.schema.customId",
1625
+ "type": "integer",
1626
+ "displayName": "Transition fields schema custom ID",
1627
+ "description": "If the field is a custom field, the custom ID of the field"
1628
+ },
1629
+ {
1630
+ "name": "transition.fields.schema.items",
1631
+ "type": "string",
1632
+ "displayName": "Transition fields schema items",
1633
+ "description": "When the data type is an array, the name of the field items within the array"
1634
+ },
1635
+ {
1636
+ "name": "transition.fields.schema.system",
1637
+ "type": "string",
1638
+ "displayName": "Transition fields schema system",
1639
+ "description": "If the field is a system field, the name of the field"
1640
+ },
1641
+ {
1642
+ "name": "transition.fields.schema.type",
1643
+ "type": "string",
1644
+ "displayName": "Transition fields schema type",
1645
+ "description": "The data type of the field"
1646
+ },
1647
+ {
1648
+ "name": "transition.hasScreen",
1649
+ "type": "boolean",
1650
+ "displayName": "Transition has screen",
1651
+ "description": "Whether there is a screen associated with the issue transition"
1652
+ },
1653
+ {
1654
+ "name": "transition.id",
1655
+ "type": "string",
1656
+ "displayName": "Transition ID",
1657
+ "description": "The ID of the issue transition. Required when specifying a transition to undertake."
1658
+ },
1659
+ {
1660
+ "name": "transition.isAvailable",
1661
+ "type": "boolean",
1662
+ "displayName": "Transition is available",
1663
+ "description": "Whether the transition is available to be performed"
1664
+ },
1665
+ {
1666
+ "name": "transition.isConditional",
1667
+ "type": "boolean",
1668
+ "displayName": "Transition is conditional",
1669
+ "description": "Whether the issue has to meet criteria before the issue transition is applied"
1670
+ },
1671
+ {
1672
+ "name": "transition.isGlobal",
1673
+ "type": "boolean",
1674
+ "displayName": "Transition is global",
1675
+ "description": "Whether the issue transition is global, that is, the transition is applied to issues regardless of their status."
1676
+ },
1677
+ {
1678
+ "name": "transition.isInitial",
1679
+ "type": "boolean",
1680
+ "displayName": "Transition is initial",
1681
+ "description": "Whether this is the initial issue transition for the workflow"
1682
+ },
1683
+ {
1684
+ "name": "transition.looped",
1685
+ "type": "boolean",
1686
+ "displayName": "Transition looped"
1687
+ },
1688
+ {
1689
+ "name": "transition.name",
1690
+ "type": "string",
1691
+ "displayName": "Transition name",
1692
+ "description": "The name of the issue transition"
1693
+ },
1694
+ {
1695
+ "name": "transition.status",
1696
+ "type": "integer",
1697
+ "displayName": "Transition status"
1698
+ },
1699
+ {
1700
+ "name": "transition.to.description",
1701
+ "type": "string",
1702
+ "displayName": "Transition to description",
1703
+ "description": "The description of the status"
1704
+ },
1705
+ {
1706
+ "name": "transition.to.iconUrl",
1707
+ "type": "string",
1708
+ "displayName": "Transition to icon url",
1709
+ "description": "The URL of the icon used to represent the status"
1710
+ },
1711
+ {
1712
+ "name": "transition.to.id",
1713
+ "type": "string",
1714
+ "displayName": "Transition to ID",
1715
+ "description": "The ID of the status"
1716
+ },
1717
+ {
1718
+ "name": "transition.to.name",
1719
+ "type": "string",
1720
+ "displayName": "Transition to name",
1721
+ "description": "The name of the status"
1722
+ },
1723
+ {
1724
+ "name": "transition.to.self",
1725
+ "type": "string",
1726
+ "displayName": "Transition to self",
1727
+ "description": "The URL of the status"
1728
+ },
1729
+ {
1730
+ "name": "transition.to.statusCategory.colorName",
1731
+ "type": "string",
1732
+ "displayName": "Transition to status category color name",
1733
+ "description": "The name of the color used to represent the status category"
1734
+ },
1735
+ {
1736
+ "name": "transition.to.statusCategory.id",
1737
+ "type": "integer",
1738
+ "displayName": "Transition to status category ID",
1739
+ "description": "The ID of the status category"
1740
+ },
1741
+ {
1742
+ "name": "transition.to.statusCategory.key",
1743
+ "type": "string",
1744
+ "displayName": "Transition to status category key",
1745
+ "description": "The key of the status category"
1746
+ },
1747
+ {
1748
+ "name": "transition.to.statusCategory.name",
1749
+ "type": "string",
1750
+ "displayName": "Transition to status category name",
1751
+ "description": "The name of the status category"
1752
+ },
1753
+ {
1754
+ "name": "transition.to.statusCategory.self",
1755
+ "type": "string",
1756
+ "displayName": "Transition to status category self",
1757
+ "description": "The URL of the status category"
1758
+ },
1759
+ {
1760
+ "name": "transitions[*].expand",
1761
+ "type": "string",
1762
+ "displayName": "Transitions expand",
1763
+ "description": "Expand options that include additional transition details in the response"
1764
+ },
1765
+ {
1766
+ "name": "transitions[*].fields.allowedValues[*]",
1767
+ "type": "string",
1768
+ "displayName": "Transitions fields allowed values"
1769
+ },
1770
+ {
1771
+ "name": "transitions[*].fields.autoCompleteUrl",
1772
+ "type": "string",
1773
+ "displayName": "Transitions fields auto complete url",
1774
+ "description": "The URL that can be used to automatically complete the field"
1775
+ },
1776
+ {
1777
+ "name": "transitions[*].fields.defaultValue",
1778
+ "type": "string",
1779
+ "displayName": "Transitions fields default value",
1780
+ "description": "The default value of the field"
1781
+ },
1782
+ {
1783
+ "name": "transitions[*].fields.hasDefaultValue",
1784
+ "type": "boolean",
1785
+ "displayName": "Transitions fields has default value",
1786
+ "description": "Whether the field has a default value"
1787
+ },
1788
+ {
1789
+ "name": "transitions[*].fields.key",
1790
+ "type": "string",
1791
+ "displayName": "Transitions fields key",
1792
+ "description": "The key of the field"
1793
+ },
1794
+ {
1795
+ "name": "transitions[*].fields.name",
1796
+ "type": "string",
1797
+ "displayName": "Transitions fields name",
1798
+ "description": "The name of the field"
1799
+ },
1800
+ {
1801
+ "name": "transitions[*].fields.operations[*]",
1802
+ "type": "string",
1803
+ "displayName": "Transitions fields operations"
1804
+ },
1805
+ {
1806
+ "name": "transitions[*].fields.required",
1807
+ "type": "boolean",
1808
+ "displayName": "Transitions fields required",
1809
+ "description": "Whether the field is required"
1810
+ },
1811
+ {
1812
+ "name": "transitions[*].fields.schema.custom",
1813
+ "type": "string",
1814
+ "displayName": "Transitions fields schema custom",
1815
+ "description": "If the field is a custom field, the URI of the field"
1816
+ },
1817
+ {
1818
+ "name": "transitions[*].fields.schema.customId",
1819
+ "type": "integer",
1820
+ "displayName": "Transitions fields schema custom ID",
1821
+ "description": "If the field is a custom field, the custom ID of the field"
1822
+ },
1823
+ {
1824
+ "name": "transitions[*].fields.schema.items",
1825
+ "type": "string",
1826
+ "displayName": "Transitions fields schema items",
1827
+ "description": "When the data type is an array, the name of the field items within the array"
1828
+ },
1829
+ {
1830
+ "name": "transitions[*].fields.schema.system",
1831
+ "type": "string",
1832
+ "displayName": "Transitions fields schema system",
1833
+ "description": "If the field is a system field, the name of the field"
1834
+ },
1835
+ {
1836
+ "name": "transitions[*].fields.schema.type",
1837
+ "type": "string",
1838
+ "displayName": "Transitions fields schema type",
1839
+ "description": "The data type of the field"
1840
+ },
1841
+ {
1842
+ "name": "transitions[*].hasScreen",
1843
+ "type": "boolean",
1844
+ "displayName": "Transitions has screen",
1845
+ "description": "Whether there is a screen associated with the issue transition"
1846
+ },
1847
+ {
1848
+ "name": "transitions[*].id",
1849
+ "type": "string",
1850
+ "displayName": "Transitions ID",
1851
+ "description": "The ID of the issue transition. Required when specifying a transition to undertake."
1852
+ },
1853
+ {
1854
+ "name": "transitions[*].isAvailable",
1855
+ "type": "boolean",
1856
+ "displayName": "Transitions is available",
1857
+ "description": "Whether the transition is available to be performed"
1858
+ },
1859
+ {
1860
+ "name": "transitions[*].isConditional",
1861
+ "type": "boolean",
1862
+ "displayName": "Transitions is conditional",
1863
+ "description": "Whether the issue has to meet criteria before the issue transition is applied"
1864
+ },
1865
+ {
1866
+ "name": "transitions[*].isGlobal",
1867
+ "type": "boolean",
1868
+ "displayName": "Transitions is global",
1869
+ "description": "Whether the issue transition is global, that is, the transition is applied to issues regardless of their status."
1870
+ },
1871
+ {
1872
+ "name": "transitions[*].isInitial",
1873
+ "type": "boolean",
1874
+ "displayName": "Transitions is initial",
1875
+ "description": "Whether this is the initial issue transition for the workflow"
1876
+ },
1877
+ {
1878
+ "name": "transitions[*].looped",
1879
+ "type": "boolean",
1880
+ "displayName": "Transitions looped"
1881
+ },
1882
+ {
1883
+ "name": "transitions[*].name",
1884
+ "type": "string",
1885
+ "displayName": "Transitions name",
1886
+ "description": "The name of the issue transition"
1887
+ },
1888
+ {
1889
+ "name": "transitions[*].to.description",
1890
+ "type": "string",
1891
+ "displayName": "Transitions to description",
1892
+ "description": "The description of the status"
1893
+ },
1894
+ {
1895
+ "name": "transitions[*].to.iconUrl",
1896
+ "type": "string",
1897
+ "displayName": "Transitions to icon url",
1898
+ "description": "The URL of the icon used to represent the status"
1899
+ },
1900
+ {
1901
+ "name": "transitions[*].to.id",
1902
+ "type": "string",
1903
+ "displayName": "Transitions to ID",
1904
+ "description": "The ID of the status"
1905
+ },
1906
+ {
1907
+ "name": "transitions[*].to.name",
1908
+ "type": "string",
1909
+ "displayName": "Transitions to name",
1910
+ "description": "The name of the status"
1911
+ },
1912
+ {
1913
+ "name": "transitions[*].to.self",
1914
+ "type": "string",
1915
+ "displayName": "Transitions to self",
1916
+ "description": "The URL of the status"
1917
+ },
1918
+ {
1919
+ "name": "transitions[*].to.statusCategory.colorName",
1920
+ "type": "string",
1921
+ "displayName": "Transitions to status category color name",
1922
+ "description": "The name of the color used to represent the status category"
1923
+ },
1924
+ {
1925
+ "name": "transitions[*].to.statusCategory.id",
1926
+ "type": "integer",
1927
+ "displayName": "Transitions to status category ID",
1928
+ "description": "The ID of the status category"
1929
+ },
1930
+ {
1931
+ "name": "transitions[*].to.statusCategory.key",
1932
+ "type": "string",
1933
+ "displayName": "Transitions to status category key",
1934
+ "description": "The key of the status category"
1935
+ },
1936
+ {
1937
+ "name": "transitions[*].to.statusCategory.name",
1938
+ "type": "string",
1939
+ "displayName": "Transitions to status category name",
1940
+ "description": "The name of the status category"
1941
+ },
1942
+ {
1943
+ "name": "transitions[*].to.statusCategory.self",
1944
+ "type": "string",
1945
+ "displayName": "Transitions to status category self",
1946
+ "description": "The URL of the status category"
1947
+ },
1948
+ {
1949
+ "name": "fields.issuelinks[*].outwardIssue.key",
1950
+ "type": "string",
1951
+ "displayName": "Linked outward issue key",
1952
+ "description": "The key identifier for the outwardly linked issue"
1953
+ },
1954
+ {
1955
+ "name": "fields.issuelinks[*].inwardIssue.id",
1956
+ "type": "string",
1957
+ "displayName": "Linked inward issue Id",
1958
+ "description": "The unique ID for the inwardly linked issue"
1959
+ },
1960
+ {
1961
+ "name": "fields.issuelinks[*].inwardIssue.key",
1962
+ "type": "string",
1963
+ "displayName": "Linked inward issue key",
1964
+ "description": "The key identifier for the inwardly linked issue"
1965
+ },
1966
+ {
1967
+ "name": "fields.issuelinks[*].type.id",
1968
+ "type": "string",
1969
+ "displayName": "Issue link type Id",
1970
+ "description": "The ID representing the type of link between issues"
1971
+ },
1972
+ {
1973
+ "name": "fields.issuelinks[*].type.name",
1974
+ "type": "string",
1975
+ "displayName": "Issue link type name",
1976
+ "description": "The name describing the type of link between issues"
1977
+ },
1978
+ {
1979
+ "name": "fields.issuelinks[*].inwardIssue.fields.status.iconUrl",
1980
+ "type": "string",
1981
+ "displayName": "Inward issue status icon url",
1982
+ "description": "URL of the icon representing the status of the linked inward issue"
1983
+ },
1984
+ {
1985
+ "name": "fields.issuelinks[*].outwardIssue.fields.status.name",
1986
+ "type": "string",
1987
+ "displayName": "Outward issue status name",
1988
+ "description": "Name of the status for the linked outward issue"
1989
+ },
1990
+ {
1991
+ "name": "fields.issuelinks[*].outwardIssue.self",
1992
+ "type": "string",
1993
+ "displayName": "Outward issue api endpoint",
1994
+ "description": "API endpoint URL for the linked outward issue"
1995
+ },
1996
+ {
1997
+ "name": "fields.issuelinks[*].inwardIssue.self",
1998
+ "type": "string",
1999
+ "displayName": "Inward issue api endpoint",
2000
+ "description": "API endpoint URL for the linked inward issue"
2001
+ },
2002
+ {
2003
+ "name": "fields.issuelinks[*].outwardIssue.fields.status.iconUrl",
2004
+ "type": "string",
2005
+ "displayName": "Outward issue status icon url",
2006
+ "description": "URL of the icon representing the status of the linked outward issue"
2007
+ },
2008
+ {
2009
+ "name": "fields.issuelinks[*].id",
2010
+ "type": "string",
2011
+ "displayName": "Issue link identifier",
2012
+ "description": "The unique identifier for the issue link"
2013
+ },
2014
+ {
2015
+ "name": "fields.issuelinks[*].type.outward",
2016
+ "type": "string",
2017
+ "displayName": "Outward link type description",
2018
+ "description": "The description of the outward relationship type"
2019
+ },
2020
+ {
2021
+ "name": "fields.issuelinks[*].inwardIssue.fields.status.name",
2022
+ "type": "string",
2023
+ "displayName": "Inward issue status name",
2024
+ "description": "The status name of the linked inward issue"
2025
+ },
2026
+ {
2027
+ "name": "fields.issuelinks[*].type.inward",
2028
+ "type": "string",
2029
+ "displayName": "Inward link type description",
2030
+ "description": "The description of the inward relationship type"
2031
+ },
2032
+ {
2033
+ "name": "fields.issuelinks[*].outwardIssue.id",
2034
+ "type": "string",
2035
+ "displayName": "Outward issue identifier",
2036
+ "description": "The unique identifier for the linked outward issue"
2037
+ }
2038
+ ]
2039
+ }
2040
+ }