-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy path_schemas.yml
More file actions
465 lines (416 loc) · 15.8 KB
/
Copy path_schemas.yml
File metadata and controls
465 lines (416 loc) · 15.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
# COMMON
Error:
type: object
required:
- code
- message
properties:
code:
type: integer
message:
type: string
Pagination:
type: object
required:
- has_next_page
- start_index
- end_index
properties:
has_next_page:
type: boolean
start_index:
type: integer
end_index:
type: integer
# ANNOTATIONS
GroupedAnnotations:
$ref: annotations.yml#/components/schemas/GroupedAnnotations
TagEntityAnnotationDto:
$ref: annotations.yml#/components/schemas/TagEntityAnnotationDto
CommentEntityAnnotationDto:
$ref: annotations.yml#/components/schemas/CommentEntityAnnotationDto
FileEntityAnnotationDto:
$ref: annotations.yml#/components/schemas/FileEntityAnnotationDto
CreateAnnotationDto:
$ref: annotations.yml#/components/schemas/CreateAnnotationDto
# AUTHORIZATION
Token:
$ref: authorization.yml#/components/schemas/Token
CredentialsDto:
$ref: authorization.yml#/components/schemas/CredentialsDto
# DECISIONS
OutcomeDto:
$ref: decisions.yml#/components/schemas/OutcomeDto
DecisionDto:
$ref: decisions.yml#/components/schemas/DecisionDto
DecisionDetailDto:
$ref: decisions.yml#/components/schemas/DecisionDetailDto
CreateDecisionBody:
$ref: decisions.yml#/components/schemas/CreateDecisionBody
RuleExecutionDto:
$ref: decisions.yml#/components/schemas/RuleExecutionDto
ScheduledExecutionDto:
$ref: decisions.yml#/components/schemas/ScheduledExecutionDto
# CASES
ReviewStatusDto:
$ref: cases.yml#/components/schemas/ReviewStatusDto
CaseStatusDto:
$ref: cases.yml#/components/schemas/CaseStatusDto
CaseStatusForCaseEventDto:
$ref: cases.yml#/components/schemas/CaseStatusForCaseEventDto
CaseDto:
$ref: cases.yml#/components/schemas/CaseDto
CaseDetailDto:
$ref: cases.yml#/components/schemas/CaseDetailDto
CaseDecisionDto:
$ref: cases.yml#/components/schemas/CaseDecisionDto
NextCaseIdDto:
$ref: cases.yml#/components/schemas/NextCaseIdDto
CaseFileDto:
$ref: cases.yml#/components/schemas/CaseFileDto
CaseTagDto:
$ref: cases.yml#/components/schemas/CaseTagDto
CaseEventDto:
$ref: cases.yml#/components/schemas/CaseEventDto
CaseCreatedEventDto:
$ref: cases.yml#/components/schemas/CaseCreatedEventDto
CaseStatusUpdatedEventDto:
$ref: cases.yml#/components/schemas/CaseStatusUpdatedEventDto
CaseOutcomeUpdatedEventDto:
$ref: cases.yml#/components/schemas/CaseOutcomeUpdatedEventDto
CaseAssignedEventDto:
$ref: cases.yml#/components/schemas/CaseAssignedEventDto
DecisionAddedEventDto:
$ref: cases.yml#/components/schemas/DecisionAddedEventDto
CommentAddedEventDto:
$ref: cases.yml#/components/schemas/CommentAddedEventDto
NameUpdatedEventDto:
$ref: cases.yml#/components/schemas/NameUpdatedEventDto
CaseTagsUpdatedEventDto:
$ref: cases.yml#/components/schemas/CaseTagsUpdatedEventDto
FileAddedEventDto:
$ref: cases.yml#/components/schemas/FileAddedEventDto
InboxChangedEventDto:
$ref: cases.yml#/components/schemas/InboxChangedEventDto
RuleSnoozeCreatedDto:
$ref: cases.yml#/components/schemas/RuleSnoozeCreatedDto
DecisionReviewedEventDto:
$ref: cases.yml#/components/schemas/DecisionReviewedEventDto
SarCreatedEventDto:
$ref: cases.yml#/components/schemas/SarCreatedEventDto
SarDeletedEventDto:
$ref: cases.yml#/components/schemas/SarDeletedEventDto
SarStatusChangedEventDto:
$ref: cases.yml#/components/schemas/SarStatusChangedEventDto
SarFileUploadedEventDto:
$ref: cases.yml#/components/schemas/SarFileUploadedEventDto
EntityAnnotatedEventDto:
$ref: cases.yml#/components/schemas/EntityAnnotatedEventDto
CaseSnoozedDto:
$ref: cases.yml#/components/schemas/CaseSnoozedDto
CaseUnsnoozedDto:
$ref: cases.yml#/components/schemas/CaseUnsnoozedDto
CaseContributorDto:
$ref: cases.yml#/components/schemas/CaseContributorDto
UpdateCaseBodyDto:
$ref: cases.yml#/components/schemas/UpdateCaseBodyDto
AssignCaseBodyDto:
$ref: cases.yml#/components/schemas/AssignCaseBodyDto
CreateCaseBodyDto:
$ref: cases.yml#/components/schemas/CreateCaseBodyDto
PivotObjectDto:
$ref: cases.yml#/components/schemas/PivotObjectDto
CaseReviewFeedbackDto:
$ref: cases.yml#/components/schemas/CaseReviewFeedbackDto
CaseReviewProofDto:
$ref: cases.yml#/components/schemas/CaseReviewProofDto
CaseReviewDto:
$ref: cases.yml#/components/schemas/CaseReviewDto
CaseReviewContentDto:
$ref: cases.yml#/components/schemas/CaseReviewContentDto
CaseReviewOkDto:
$ref: cases.yml#/components/schemas/CaseReviewOkDto
CaseReviewNotOkDto:
$ref: cases.yml#/components/schemas/CaseReviewNotOkDto
FieldStatisticsDto:
$ref: ingestion.yml#/components/schemas/FieldStatisticsDto
StringFieldStatisticsDto:
$ref: ingestion.yml#/components/schemas/StringFieldStatisticsDto
BoolFieldStatisticsDto:
$ref: ingestion.yml#/components/schemas/BoolFieldStatisticsDto
FloatFieldStatisticsDto:
$ref: ingestion.yml#/components/schemas/FloatFieldStatisticsDto
TimestampFieldStatisticsDto:
$ref: ingestion.yml#/components/schemas/TimestampFieldStatisticsDto
KYCAnalysisDto:
$ref: cases.yml#/components/schemas/KYCAnalysisDto
GroundingCitationDto:
$ref: cases.yml#/components/schemas/GroundingCitationDto
# SUSPICIOUS ACTIVITY REPORTS
SuspiciousActivityReportDto:
$ref: sar.yml#/components/schemas/SuspiciousActivityReportDto
SuspiciousActivityReportBodyDto:
$ref: sar.yml#/components/schemas/SuspiciousActivityReportBodyDto
# TAGS
Tag:
$ref: tags.yml#/components/schemas/Tag
# INGESTION
UploadLog:
$ref: ingestion.yml#/components/schemas/UploadLog
DataModelObjectDto:
$ref: ingestion.yml#/components/schemas/DataModelObjectDto
ClientDataListRequestBody:
$ref: ingestion.yml#/components/schemas/ClientDataListRequestBody
ClientDataListResponseDto:
$ref: ingestion.yml#/components/schemas/ClientDataListResponseDto
ClientObjectDetailDto:
$ref: ingestion.yml#/components/schemas/ClientObjectDetailDto
# CUSTOM LISTS
CustomListDto:
$ref: custom-lists.yml#/components/schemas/CustomListDto
CustomListValueDto:
$ref: custom-lists.yml#/components/schemas/CustomListValueDto
CustomListWithValuesDto:
$ref: custom-lists.yml#/components/schemas/CustomListWithValuesDto
CreateCustomListBodyDto:
$ref: custom-lists.yml#/components/schemas/CreateCustomListBodyDto
UpdateCustomListBodyDto:
$ref: custom-lists.yml#/components/schemas/UpdateCustomListBodyDto
CreateCustomListValueBody:
$ref: custom-lists.yml#/components/schemas/CreateCustomListValueBody
# SCENARIOS
ScenarioDto:
$ref: scenarios.yml#/components/schemas/ScenarioDto
ScenarioCreateInputDto:
$ref: scenarios.yml#/components/schemas/ScenarioCreateInputDto
ScenarioUpdateInputDto:
$ref: scenarios.yml#/components/schemas/ScenarioUpdateInputDto
ScenarioAstValidateInputDto:
$ref: scenarios.yml#/components/schemas/ScenarioAstValidateInputDto
AstValidationDto:
$ref: scenarios.yml#/components/schemas/AstValidationDto
ScenarioValidationErrorDto:
$ref: scenarios.yml#/components/schemas/ScenarioValidationErrorDto
ScenarioValidationErrorCodeDto:
$ref: scenarios.yml#/components/schemas/ScenarioValidationErrorCodeDto
ScenarioRuleLatestVersionDto:
$ref: scenarios.yml#/components/schemas/ScenarioRuleLatestVersionDto
# AST EVALUATION
NodeDto:
$ref: ast.yml#/components/schemas/NodeDto
NodeEvaluationDto:
$ref: ast.yml#/components/schemas/NodeEvaluationDto
ConstantDto:
$ref: ast.yml#/components/schemas/ConstantDto
EvaluationErrorDto:
$ref: ast.yml#/components/schemas/EvaluationErrorDto
EvaluationErrorCodeDto:
$ref: ast.yml#/components/schemas/EvaluationErrorCodeDto
FuncAttributes:
$ref: ast.yml#/components/schemas/FuncAttributes
# SCENARIO ITERATIONS
ScenarioIterationDto:
$ref: scenario-iterations.yml#/components/schemas/ScenarioIterationDto
ScenarioIterationWithBodyDto:
$ref: scenario-iterations.yml#/components/schemas/ScenarioIterationWithBodyDto
CreateScenarioIterationBody:
$ref: scenario-iterations.yml#/components/schemas/CreateScenarioIterationBody
UpdateScenarioIterationBody:
$ref: scenario-iterations.yml#/components/schemas/UpdateScenarioIterationBody
CreateScenarioIterationRuleBodyDto:
$ref: scenario-iteration-rules.yml#/components/schemas/CreateScenarioIterationRuleBodyDto
UpdateScenarioIterationRuleBodyDto:
$ref: scenario-iteration-rules.yml#/components/schemas/UpdateScenarioIterationRuleBodyDto
# RULES
ScenarioIterationRuleDto:
$ref: scenario-iteration-rules.yml#/components/schemas/ScenarioIterationRuleDto
ScenarioValidationDto:
$ref: scenario-iterations.yml#/components/schemas/ScenarioValidationDto
# SCREENINGS
OpenSanctionsCatalogDataset:
$ref: sanction-checks.yml#/components/schemas/OpenSanctionsCatalogDataset
OpenSanctionsCatalogSection:
$ref: sanction-checks.yml#/components/schemas/OpenSanctionsCatalogSection
OpenSanctionsDatasetFreshnessDto:
$ref: sanction-checks.yml#/components/schemas/OpenSanctionsDatasetFreshnessDto
OpenSanctionsUpstreamDatasetFreshnessDto:
$ref: sanction-checks.yml#/components/schemas/OpenSanctionsUpstreamDatasetFreshnessDto
OpenSanctionsCatalogDto:
$ref: sanction-checks.yml#/components/schemas/OpenSanctionsCatalogDto
SanctionCheckConfigDto:
$ref: sanction-checks.yml#/components/schemas/SanctionCheckConfigDto
SanctionCheckDto:
$ref: sanction-checks.yml#/components/schemas/SanctionCheckDto
SanctionCheckSuccessDto:
$ref: sanction-checks.yml#/components/schemas/SanctionCheckSuccessDto
SanctionCheckErrorDto:
$ref: sanction-checks.yml#/components/schemas/SanctionCheckErrorDto
SanctionCheckFileDto:
$ref: sanction-checks.yml#/components/schemas/SanctionCheckFileDto
SanctionCheckSanctionEntityDto:
$ref: sanction-checks.yml#/components/schemas/SanctionCheckSanctionEntityDto
SanctionCheckMatchPayloadDto:
$ref: sanction-checks.yml#/components/schemas/SanctionCheckMatchPayloadDto
SanctionCheckMatchDto:
$ref: sanction-checks.yml#/components/schemas/SanctionCheckMatchDto
SanctionCheckEntityDto:
$ref: sanction-checks.yml#/components/schemas/SanctionCheckEntityDto
SanctionCheckRequestDto:
$ref: sanction-checks.yml#/components/schemas/SanctionCheckRequestDto
SanctionCheckRefineDto:
$ref: sanction-checks.yml#/components/schemas/SanctionCheckRefineDto
UpdateSanctionCheckMatchDto:
$ref: sanction-checks.yml#/components/schemas/UpdateSanctionCheckMatchDto
# SCENARIO PUBLICATIONS
ScenarioPublicationStatusDto:
$ref: scenario-publications.yml#/components/schemas/ScenarioPublicationStatusDto
ScenarioPublication:
$ref: scenario-publications.yml#/components/schemas/ScenarioPublication
CreateScenarioPublicationBody:
$ref: scenario-publications.yml#/components/schemas/CreateScenarioPublicationBody
PublicationAction:
$ref: scenario-publications.yml#/components/schemas/PublicationAction
# DATA MODEL
LinkToSingleDto:
$ref: data-model.yml#/components/schemas/LinkToSingleDto
FieldDto:
$ref: data-model.yml#/components/schemas/FieldDto
TableDto:
$ref: data-model.yml#/components/schemas/TableDto
DataModelDto:
$ref: data-model.yml#/components/schemas/DataModelDto
CreateTableBody:
$ref: data-model.yml#/components/schemas/CreateTableBody
UpdateTableBody:
$ref: data-model.yml#/components/schemas/UpdateTableBody
CreateTableFieldDto:
$ref: data-model.yml#/components/schemas/CreateTableFieldDto
UpdateTableFieldDto:
$ref: data-model.yml#/components/schemas/UpdateTableFieldDto
CreateTableLinkBody:
$ref: data-model.yml#/components/schemas/CreateTableLinkBody
OpenAPISpec:
$ref: data-model.yml#/components/schemas/OpenAPISpec
PivotDto:
$ref: data-model.yml#/components/schemas/PivotDto
PivotValueDto:
$ref: data-model.yml#/components/schemas/PivotValueDto
CreatePivotInputDto:
$ref: data-model.yml#/components/schemas/CreatePivotInputDto
NavigationOptionDto:
$ref: data-model.yml#/components/schemas/NavigationOptionDto
CreateNavigationOptionDto:
$ref: data-model.yml#/components/schemas/CreateNavigationOptionDto
DataModelTableOptionsDto:
$ref: data-model.yml#/components/schemas/DataModelTableOptionsDto
SetDataModelTableOptionsBodyDto:
$ref: data-model.yml#/components/schemas/SetDataModelTableOptionsBodyDto
# MISC
AnalyticsDto:
$ref: misc.yml#/components/schemas/AnalyticsDto
AppConfigDto:
$ref: misc.yml#/components/schemas/AppConfigDto
# ADMINISTRATION
OrganizationDto:
$ref: admin.yml#/components/schemas/OrganizationDto
CreateOrganizationBodyDto:
$ref: admin.yml#/components/schemas/CreateOrganizationBodyDto
UpdateOrganizationBodyDto:
$ref: admin.yml#/components/schemas/UpdateOrganizationBodyDto
OrganizationSubnetsDto:
$ref: admin.yml#/components/schemas/OrganizationSubnetsDto
UserDto:
$ref: admin.yml#/components/schemas/UserDto
CreateUser:
$ref: admin.yml#/components/schemas/CreateUser
UpdateUser:
$ref: admin.yml#/components/schemas/UpdateUser
ApiKeyDto:
$ref: admin.yml#/components/schemas/ApiKeyDto
CreateApiKeyBody:
$ref: admin.yml#/components/schemas/CreateApiKeyBody
CreatedApiKeyDto:
$ref: admin.yml#/components/schemas/CreatedApiKeyDto
# INBOXES
InboxDto:
$ref: inboxes.yml#/components/schemas/InboxDto
InboxMetadataDto:
$ref: inboxes.yml#/components/schemas/InboxMetadataDto
CreateInboxBodyDto:
$ref: inboxes.yml#/components/schemas/CreateInboxBodyDto
InboxUserDto:
$ref: inboxes.yml#/components/schemas/InboxUserDto
AddInboxUserBodyDto:
$ref: inboxes.yml#/components/schemas/AddInboxUserBodyDto
# WEBHOOKS
WebhookDto:
$ref: webhooks.yml#/components/schemas/WebhookDto
WebhookSecretDto:
$ref: webhooks.yml#/components/schemas/WebhookSecretDto
WebhookWithSecretDto:
$ref: webhooks.yml#/components/schemas/WebhookWithSecretDto
WebhookRegisterBodyDto:
$ref: webhooks.yml#/components/schemas/WebhookRegisterBodyDto
WebhookUpdateBodyDto:
$ref: webhooks.yml#/components/schemas/WebhookUpdateBodyDto
# RULE SNOOZES
RuleSnoozeDto:
$ref: rule-snoozes.yml#/components/schemas/RuleSnoozeDto
RuleSnoozeWithRuleIdDto:
$ref: rule-snoozes.yml#/components/schemas/RuleSnoozeWithRuleIdDto
RuleSnoozeInformationDto:
$ref: rule-snoozes.yml#/components/schemas/RuleSnoozeInformationDto
SnoozesOfIterationDto:
$ref: rule-snoozes.yml#/components/schemas/SnoozesOfIterationDto
SnoozesOfDecisionDto:
$ref: rule-snoozes.yml#/components/schemas/SnoozesOfDecisionDto
SnoozeDecisionInputDto:
$ref: rule-snoozes.yml#/components/schemas/SnoozeDecisionInputDto
# TEST RUNS
TestRunStatusDto:
$ref: scenario-testrun.yml#/components/schemas/TestRunStatusDto
TestRunDto:
$ref: scenario-testrun.yml#/components/schemas/TestRunDto
TestRunDecisionDataDto:
$ref: scenario-testrun.yml#/components/schemas/TestRunDecisionDataDto
TestRunRuleExecutionDataDto:
$ref: scenario-testrun.yml#/components/schemas/TestRunRuleExecutionDataDto
TestRunCreateInputDto:
$ref: scenario-testrun.yml#/components/schemas/TestRunCreateInputDto
# WORKFLOWS
WorkflowRuleDto:
$ref: workflow.yml#/components/schemas/WorkflowRuleDto
WorkflowRuleDetailDto:
$ref: workflow.yml#/components/schemas/WorkflowRuleDetailDto
CreateWorkflowRuleDto:
$ref: workflow.yml#/components/schemas/CreateWorkflowRuleDto
WorkflowConditionDto:
$ref: workflow.yml#/components/schemas/WorkflowConditionDto
WorkflowConditionDetailDto:
$ref: workflow.yml#/components/schemas/WorkflowConditionDetailDto
WorkflowConditionAlways:
$ref: workflow.yml#/components/schemas/WorkflowConditionAlways
WorkflowConditionNever:
$ref: workflow.yml#/components/schemas/WorkflowConditionNever
WorkflowConditionOutcomeIn:
$ref: workflow.yml#/components/schemas/WorkflowConditionOutcomeIn
WorkflowActionDto:
$ref: workflow.yml#/components/schemas/WorkflowActionDto
WorkflowActionDetailDto:
$ref: workflow.yml#/components/schemas/WorkflowActionDetailDto
WorkflowActionDisabled:
$ref: workflow.yml#/components/schemas/WorkflowActionDisabled
WorkflowActionCase:
$ref: workflow.yml#/components/schemas/WorkflowActionCase
# USER SETTINGS
PersonalSettingsUnavailableDto:
$ref: users.yml#/components/schemas/PersonalSettingsUnavailableDto
# AI
KycEnrichmentSettingDto:
$ref: ai.yml#/components/schemas/KycEnrichmentSettingDto
CaseReviewSettingDto:
$ref: ai.yml#/components/schemas/CaseReviewSettingDto
AISettingsDto:
$ref: ai.yml#/components/schemas/AISettingsDto
UpsertAISettingsDto:
$ref: ai.yml#/components/schemas/UpsertAISettingsDto