@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,1982 @@
1
+ {
2
+ "_source": "uip maestro flow registry get, after `uip maestro flow registry pull --force` (2026-07-31). `registry get` answers from a LOCAL CACHE (~/.uipath/nodes/index.json) \u2014 without the pull this file records whenever you last synced, which is how a stale copy would claim `required: [\"fileRef\"]` instead of the three the platform's `ixp-node` validator enforces. Everything here is what every extractor's definition shares byte-for-byte, verified across three projects (invoiceixp, idp-benchmark---invoices, invoices-billing); the five per-project fields (nodeType, description, display.label, model.bindings, inputDefaults) are built by ixpExtractDef() from the author's call. `toolInputDefinition` is the AGENT-TOOL namespace's own copy \u2014 a tool has no model or folder to resolve, so it keeps the one-required-field form.",
3
+ "version": "1.0.0",
4
+ "category": "document-extraction",
5
+ "tags": [
6
+ "ixp",
7
+ "document-understanding",
8
+ "extraction"
9
+ ],
10
+ "sortOrder": 537,
11
+ "supportsErrorHandling": true,
12
+ "canvasLabel": "Extract",
13
+ "icon": "file-text",
14
+ "handleConfiguration": [
15
+ {
16
+ "position": "left",
17
+ "handles": [
18
+ {
19
+ "id": "input",
20
+ "type": "target",
21
+ "handleType": "input"
22
+ }
23
+ ]
24
+ },
25
+ {
26
+ "position": "right",
27
+ "handles": [
28
+ {
29
+ "id": "success",
30
+ "type": "source",
31
+ "handleType": "output"
32
+ },
33
+ {
34
+ "id": "error",
35
+ "label": "Error",
36
+ "type": "source",
37
+ "handleType": "output",
38
+ "visible": "{inputs.errorHandlingEnabled}",
39
+ "constraints": {
40
+ "maxConnections": 1
41
+ }
42
+ }
43
+ ]
44
+ }
45
+ ],
46
+ "model": {
47
+ "type": "bpmn:ServiceTask",
48
+ "serviceType": "IXP.Extraction",
49
+ "section": "Published"
50
+ },
51
+ "bindingsFrame": {
52
+ "resource": "ixpDeployment",
53
+ "entityType": "ixpDeployment",
54
+ "resourceSubType": null
55
+ },
56
+ "form": {
57
+ "id": "ixp-standalone-form",
58
+ "title": "IXP",
59
+ "sections": [
60
+ {
61
+ "id": "ixp-model",
62
+ "title": "Configuration",
63
+ "fields": [
64
+ {
65
+ "name": "inputs.model",
66
+ "type": "custom",
67
+ "component": "ixp-model-folder-selector",
68
+ "label": ""
69
+ }
70
+ ]
71
+ },
72
+ {
73
+ "id": "ixp-file-upload",
74
+ "title": "File input",
75
+ "collapsible": true,
76
+ "defaultExpanded": true,
77
+ "fields": [
78
+ {
79
+ "name": "inputs.fileRef",
80
+ "type": "file",
81
+ "label": "File",
82
+ "description": "File to extract data from",
83
+ "validation": {
84
+ "required": true,
85
+ "messages": {
86
+ "required": "A file is required for extraction"
87
+ }
88
+ }
89
+ },
90
+ {
91
+ "name": "inputs.pageRange",
92
+ "type": "text",
93
+ "label": "Page range",
94
+ "placeholder": "e.g. 1-5",
95
+ "description": "Optional page range to process."
96
+ }
97
+ ]
98
+ },
99
+ {
100
+ "id": "schema-definition",
101
+ "title": "Schema definition",
102
+ "collapsible": false,
103
+ "fields": [
104
+ {
105
+ "name": "inputs.model",
106
+ "type": "custom",
107
+ "component": "ixp-model-taxonomy",
108
+ "label": ""
109
+ }
110
+ ]
111
+ }
112
+ ]
113
+ },
114
+ "inputDefinition": {
115
+ "type": "object",
116
+ "properties": {
117
+ "projectName": {
118
+ "type": "string"
119
+ },
120
+ "projectId": {
121
+ "type": "string"
122
+ },
123
+ "versionTag": {
124
+ "type": "string"
125
+ },
126
+ "folderKey": {
127
+ "type": "string",
128
+ "minLength": 1
129
+ },
130
+ "folderName": {
131
+ "type": "string"
132
+ },
133
+ "model": {
134
+ "type": "object"
135
+ },
136
+ "modelName": {
137
+ "type": "string",
138
+ "minLength": 1
139
+ },
140
+ "fileRef": {
141
+ "type": "string",
142
+ "minLength": 1
143
+ },
144
+ "pageRange": {
145
+ "type": "string"
146
+ },
147
+ "attachmentConfig": {
148
+ "type": "object"
149
+ },
150
+ "attachment": {
151
+ "type": "object",
152
+ "description": "File to extract data from.",
153
+ "properties": {
154
+ "ID": {
155
+ "type": "string",
156
+ "description": "Orchestrator attachment key"
157
+ },
158
+ "FullName": {
159
+ "type": "string",
160
+ "description": "File name"
161
+ },
162
+ "MimeType": {
163
+ "type": "string",
164
+ "description": "The MIME type of the content"
165
+ },
166
+ "Metadata": {
167
+ "type": "object",
168
+ "description": "Dictionary of metadata",
169
+ "additionalProperties": {
170
+ "type": "string"
171
+ }
172
+ }
173
+ },
174
+ "required": [
175
+ "ID"
176
+ ]
177
+ }
178
+ },
179
+ "required": [
180
+ "fileRef",
181
+ "modelName",
182
+ "folderKey"
183
+ ]
184
+ },
185
+ "outputDefinition": {
186
+ "output": {
187
+ "name": "output",
188
+ "type": "object",
189
+ "source": "=this",
190
+ "var": "output",
191
+ "schema": {
192
+ "$schema": "http://json-schema.org/draft-07/schema#",
193
+ "type": "object",
194
+ "properties": {
195
+ "ExtractionResult": {
196
+ "type": "object",
197
+ "properties": {
198
+ "DocumentId": {
199
+ "type": [
200
+ "string",
201
+ "null"
202
+ ]
203
+ },
204
+ "ResultsVersion": {
205
+ "type": "integer",
206
+ "format": "int32",
207
+ "minimum": -2147483648,
208
+ "maximum": 2147483647
209
+ },
210
+ "ResultsDocument": {
211
+ "type": "object",
212
+ "properties": {
213
+ "Bounds": {
214
+ "type": "object",
215
+ "properties": {
216
+ "PageCount": {
217
+ "type": "integer",
218
+ "format": "int32",
219
+ "minimum": -2147483648,
220
+ "maximum": 2147483647
221
+ },
222
+ "PageRange": {
223
+ "type": [
224
+ "string",
225
+ "null"
226
+ ]
227
+ }
228
+ },
229
+ "additionalProperties": false
230
+ },
231
+ "Language": {
232
+ "type": [
233
+ "string",
234
+ "null"
235
+ ]
236
+ },
237
+ "DocumentGroup": {
238
+ "type": [
239
+ "string",
240
+ "null"
241
+ ]
242
+ },
243
+ "DocumentCategory": {
244
+ "type": [
245
+ "string",
246
+ "null"
247
+ ]
248
+ },
249
+ "DocumentTypeId": {
250
+ "type": [
251
+ "string",
252
+ "null"
253
+ ]
254
+ },
255
+ "DocumentTypeName": {
256
+ "type": [
257
+ "string",
258
+ "null"
259
+ ]
260
+ },
261
+ "DocumentTypeDataVersion": {
262
+ "type": "integer",
263
+ "format": "int32",
264
+ "minimum": -2147483648,
265
+ "maximum": 2147483647
266
+ },
267
+ "DataVersion": {
268
+ "type": "integer",
269
+ "format": "int32",
270
+ "minimum": -2147483648,
271
+ "maximum": 2147483647
272
+ },
273
+ "DocumentTypeSource": {
274
+ "enum": [
275
+ "Automatic",
276
+ "Manual",
277
+ "ManuallyChanged",
278
+ "Defaulted",
279
+ "External"
280
+ ],
281
+ "type": "string"
282
+ },
283
+ "DocumentTypeField": {
284
+ "type": "object",
285
+ "properties": {
286
+ "Components": {
287
+ "type": [
288
+ "array",
289
+ "null"
290
+ ],
291
+ "items": {
292
+ "type": "object",
293
+ "properties": {
294
+ "FieldId": {
295
+ "type": [
296
+ "string",
297
+ "null"
298
+ ]
299
+ },
300
+ "FieldName": {
301
+ "type": [
302
+ "string",
303
+ "null"
304
+ ]
305
+ },
306
+ "FieldType": {
307
+ "enum": [
308
+ "Text",
309
+ "Number",
310
+ "Date",
311
+ "Name",
312
+ "Address",
313
+ "Keyword",
314
+ "Set",
315
+ "Boolean",
316
+ "Table",
317
+ "Internal",
318
+ "FieldGroup",
319
+ "MonetaryQuantity"
320
+ ],
321
+ "type": "string"
322
+ },
323
+ "IsMissing": {
324
+ "type": "boolean"
325
+ },
326
+ "DataSource": {
327
+ "enum": [
328
+ "Automatic",
329
+ "Manual",
330
+ "ManuallyChanged",
331
+ "Defaulted",
332
+ "External"
333
+ ],
334
+ "type": "string"
335
+ },
336
+ "Values": {
337
+ "type": [
338
+ "array",
339
+ "null"
340
+ ],
341
+ "items": {
342
+ "type": "any"
343
+ }
344
+ },
345
+ "DataVersion": {
346
+ "type": "integer",
347
+ "format": "int32",
348
+ "minimum": -2147483648,
349
+ "maximum": 2147483647
350
+ },
351
+ "OperatorConfirmed": {
352
+ "type": "boolean"
353
+ },
354
+ "ValidatorNotes": {
355
+ "type": [
356
+ "string",
357
+ "null"
358
+ ]
359
+ },
360
+ "ValidatorNotesInfo": {
361
+ "type": [
362
+ "string",
363
+ "null"
364
+ ]
365
+ }
366
+ },
367
+ "additionalProperties": false
368
+ }
369
+ },
370
+ "Value": {
371
+ "type": [
372
+ "string",
373
+ "null"
374
+ ]
375
+ },
376
+ "UnformattedValue": {
377
+ "type": [
378
+ "string",
379
+ "null"
380
+ ]
381
+ },
382
+ "Reference": {
383
+ "type": "object",
384
+ "properties": {
385
+ "TextStartIndex": {
386
+ "type": "integer",
387
+ "format": "int32",
388
+ "minimum": -2147483648,
389
+ "maximum": 2147483647
390
+ },
391
+ "TextLength": {
392
+ "type": "integer",
393
+ "format": "int32",
394
+ "minimum": -2147483648,
395
+ "maximum": 2147483647
396
+ },
397
+ "Tokens": {
398
+ "type": [
399
+ "array",
400
+ "null"
401
+ ],
402
+ "items": {
403
+ "type": "object",
404
+ "properties": {
405
+ "TextStartIndex": {
406
+ "type": "integer",
407
+ "format": "int32",
408
+ "minimum": -2147483648,
409
+ "maximum": 2147483647
410
+ },
411
+ "TextLength": {
412
+ "type": "integer",
413
+ "format": "int32",
414
+ "minimum": -2147483648,
415
+ "maximum": 2147483647
416
+ },
417
+ "Page": {
418
+ "type": "integer",
419
+ "format": "int32",
420
+ "minimum": -2147483648,
421
+ "maximum": 2147483647
422
+ },
423
+ "PageWidth": {
424
+ "type": "number",
425
+ "format": "float",
426
+ "minimum": -3.402823669209385e+38,
427
+ "maximum": 3.402823669209385e+38
428
+ },
429
+ "PageHeight": {
430
+ "type": "number",
431
+ "format": "float",
432
+ "minimum": -3.402823669209385e+38,
433
+ "maximum": 3.402823669209385e+38
434
+ },
435
+ "Boxes": {
436
+ "type": [
437
+ "array",
438
+ "null"
439
+ ],
440
+ "items": {
441
+ "maxItems": 4,
442
+ "minItems": 4,
443
+ "type": "array",
444
+ "items": {
445
+ "type": "number"
446
+ }
447
+ }
448
+ }
449
+ },
450
+ "additionalProperties": false
451
+ }
452
+ }
453
+ },
454
+ "additionalProperties": false
455
+ },
456
+ "DerivedFields": {
457
+ "type": [
458
+ "array",
459
+ "null"
460
+ ],
461
+ "items": {
462
+ "type": "object",
463
+ "properties": {
464
+ "FieldId": {
465
+ "type": [
466
+ "string",
467
+ "null"
468
+ ]
469
+ },
470
+ "Value": {
471
+ "type": [
472
+ "string",
473
+ "null"
474
+ ]
475
+ }
476
+ },
477
+ "additionalProperties": false
478
+ }
479
+ },
480
+ "Confidence": {
481
+ "type": "number",
482
+ "format": "float",
483
+ "minimum": -3.402823669209385e+38,
484
+ "maximum": 3.402823669209385e+38
485
+ },
486
+ "OperatorConfirmed": {
487
+ "type": "boolean"
488
+ },
489
+ "OcrConfidence": {
490
+ "type": "number",
491
+ "format": "float",
492
+ "minimum": -3.402823669209385e+38,
493
+ "maximum": 3.402823669209385e+38
494
+ },
495
+ "TextType": {
496
+ "enum": [
497
+ "Unknown",
498
+ "Text",
499
+ "Checkbox",
500
+ "Handwriting",
501
+ "Barcode",
502
+ "QRcode",
503
+ "Stamp",
504
+ "Logo",
505
+ "Circle",
506
+ "Underline",
507
+ "Cut"
508
+ ],
509
+ "type": "string"
510
+ },
511
+ "ValidatorNotes": {
512
+ "type": [
513
+ "string",
514
+ "null"
515
+ ]
516
+ },
517
+ "ValidatorNotesInfo": {
518
+ "type": [
519
+ "string",
520
+ "null"
521
+ ]
522
+ }
523
+ },
524
+ "additionalProperties": false
525
+ },
526
+ "Fields": {
527
+ "type": [
528
+ "array",
529
+ "null"
530
+ ],
531
+ "items": {
532
+ "type": "object",
533
+ "properties": {
534
+ "FieldId": {
535
+ "type": [
536
+ "string",
537
+ "null"
538
+ ]
539
+ },
540
+ "FieldName": {
541
+ "type": [
542
+ "string",
543
+ "null"
544
+ ]
545
+ },
546
+ "FieldType": {
547
+ "enum": [
548
+ "Text",
549
+ "Number",
550
+ "Date",
551
+ "Name",
552
+ "Address",
553
+ "Keyword",
554
+ "Set",
555
+ "Boolean",
556
+ "Table",
557
+ "Internal",
558
+ "FieldGroup",
559
+ "MonetaryQuantity"
560
+ ],
561
+ "type": "string"
562
+ },
563
+ "IsMissing": {
564
+ "type": "boolean"
565
+ },
566
+ "DataSource": {
567
+ "enum": [
568
+ "Automatic",
569
+ "Manual",
570
+ "ManuallyChanged",
571
+ "Defaulted",
572
+ "External"
573
+ ],
574
+ "type": "string"
575
+ },
576
+ "Values": {
577
+ "type": [
578
+ "array",
579
+ "null"
580
+ ],
581
+ "items": {
582
+ "type": "object",
583
+ "properties": {
584
+ "Components": {
585
+ "type": [
586
+ "array",
587
+ "null"
588
+ ],
589
+ "items": {
590
+ "type": "any"
591
+ }
592
+ },
593
+ "Value": {
594
+ "type": [
595
+ "string",
596
+ "null"
597
+ ]
598
+ },
599
+ "UnformattedValue": {
600
+ "type": [
601
+ "string",
602
+ "null"
603
+ ]
604
+ },
605
+ "Reference": {
606
+ "type": "object",
607
+ "properties": {
608
+ "TextStartIndex": {
609
+ "type": "integer",
610
+ "format": "int32",
611
+ "minimum": -2147483648,
612
+ "maximum": 2147483647
613
+ },
614
+ "TextLength": {
615
+ "type": "integer",
616
+ "format": "int32",
617
+ "minimum": -2147483648,
618
+ "maximum": 2147483647
619
+ },
620
+ "Tokens": {
621
+ "type": [
622
+ "array",
623
+ "null"
624
+ ],
625
+ "items": {
626
+ "type": "object",
627
+ "properties": {
628
+ "TextStartIndex": {
629
+ "type": "integer",
630
+ "format": "int32",
631
+ "minimum": -2147483648,
632
+ "maximum": 2147483647
633
+ },
634
+ "TextLength": {
635
+ "type": "integer",
636
+ "format": "int32",
637
+ "minimum": -2147483648,
638
+ "maximum": 2147483647
639
+ },
640
+ "Page": {
641
+ "type": "integer",
642
+ "format": "int32",
643
+ "minimum": -2147483648,
644
+ "maximum": 2147483647
645
+ },
646
+ "PageWidth": {
647
+ "type": "number",
648
+ "format": "float",
649
+ "minimum": -3.402823669209385e+38,
650
+ "maximum": 3.402823669209385e+38
651
+ },
652
+ "PageHeight": {
653
+ "type": "number",
654
+ "format": "float",
655
+ "minimum": -3.402823669209385e+38,
656
+ "maximum": 3.402823669209385e+38
657
+ },
658
+ "Boxes": {
659
+ "type": [
660
+ "array",
661
+ "null"
662
+ ],
663
+ "items": {
664
+ "maxItems": 4,
665
+ "minItems": 4,
666
+ "type": "array",
667
+ "items": {
668
+ "type": "number"
669
+ }
670
+ }
671
+ }
672
+ },
673
+ "additionalProperties": false
674
+ }
675
+ }
676
+ },
677
+ "additionalProperties": false
678
+ },
679
+ "DerivedFields": {
680
+ "type": [
681
+ "array",
682
+ "null"
683
+ ],
684
+ "items": {
685
+ "type": "object",
686
+ "properties": {
687
+ "FieldId": {
688
+ "type": [
689
+ "string",
690
+ "null"
691
+ ]
692
+ },
693
+ "Value": {
694
+ "type": [
695
+ "string",
696
+ "null"
697
+ ]
698
+ }
699
+ },
700
+ "additionalProperties": false
701
+ }
702
+ },
703
+ "Confidence": {
704
+ "type": "number",
705
+ "format": "float",
706
+ "minimum": -3.402823669209385e+38,
707
+ "maximum": 3.402823669209385e+38
708
+ },
709
+ "OperatorConfirmed": {
710
+ "type": "boolean"
711
+ },
712
+ "OcrConfidence": {
713
+ "type": "number",
714
+ "format": "float",
715
+ "minimum": -3.402823669209385e+38,
716
+ "maximum": 3.402823669209385e+38
717
+ },
718
+ "TextType": {
719
+ "enum": [
720
+ "Unknown",
721
+ "Text",
722
+ "Checkbox",
723
+ "Handwriting",
724
+ "Barcode",
725
+ "QRcode",
726
+ "Stamp",
727
+ "Logo",
728
+ "Circle",
729
+ "Underline",
730
+ "Cut"
731
+ ],
732
+ "type": "string"
733
+ },
734
+ "ValidatorNotes": {
735
+ "type": [
736
+ "string",
737
+ "null"
738
+ ]
739
+ },
740
+ "ValidatorNotesInfo": {
741
+ "type": [
742
+ "string",
743
+ "null"
744
+ ]
745
+ }
746
+ },
747
+ "additionalProperties": false
748
+ }
749
+ },
750
+ "DataVersion": {
751
+ "type": "integer",
752
+ "format": "int32",
753
+ "minimum": -2147483648,
754
+ "maximum": 2147483647
755
+ },
756
+ "OperatorConfirmed": {
757
+ "type": "boolean"
758
+ },
759
+ "ValidatorNotes": {
760
+ "type": [
761
+ "string",
762
+ "null"
763
+ ]
764
+ },
765
+ "ValidatorNotesInfo": {
766
+ "type": [
767
+ "string",
768
+ "null"
769
+ ]
770
+ }
771
+ },
772
+ "additionalProperties": false
773
+ }
774
+ },
775
+ "Tables": {
776
+ "type": [
777
+ "array",
778
+ "null"
779
+ ],
780
+ "items": {
781
+ "type": "object",
782
+ "properties": {
783
+ "FieldId": {
784
+ "type": [
785
+ "string",
786
+ "null"
787
+ ]
788
+ },
789
+ "FieldName": {
790
+ "type": [
791
+ "string",
792
+ "null"
793
+ ]
794
+ },
795
+ "IsMissing": {
796
+ "type": "boolean"
797
+ },
798
+ "DataSource": {
799
+ "enum": [
800
+ "Automatic",
801
+ "Manual",
802
+ "ManuallyChanged",
803
+ "Defaulted",
804
+ "External"
805
+ ],
806
+ "type": "string"
807
+ },
808
+ "DataVersion": {
809
+ "type": "integer",
810
+ "format": "int32",
811
+ "minimum": -2147483648,
812
+ "maximum": 2147483647
813
+ },
814
+ "OperatorConfirmed": {
815
+ "type": "boolean"
816
+ },
817
+ "Values": {
818
+ "type": [
819
+ "array",
820
+ "null"
821
+ ],
822
+ "items": {
823
+ "type": "object",
824
+ "properties": {
825
+ "OperatorConfirmed": {
826
+ "type": "boolean"
827
+ },
828
+ "Confidence": {
829
+ "type": "number",
830
+ "format": "float",
831
+ "minimum": -3.402823669209385e+38,
832
+ "maximum": 3.402823669209385e+38
833
+ },
834
+ "OcrConfidence": {
835
+ "type": "number",
836
+ "format": "float",
837
+ "minimum": -3.402823669209385e+38,
838
+ "maximum": 3.402823669209385e+38
839
+ },
840
+ "Cells": {
841
+ "type": [
842
+ "array",
843
+ "null"
844
+ ],
845
+ "items": {
846
+ "type": "object",
847
+ "properties": {
848
+ "RowIndex": {
849
+ "type": "integer",
850
+ "format": "int32",
851
+ "minimum": -2147483648,
852
+ "maximum": 2147483647
853
+ },
854
+ "ColumnIndex": {
855
+ "type": "integer",
856
+ "format": "int32",
857
+ "minimum": -2147483648,
858
+ "maximum": 2147483647
859
+ },
860
+ "IsHeader": {
861
+ "type": "boolean"
862
+ },
863
+ "IsMissing": {
864
+ "type": "boolean"
865
+ },
866
+ "OperatorConfirmed": {
867
+ "type": "boolean"
868
+ },
869
+ "DataSource": {
870
+ "enum": [
871
+ "Automatic",
872
+ "Manual",
873
+ "ManuallyChanged",
874
+ "Defaulted",
875
+ "External"
876
+ ],
877
+ "type": "string"
878
+ },
879
+ "DataVersion": {
880
+ "type": "integer",
881
+ "format": "int32",
882
+ "minimum": -2147483648,
883
+ "maximum": 2147483647
884
+ },
885
+ "Values": {
886
+ "type": [
887
+ "array",
888
+ "null"
889
+ ],
890
+ "items": {
891
+ "type": "object",
892
+ "properties": {
893
+ "Components": {
894
+ "type": [
895
+ "array",
896
+ "null"
897
+ ],
898
+ "items": {
899
+ "type": "object",
900
+ "properties": {
901
+ "FieldId": {
902
+ "type": [
903
+ "string",
904
+ "null"
905
+ ]
906
+ },
907
+ "FieldName": {
908
+ "type": [
909
+ "string",
910
+ "null"
911
+ ]
912
+ },
913
+ "FieldType": {
914
+ "enum": [
915
+ "Text",
916
+ "Number",
917
+ "Date",
918
+ "Name",
919
+ "Address",
920
+ "Keyword",
921
+ "Set",
922
+ "Boolean",
923
+ "Table",
924
+ "Internal",
925
+ "FieldGroup",
926
+ "MonetaryQuantity"
927
+ ],
928
+ "type": "string"
929
+ },
930
+ "IsMissing": {
931
+ "type": "boolean"
932
+ },
933
+ "DataSource": {
934
+ "enum": [
935
+ "Automatic",
936
+ "Manual",
937
+ "ManuallyChanged",
938
+ "Defaulted",
939
+ "External"
940
+ ],
941
+ "type": "string"
942
+ },
943
+ "Values": {
944
+ "type": [
945
+ "array",
946
+ "null"
947
+ ],
948
+ "items": {
949
+ "type": "any"
950
+ }
951
+ },
952
+ "DataVersion": {
953
+ "type": "integer",
954
+ "format": "int32",
955
+ "minimum": -2147483648,
956
+ "maximum": 2147483647
957
+ },
958
+ "OperatorConfirmed": {
959
+ "type": "boolean"
960
+ },
961
+ "ValidatorNotes": {
962
+ "type": [
963
+ "string",
964
+ "null"
965
+ ]
966
+ },
967
+ "ValidatorNotesInfo": {
968
+ "type": [
969
+ "string",
970
+ "null"
971
+ ]
972
+ }
973
+ },
974
+ "additionalProperties": false
975
+ }
976
+ },
977
+ "Value": {
978
+ "type": [
979
+ "string",
980
+ "null"
981
+ ]
982
+ },
983
+ "UnformattedValue": {
984
+ "type": [
985
+ "string",
986
+ "null"
987
+ ]
988
+ },
989
+ "Reference": {
990
+ "type": "object",
991
+ "properties": {
992
+ "TextStartIndex": {
993
+ "type": "integer",
994
+ "format": "int32",
995
+ "minimum": -2147483648,
996
+ "maximum": 2147483647
997
+ },
998
+ "TextLength": {
999
+ "type": "integer",
1000
+ "format": "int32",
1001
+ "minimum": -2147483648,
1002
+ "maximum": 2147483647
1003
+ },
1004
+ "Tokens": {
1005
+ "type": [
1006
+ "array",
1007
+ "null"
1008
+ ],
1009
+ "items": {
1010
+ "type": "object",
1011
+ "properties": {
1012
+ "TextStartIndex": {
1013
+ "type": "integer",
1014
+ "format": "int32",
1015
+ "minimum": -2147483648,
1016
+ "maximum": 2147483647
1017
+ },
1018
+ "TextLength": {
1019
+ "type": "integer",
1020
+ "format": "int32",
1021
+ "minimum": -2147483648,
1022
+ "maximum": 2147483647
1023
+ },
1024
+ "Page": {
1025
+ "type": "integer",
1026
+ "format": "int32",
1027
+ "minimum": -2147483648,
1028
+ "maximum": 2147483647
1029
+ },
1030
+ "PageWidth": {
1031
+ "type": "number",
1032
+ "format": "float",
1033
+ "minimum": -3.402823669209385e+38,
1034
+ "maximum": 3.402823669209385e+38
1035
+ },
1036
+ "PageHeight": {
1037
+ "type": "number",
1038
+ "format": "float",
1039
+ "minimum": -3.402823669209385e+38,
1040
+ "maximum": 3.402823669209385e+38
1041
+ },
1042
+ "Boxes": {
1043
+ "type": [
1044
+ "array",
1045
+ "null"
1046
+ ],
1047
+ "items": {
1048
+ "maxItems": 4,
1049
+ "minItems": 4,
1050
+ "type": "array",
1051
+ "items": {
1052
+ "type": "number"
1053
+ }
1054
+ }
1055
+ }
1056
+ },
1057
+ "additionalProperties": false
1058
+ }
1059
+ }
1060
+ },
1061
+ "additionalProperties": false
1062
+ },
1063
+ "DerivedFields": {
1064
+ "type": [
1065
+ "array",
1066
+ "null"
1067
+ ],
1068
+ "items": {
1069
+ "type": "object",
1070
+ "properties": {
1071
+ "FieldId": {
1072
+ "type": [
1073
+ "string",
1074
+ "null"
1075
+ ]
1076
+ },
1077
+ "Value": {
1078
+ "type": [
1079
+ "string",
1080
+ "null"
1081
+ ]
1082
+ }
1083
+ },
1084
+ "additionalProperties": false
1085
+ }
1086
+ },
1087
+ "Confidence": {
1088
+ "type": "number",
1089
+ "format": "float",
1090
+ "minimum": -3.402823669209385e+38,
1091
+ "maximum": 3.402823669209385e+38
1092
+ },
1093
+ "OperatorConfirmed": {
1094
+ "type": "boolean"
1095
+ },
1096
+ "OcrConfidence": {
1097
+ "type": "number",
1098
+ "format": "float",
1099
+ "minimum": -3.402823669209385e+38,
1100
+ "maximum": 3.402823669209385e+38
1101
+ },
1102
+ "TextType": {
1103
+ "enum": [
1104
+ "Unknown",
1105
+ "Text",
1106
+ "Checkbox",
1107
+ "Handwriting",
1108
+ "Barcode",
1109
+ "QRcode",
1110
+ "Stamp",
1111
+ "Logo",
1112
+ "Circle",
1113
+ "Underline",
1114
+ "Cut"
1115
+ ],
1116
+ "type": "string"
1117
+ },
1118
+ "ValidatorNotes": {
1119
+ "type": [
1120
+ "string",
1121
+ "null"
1122
+ ]
1123
+ },
1124
+ "ValidatorNotesInfo": {
1125
+ "type": [
1126
+ "string",
1127
+ "null"
1128
+ ]
1129
+ }
1130
+ },
1131
+ "additionalProperties": false
1132
+ }
1133
+ }
1134
+ },
1135
+ "additionalProperties": false
1136
+ }
1137
+ },
1138
+ "ColumnInfo": {
1139
+ "type": [
1140
+ "array",
1141
+ "null"
1142
+ ],
1143
+ "items": {
1144
+ "type": "object",
1145
+ "properties": {
1146
+ "FieldId": {
1147
+ "type": [
1148
+ "string",
1149
+ "null"
1150
+ ]
1151
+ },
1152
+ "FieldName": {
1153
+ "type": [
1154
+ "string",
1155
+ "null"
1156
+ ]
1157
+ },
1158
+ "FieldType": {
1159
+ "enum": [
1160
+ "Text",
1161
+ "Number",
1162
+ "Date",
1163
+ "Name",
1164
+ "Address",
1165
+ "Keyword",
1166
+ "Set",
1167
+ "Boolean",
1168
+ "Table",
1169
+ "Internal",
1170
+ "FieldGroup",
1171
+ "MonetaryQuantity"
1172
+ ],
1173
+ "type": "string"
1174
+ }
1175
+ },
1176
+ "additionalProperties": false
1177
+ }
1178
+ },
1179
+ "NumberOfRows": {
1180
+ "type": "integer",
1181
+ "format": "int32",
1182
+ "minimum": -2147483648,
1183
+ "maximum": 2147483647
1184
+ },
1185
+ "ValidatorNotes": {
1186
+ "type": [
1187
+ "string",
1188
+ "null"
1189
+ ]
1190
+ },
1191
+ "ValidatorNotesInfo": {
1192
+ "type": [
1193
+ "string",
1194
+ "null"
1195
+ ]
1196
+ }
1197
+ },
1198
+ "additionalProperties": false
1199
+ }
1200
+ },
1201
+ "ValidatorNotes": {
1202
+ "type": [
1203
+ "string",
1204
+ "null"
1205
+ ]
1206
+ },
1207
+ "ValidatorNotesInfo": {
1208
+ "type": [
1209
+ "string",
1210
+ "null"
1211
+ ]
1212
+ }
1213
+ },
1214
+ "additionalProperties": false
1215
+ }
1216
+ }
1217
+ },
1218
+ "additionalProperties": false
1219
+ },
1220
+ "ExtractorPayloads": {
1221
+ "type": [
1222
+ "array",
1223
+ "null"
1224
+ ],
1225
+ "items": {
1226
+ "type": "object",
1227
+ "properties": {
1228
+ "Id": {
1229
+ "type": [
1230
+ "string",
1231
+ "null"
1232
+ ]
1233
+ },
1234
+ "Payload": {
1235
+ "type": [
1236
+ "string",
1237
+ "null"
1238
+ ]
1239
+ },
1240
+ "SavedPayloadId": {
1241
+ "type": [
1242
+ "string",
1243
+ "null"
1244
+ ]
1245
+ },
1246
+ "TaxonomySchemaMapping": {
1247
+ "type": [
1248
+ "string",
1249
+ "null"
1250
+ ]
1251
+ }
1252
+ },
1253
+ "additionalProperties": false
1254
+ }
1255
+ },
1256
+ "BusinessRulesResults": {
1257
+ "type": [
1258
+ "array",
1259
+ "null"
1260
+ ],
1261
+ "items": {
1262
+ "type": "object",
1263
+ "properties": {
1264
+ "FieldId": {
1265
+ "type": [
1266
+ "string",
1267
+ "null"
1268
+ ]
1269
+ },
1270
+ "FieldType": {
1271
+ "enum": [
1272
+ "Text",
1273
+ "Number",
1274
+ "Date",
1275
+ "Name",
1276
+ "Address",
1277
+ "Keyword",
1278
+ "Set",
1279
+ "Boolean",
1280
+ "Table",
1281
+ "Internal",
1282
+ "FieldGroup",
1283
+ "MonetaryQuantity"
1284
+ ],
1285
+ "type": "string"
1286
+ },
1287
+ "Criticality": {
1288
+ "enum": [
1289
+ "Must",
1290
+ "Should"
1291
+ ],
1292
+ "type": "string"
1293
+ },
1294
+ "IsValid": {
1295
+ "type": "boolean"
1296
+ },
1297
+ "Results": {
1298
+ "type": [
1299
+ "array",
1300
+ "null"
1301
+ ],
1302
+ "items": {
1303
+ "type": "object",
1304
+ "properties": {
1305
+ "Value": {
1306
+ "type": "object",
1307
+ "properties": {
1308
+ "Value": {
1309
+ "type": [
1310
+ "string",
1311
+ "null"
1312
+ ]
1313
+ },
1314
+ "DerivedValue": {
1315
+ "type": [
1316
+ "string",
1317
+ "null"
1318
+ ]
1319
+ }
1320
+ },
1321
+ "additionalProperties": false
1322
+ },
1323
+ "IsValid": {
1324
+ "type": "boolean"
1325
+ },
1326
+ "Rules": {
1327
+ "type": [
1328
+ "array",
1329
+ "null"
1330
+ ],
1331
+ "items": {
1332
+ "type": "object",
1333
+ "properties": {
1334
+ "Rule": {
1335
+ "type": "object",
1336
+ "properties": {
1337
+ "Name": {
1338
+ "type": [
1339
+ "string",
1340
+ "null"
1341
+ ]
1342
+ },
1343
+ "Type": {
1344
+ "enum": [
1345
+ "Mandatory",
1346
+ "PossibleValues",
1347
+ "Regex",
1348
+ "StartsWith",
1349
+ "EndsWith",
1350
+ "FixedLength",
1351
+ "IsNumeric",
1352
+ "IsDate",
1353
+ "IsEmail",
1354
+ "Contains",
1355
+ "Expression",
1356
+ "TableExpression",
1357
+ "IsEmpty"
1358
+ ],
1359
+ "type": "string"
1360
+ },
1361
+ "LogicalOperator": {
1362
+ "enum": [
1363
+ "AND",
1364
+ "OR"
1365
+ ],
1366
+ "type": "string"
1367
+ },
1368
+ "ComparisonOperator": {
1369
+ "enum": [
1370
+ "Equals",
1371
+ "NotEquals",
1372
+ "Greater",
1373
+ "Less",
1374
+ "GreaterOrEqual",
1375
+ "LessOrEqual"
1376
+ ],
1377
+ "type": "string"
1378
+ },
1379
+ "Expression": {
1380
+ "type": [
1381
+ "string",
1382
+ "null"
1383
+ ]
1384
+ },
1385
+ "SetValues": {
1386
+ "type": [
1387
+ "array",
1388
+ "null"
1389
+ ],
1390
+ "items": {
1391
+ "type": "string"
1392
+ }
1393
+ }
1394
+ },
1395
+ "additionalProperties": false
1396
+ },
1397
+ "IsValid": {
1398
+ "type": "boolean"
1399
+ }
1400
+ },
1401
+ "additionalProperties": false
1402
+ }
1403
+ }
1404
+ },
1405
+ "additionalProperties": false
1406
+ }
1407
+ },
1408
+ "BrokenRules": {
1409
+ "type": [
1410
+ "array",
1411
+ "null"
1412
+ ],
1413
+ "items": {
1414
+ "type": "object",
1415
+ "properties": {
1416
+ "Name": {
1417
+ "type": [
1418
+ "string",
1419
+ "null"
1420
+ ]
1421
+ },
1422
+ "Type": {
1423
+ "enum": [
1424
+ "Mandatory",
1425
+ "PossibleValues",
1426
+ "Regex",
1427
+ "StartsWith",
1428
+ "EndsWith",
1429
+ "FixedLength",
1430
+ "IsNumeric",
1431
+ "IsDate",
1432
+ "IsEmail",
1433
+ "Contains",
1434
+ "Expression",
1435
+ "TableExpression",
1436
+ "IsEmpty"
1437
+ ],
1438
+ "type": "string"
1439
+ },
1440
+ "LogicalOperator": {
1441
+ "enum": [
1442
+ "AND",
1443
+ "OR"
1444
+ ],
1445
+ "type": "string"
1446
+ },
1447
+ "ComparisonOperator": {
1448
+ "enum": [
1449
+ "Equals",
1450
+ "NotEquals",
1451
+ "Greater",
1452
+ "Less",
1453
+ "GreaterOrEqual",
1454
+ "LessOrEqual"
1455
+ ],
1456
+ "type": "string"
1457
+ },
1458
+ "Expression": {
1459
+ "type": [
1460
+ "string",
1461
+ "null"
1462
+ ]
1463
+ },
1464
+ "SetValues": {
1465
+ "type": [
1466
+ "array",
1467
+ "null"
1468
+ ],
1469
+ "items": {
1470
+ "type": "string"
1471
+ }
1472
+ }
1473
+ },
1474
+ "additionalProperties": false
1475
+ }
1476
+ },
1477
+ "RowIndex": {
1478
+ "type": [
1479
+ "integer",
1480
+ "null"
1481
+ ],
1482
+ "format": "int32",
1483
+ "minimum": -2147483648,
1484
+ "maximum": 2147483647
1485
+ },
1486
+ "TableFieldId": {
1487
+ "type": [
1488
+ "string",
1489
+ "null"
1490
+ ]
1491
+ }
1492
+ },
1493
+ "additionalProperties": false
1494
+ }
1495
+ }
1496
+ },
1497
+ "additionalProperties": false
1498
+ },
1499
+ "Taxonomy": {
1500
+ "type": "object",
1501
+ "properties": {
1502
+ "DataContractVersion": {
1503
+ "type": [
1504
+ "string",
1505
+ "null"
1506
+ ],
1507
+ "default": "1.2"
1508
+ },
1509
+ "DocumentTypes": {
1510
+ "type": [
1511
+ "array",
1512
+ "null"
1513
+ ],
1514
+ "items": {
1515
+ "type": "object",
1516
+ "properties": {
1517
+ "DocumentTypeId": {
1518
+ "type": [
1519
+ "string",
1520
+ "null"
1521
+ ]
1522
+ },
1523
+ "Group": {
1524
+ "type": [
1525
+ "string",
1526
+ "null"
1527
+ ]
1528
+ },
1529
+ "Category": {
1530
+ "type": [
1531
+ "string",
1532
+ "null"
1533
+ ]
1534
+ },
1535
+ "Name": {
1536
+ "type": [
1537
+ "string",
1538
+ "null"
1539
+ ]
1540
+ },
1541
+ "OptionalUniqueIdentifier": {
1542
+ "type": [
1543
+ "string",
1544
+ "null"
1545
+ ]
1546
+ },
1547
+ "TypeField": {
1548
+ "type": "object",
1549
+ "properties": {
1550
+ "FieldId": {
1551
+ "type": [
1552
+ "string",
1553
+ "null"
1554
+ ]
1555
+ },
1556
+ "FieldName": {
1557
+ "type": [
1558
+ "string",
1559
+ "null"
1560
+ ]
1561
+ }
1562
+ },
1563
+ "additionalProperties": false
1564
+ },
1565
+ "Fields": {
1566
+ "type": [
1567
+ "array",
1568
+ "null"
1569
+ ],
1570
+ "items": {
1571
+ "type": "object",
1572
+ "properties": {
1573
+ "FieldId": {
1574
+ "type": [
1575
+ "string",
1576
+ "null"
1577
+ ]
1578
+ },
1579
+ "FieldName": {
1580
+ "type": [
1581
+ "string",
1582
+ "null"
1583
+ ]
1584
+ },
1585
+ "IsMultiValue": {
1586
+ "type": "boolean"
1587
+ },
1588
+ "Type": {
1589
+ "enum": [
1590
+ "Text",
1591
+ "Number",
1592
+ "Date",
1593
+ "Name",
1594
+ "Address",
1595
+ "Keyword",
1596
+ "Set",
1597
+ "Boolean",
1598
+ "Table",
1599
+ "Internal",
1600
+ "FieldGroup",
1601
+ "MonetaryQuantity"
1602
+ ],
1603
+ "type": "string"
1604
+ },
1605
+ "DeriveFieldsFormat": {
1606
+ "type": [
1607
+ "string",
1608
+ "null"
1609
+ ]
1610
+ },
1611
+ "Components": {
1612
+ "type": [
1613
+ "array",
1614
+ "null"
1615
+ ],
1616
+ "items": {
1617
+ "type": "any"
1618
+ }
1619
+ },
1620
+ "SetValues": {
1621
+ "type": [
1622
+ "array",
1623
+ "null"
1624
+ ],
1625
+ "items": {
1626
+ "type": "string"
1627
+ }
1628
+ },
1629
+ "Metadata": {
1630
+ "type": [
1631
+ "array",
1632
+ "null"
1633
+ ],
1634
+ "items": {
1635
+ "type": "object",
1636
+ "properties": {
1637
+ "Key": {
1638
+ "type": [
1639
+ "string",
1640
+ "null"
1641
+ ]
1642
+ },
1643
+ "Value": {
1644
+ "type": [
1645
+ "string",
1646
+ "null"
1647
+ ]
1648
+ }
1649
+ },
1650
+ "additionalProperties": false
1651
+ }
1652
+ },
1653
+ "RuleSet": {
1654
+ "type": "object",
1655
+ "properties": {
1656
+ "Criticality": {
1657
+ "enum": [
1658
+ "Must",
1659
+ "Should"
1660
+ ],
1661
+ "type": "string"
1662
+ },
1663
+ "Rules": {
1664
+ "type": [
1665
+ "array",
1666
+ "null"
1667
+ ],
1668
+ "items": {
1669
+ "type": "object",
1670
+ "properties": {
1671
+ "Name": {
1672
+ "type": [
1673
+ "string",
1674
+ "null"
1675
+ ]
1676
+ },
1677
+ "Type": {
1678
+ "enum": [
1679
+ "Mandatory",
1680
+ "PossibleValues",
1681
+ "Regex",
1682
+ "StartsWith",
1683
+ "EndsWith",
1684
+ "FixedLength",
1685
+ "IsNumeric",
1686
+ "IsDate",
1687
+ "IsEmail",
1688
+ "Contains",
1689
+ "Expression",
1690
+ "TableExpression",
1691
+ "IsEmpty"
1692
+ ],
1693
+ "type": "string"
1694
+ },
1695
+ "LogicalOperator": {
1696
+ "enum": [
1697
+ "AND",
1698
+ "OR"
1699
+ ],
1700
+ "type": "string"
1701
+ },
1702
+ "ComparisonOperator": {
1703
+ "enum": [
1704
+ "Equals",
1705
+ "NotEquals",
1706
+ "Greater",
1707
+ "Less",
1708
+ "GreaterOrEqual",
1709
+ "LessOrEqual"
1710
+ ],
1711
+ "type": "string"
1712
+ },
1713
+ "Expression": {
1714
+ "type": [
1715
+ "string",
1716
+ "null"
1717
+ ]
1718
+ },
1719
+ "SetValues": {
1720
+ "type": [
1721
+ "array",
1722
+ "null"
1723
+ ],
1724
+ "items": {
1725
+ "type": "string"
1726
+ }
1727
+ }
1728
+ },
1729
+ "additionalProperties": false
1730
+ }
1731
+ }
1732
+ },
1733
+ "additionalProperties": false
1734
+ },
1735
+ "DefaultValue": {
1736
+ "type": [
1737
+ "string",
1738
+ "null"
1739
+ ]
1740
+ },
1741
+ "DataSource": {
1742
+ "type": "object",
1743
+ "properties": {
1744
+ "ResourceId": {
1745
+ "type": [
1746
+ "string",
1747
+ "null"
1748
+ ]
1749
+ },
1750
+ "ElementFieldId": {
1751
+ "type": [
1752
+ "string",
1753
+ "null"
1754
+ ]
1755
+ }
1756
+ },
1757
+ "additionalProperties": false
1758
+ }
1759
+ },
1760
+ "additionalProperties": false
1761
+ }
1762
+ },
1763
+ "Metadata": {
1764
+ "type": [
1765
+ "array",
1766
+ "null"
1767
+ ],
1768
+ "items": {
1769
+ "type": "object",
1770
+ "properties": {
1771
+ "Key": {
1772
+ "type": [
1773
+ "string",
1774
+ "null"
1775
+ ]
1776
+ },
1777
+ "Value": {
1778
+ "type": [
1779
+ "string",
1780
+ "null"
1781
+ ]
1782
+ }
1783
+ },
1784
+ "additionalProperties": false
1785
+ }
1786
+ }
1787
+ },
1788
+ "additionalProperties": false
1789
+ }
1790
+ },
1791
+ "Groups": {
1792
+ "type": [
1793
+ "array",
1794
+ "null"
1795
+ ],
1796
+ "items": {
1797
+ "type": "object",
1798
+ "properties": {
1799
+ "Name": {
1800
+ "type": [
1801
+ "string",
1802
+ "null"
1803
+ ]
1804
+ },
1805
+ "Categories": {
1806
+ "type": [
1807
+ "array",
1808
+ "null"
1809
+ ],
1810
+ "items": {
1811
+ "type": "string"
1812
+ }
1813
+ }
1814
+ },
1815
+ "additionalProperties": false
1816
+ }
1817
+ },
1818
+ "SupportedLanguages": {
1819
+ "type": [
1820
+ "array",
1821
+ "null"
1822
+ ],
1823
+ "items": {
1824
+ "type": "object",
1825
+ "properties": {
1826
+ "Name": {
1827
+ "type": [
1828
+ "string",
1829
+ "null"
1830
+ ]
1831
+ },
1832
+ "Code": {
1833
+ "type": [
1834
+ "string",
1835
+ "null"
1836
+ ]
1837
+ }
1838
+ },
1839
+ "additionalProperties": false
1840
+ }
1841
+ },
1842
+ "ReportAsExceptionSettings": {
1843
+ "type": "object",
1844
+ "properties": {
1845
+ "ExceptionReasonOptions": {
1846
+ "type": [
1847
+ "array",
1848
+ "null"
1849
+ ],
1850
+ "items": {
1851
+ "type": "object",
1852
+ "properties": {
1853
+ "ExceptionReason": {
1854
+ "type": [
1855
+ "string",
1856
+ "null"
1857
+ ]
1858
+ }
1859
+ },
1860
+ "additionalProperties": false
1861
+ }
1862
+ }
1863
+ },
1864
+ "additionalProperties": false
1865
+ }
1866
+ },
1867
+ "additionalProperties": false
1868
+ }
1869
+ }
1870
+ }
1871
+ },
1872
+ "error": {
1873
+ "type": "object",
1874
+ "description": "Error information if the node fails",
1875
+ "source": "=Error",
1876
+ "var": "error",
1877
+ "schema": {
1878
+ "$schema": "http://json-schema.org/draft-07/schema#",
1879
+ "type": "object",
1880
+ "required": [
1881
+ "code",
1882
+ "message",
1883
+ "detail",
1884
+ "category",
1885
+ "status"
1886
+ ],
1887
+ "properties": {
1888
+ "code": {
1889
+ "type": "string",
1890
+ "description": "Error code as a string"
1891
+ },
1892
+ "message": {
1893
+ "type": "string",
1894
+ "description": "High-level error message"
1895
+ },
1896
+ "detail": {
1897
+ "type": "string",
1898
+ "description": "Detailed error description"
1899
+ },
1900
+ "category": {
1901
+ "type": "string",
1902
+ "description": "Error category"
1903
+ },
1904
+ "status": {
1905
+ "type": "integer",
1906
+ "description": "HTTP status code"
1907
+ }
1908
+ },
1909
+ "additionalProperties": false
1910
+ }
1911
+ }
1912
+ },
1913
+ "debug": {
1914
+ "runtime": "bpmnEngine"
1915
+ },
1916
+ "toolInputDefinition": {
1917
+ "type": "object",
1918
+ "properties": {
1919
+ "projectName": {
1920
+ "type": "string"
1921
+ },
1922
+ "projectId": {
1923
+ "type": "string"
1924
+ },
1925
+ "versionTag": {
1926
+ "type": "string"
1927
+ },
1928
+ "folderKey": {
1929
+ "type": "string"
1930
+ },
1931
+ "folderName": {
1932
+ "type": "string"
1933
+ },
1934
+ "model": {
1935
+ "type": "object"
1936
+ },
1937
+ "modelName": {
1938
+ "type": "string"
1939
+ },
1940
+ "fileRef": {
1941
+ "type": "string"
1942
+ },
1943
+ "pageRange": {
1944
+ "type": "string"
1945
+ },
1946
+ "attachmentConfig": {
1947
+ "type": "object"
1948
+ },
1949
+ "attachment": {
1950
+ "type": "object",
1951
+ "description": "File to extract data from.",
1952
+ "properties": {
1953
+ "ID": {
1954
+ "type": "string",
1955
+ "description": "Orchestrator attachment key"
1956
+ },
1957
+ "FullName": {
1958
+ "type": "string",
1959
+ "description": "File name"
1960
+ },
1961
+ "MimeType": {
1962
+ "type": "string",
1963
+ "description": "The MIME type of the content"
1964
+ },
1965
+ "Metadata": {
1966
+ "type": "object",
1967
+ "description": "Dictionary of metadata",
1968
+ "additionalProperties": {
1969
+ "type": "string"
1970
+ }
1971
+ }
1972
+ },
1973
+ "required": [
1974
+ "ID"
1975
+ ]
1976
+ }
1977
+ },
1978
+ "required": [
1979
+ "fileRef"
1980
+ ]
1981
+ }
1982
+ }