@smartytalent/mcp-tools 0.1.17 → 0.1.19
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.
- package/dist/tools.json +679 -75
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -7170,143 +7170,747 @@
|
|
|
7170
7170
|
}
|
|
7171
7171
|
},
|
|
7172
7172
|
{
|
|
7173
|
-
"name": "
|
|
7174
|
-
"description": "
|
|
7173
|
+
"name": "create_submission",
|
|
7174
|
+
"description": "Create Submission",
|
|
7175
7175
|
"inputSchema": {
|
|
7176
|
+
"title": "CreateSubmissionRequestBody",
|
|
7176
7177
|
"type": "object",
|
|
7178
|
+
"required": [
|
|
7179
|
+
"data"
|
|
7180
|
+
],
|
|
7177
7181
|
"properties": {
|
|
7178
|
-
"
|
|
7179
|
-
"
|
|
7180
|
-
"description": "formId parameter"
|
|
7181
|
-
},
|
|
7182
|
-
"requestBody": {
|
|
7182
|
+
"data": {
|
|
7183
|
+
"title": "CreateSubmissionRequestBodyData",
|
|
7183
7184
|
"type": "object",
|
|
7184
7185
|
"required": [
|
|
7185
|
-
"
|
|
7186
|
-
"
|
|
7187
|
-
"tenantId"
|
|
7186
|
+
"type",
|
|
7187
|
+
"attributes"
|
|
7188
7188
|
],
|
|
7189
7189
|
"properties": {
|
|
7190
|
-
"
|
|
7191
|
-
"type": "string"
|
|
7190
|
+
"type": {
|
|
7191
|
+
"type": "string",
|
|
7192
|
+
"enum": [
|
|
7193
|
+
"submissions"
|
|
7194
|
+
]
|
|
7192
7195
|
},
|
|
7193
|
-
"
|
|
7194
|
-
"
|
|
7196
|
+
"attributes": {
|
|
7197
|
+
"title": "SubmissionAttributesSchema",
|
|
7198
|
+
"type": "object",
|
|
7199
|
+
"required": [
|
|
7200
|
+
"name",
|
|
7201
|
+
"email"
|
|
7202
|
+
],
|
|
7203
|
+
"properties": {
|
|
7204
|
+
"name": {
|
|
7205
|
+
"type": "string"
|
|
7206
|
+
},
|
|
7207
|
+
"email": {
|
|
7208
|
+
"type": "string"
|
|
7209
|
+
},
|
|
7210
|
+
"phone": {
|
|
7211
|
+
"type": "string"
|
|
7212
|
+
},
|
|
7213
|
+
"source": {
|
|
7214
|
+
"type": "string",
|
|
7215
|
+
"enum": [
|
|
7216
|
+
"form",
|
|
7217
|
+
"email",
|
|
7218
|
+
"call",
|
|
7219
|
+
"api"
|
|
7220
|
+
]
|
|
7221
|
+
},
|
|
7222
|
+
"status": {
|
|
7223
|
+
"type": "string",
|
|
7224
|
+
"enum": [
|
|
7225
|
+
"received",
|
|
7226
|
+
"processing",
|
|
7227
|
+
"processed",
|
|
7228
|
+
"failed"
|
|
7229
|
+
]
|
|
7230
|
+
},
|
|
7231
|
+
"language": {
|
|
7232
|
+
"type": "string"
|
|
7233
|
+
},
|
|
7234
|
+
"fields": {
|
|
7235
|
+
"type": "object",
|
|
7236
|
+
"description": "Custom form field answers keyed by field identifier"
|
|
7237
|
+
},
|
|
7238
|
+
"files": {
|
|
7239
|
+
"type": "array",
|
|
7240
|
+
"items": {
|
|
7241
|
+
"type": "object",
|
|
7242
|
+
"properties": {
|
|
7243
|
+
"key": {
|
|
7244
|
+
"type": "string"
|
|
7245
|
+
},
|
|
7246
|
+
"bucket": {
|
|
7247
|
+
"type": "string"
|
|
7248
|
+
},
|
|
7249
|
+
"name": {
|
|
7250
|
+
"type": "string"
|
|
7251
|
+
},
|
|
7252
|
+
"contentType": {
|
|
7253
|
+
"type": "string"
|
|
7254
|
+
}
|
|
7255
|
+
}
|
|
7256
|
+
}
|
|
7257
|
+
},
|
|
7258
|
+
"referral": {
|
|
7259
|
+
"type": "object",
|
|
7260
|
+
"properties": {
|
|
7261
|
+
"referrerName": {
|
|
7262
|
+
"type": "string"
|
|
7263
|
+
},
|
|
7264
|
+
"referrerEmail": {
|
|
7265
|
+
"type": "string"
|
|
7266
|
+
},
|
|
7267
|
+
"relationship": {
|
|
7268
|
+
"type": "string"
|
|
7269
|
+
},
|
|
7270
|
+
"note": {
|
|
7271
|
+
"type": "string"
|
|
7272
|
+
}
|
|
7273
|
+
}
|
|
7274
|
+
},
|
|
7275
|
+
"consent": {
|
|
7276
|
+
"type": "object",
|
|
7277
|
+
"properties": {
|
|
7278
|
+
"current": {
|
|
7279
|
+
"type": "boolean"
|
|
7280
|
+
},
|
|
7281
|
+
"future": {
|
|
7282
|
+
"type": "boolean"
|
|
7283
|
+
}
|
|
7284
|
+
}
|
|
7285
|
+
},
|
|
7286
|
+
"timestamps": {
|
|
7287
|
+
"title": "ResourceTimestampsSchema",
|
|
7288
|
+
"type": "object",
|
|
7289
|
+
"properties": {
|
|
7290
|
+
"created": {
|
|
7291
|
+
"type": "string",
|
|
7292
|
+
"format": "date-time"
|
|
7293
|
+
},
|
|
7294
|
+
"modified": {
|
|
7295
|
+
"type": "string",
|
|
7296
|
+
"format": "date-time"
|
|
7297
|
+
}
|
|
7298
|
+
}
|
|
7299
|
+
}
|
|
7300
|
+
}
|
|
7195
7301
|
},
|
|
7196
|
-
"
|
|
7197
|
-
"
|
|
7302
|
+
"relationships": {
|
|
7303
|
+
"title": "SubmissionRelationshipsSchema",
|
|
7304
|
+
"type": "object",
|
|
7305
|
+
"properties": {
|
|
7306
|
+
"forms": {
|
|
7307
|
+
"title": "SubmissionRelationshipsFormsSchema",
|
|
7308
|
+
"type": "object",
|
|
7309
|
+
"properties": {
|
|
7310
|
+
"data": {
|
|
7311
|
+
"type": "array",
|
|
7312
|
+
"items": {
|
|
7313
|
+
"type": "object",
|
|
7314
|
+
"properties": {
|
|
7315
|
+
"type": {
|
|
7316
|
+
"type": "string"
|
|
7317
|
+
},
|
|
7318
|
+
"id": {
|
|
7319
|
+
"type": "string"
|
|
7320
|
+
}
|
|
7321
|
+
}
|
|
7322
|
+
}
|
|
7323
|
+
}
|
|
7324
|
+
}
|
|
7325
|
+
},
|
|
7326
|
+
"jobs": {
|
|
7327
|
+
"title": "SubmissionRelationshipsJobsSchema",
|
|
7328
|
+
"type": "object",
|
|
7329
|
+
"properties": {
|
|
7330
|
+
"data": {
|
|
7331
|
+
"type": "array",
|
|
7332
|
+
"items": {
|
|
7333
|
+
"type": "object",
|
|
7334
|
+
"properties": {
|
|
7335
|
+
"type": {
|
|
7336
|
+
"type": "string"
|
|
7337
|
+
},
|
|
7338
|
+
"id": {
|
|
7339
|
+
"type": "string"
|
|
7340
|
+
}
|
|
7341
|
+
}
|
|
7342
|
+
}
|
|
7343
|
+
}
|
|
7344
|
+
}
|
|
7345
|
+
},
|
|
7346
|
+
"talents": {
|
|
7347
|
+
"title": "SubmissionRelationshipsTalentsSchema",
|
|
7348
|
+
"type": "object",
|
|
7349
|
+
"properties": {
|
|
7350
|
+
"data": {
|
|
7351
|
+
"type": "array",
|
|
7352
|
+
"items": {
|
|
7353
|
+
"type": "object",
|
|
7354
|
+
"properties": {
|
|
7355
|
+
"type": {
|
|
7356
|
+
"type": "string"
|
|
7357
|
+
},
|
|
7358
|
+
"id": {
|
|
7359
|
+
"type": "string"
|
|
7360
|
+
}
|
|
7361
|
+
}
|
|
7362
|
+
}
|
|
7363
|
+
}
|
|
7364
|
+
}
|
|
7365
|
+
},
|
|
7366
|
+
"candidates": {
|
|
7367
|
+
"title": "SubmissionRelationshipsCandidatesSchema",
|
|
7368
|
+
"type": "object",
|
|
7369
|
+
"properties": {
|
|
7370
|
+
"data": {
|
|
7371
|
+
"type": "array",
|
|
7372
|
+
"items": {
|
|
7373
|
+
"type": "object",
|
|
7374
|
+
"properties": {
|
|
7375
|
+
"type": {
|
|
7376
|
+
"type": "string"
|
|
7377
|
+
},
|
|
7378
|
+
"id": {
|
|
7379
|
+
"type": "string"
|
|
7380
|
+
}
|
|
7381
|
+
}
|
|
7382
|
+
}
|
|
7383
|
+
}
|
|
7384
|
+
}
|
|
7385
|
+
}
|
|
7386
|
+
}
|
|
7198
7387
|
}
|
|
7199
7388
|
}
|
|
7200
7389
|
}
|
|
7201
|
-
}
|
|
7202
|
-
"required": [
|
|
7203
|
-
"formId",
|
|
7204
|
-
"requestBody"
|
|
7205
|
-
]
|
|
7390
|
+
}
|
|
7206
7391
|
},
|
|
7207
7392
|
"_meta": {
|
|
7208
7393
|
"method": "POST",
|
|
7209
|
-
"path": "/v1/
|
|
7210
|
-
"operationId": "
|
|
7394
|
+
"path": "/v1/submissions",
|
|
7395
|
+
"operationId": "createSubmission"
|
|
7211
7396
|
}
|
|
7212
7397
|
},
|
|
7213
7398
|
{
|
|
7214
|
-
"name": "
|
|
7215
|
-
"description": "
|
|
7399
|
+
"name": "list_submissions",
|
|
7400
|
+
"description": "List Submissions",
|
|
7401
|
+
"inputSchema": {
|
|
7402
|
+
"type": "object",
|
|
7403
|
+
"properties": {
|
|
7404
|
+
"filterStatus": {
|
|
7405
|
+
"type": "string",
|
|
7406
|
+
"description": "Returns submissions with the current status.",
|
|
7407
|
+
"enum": [
|
|
7408
|
+
"received",
|
|
7409
|
+
"processing",
|
|
7410
|
+
"processed",
|
|
7411
|
+
"failed"
|
|
7412
|
+
]
|
|
7413
|
+
},
|
|
7414
|
+
"filterEmail": {
|
|
7415
|
+
"type": "string",
|
|
7416
|
+
"description": "Filter submissions by email address."
|
|
7417
|
+
},
|
|
7418
|
+
"filterCreatedFrom": {
|
|
7419
|
+
"type": "string",
|
|
7420
|
+
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
7421
|
+
},
|
|
7422
|
+
"filterCreatedTo": {
|
|
7423
|
+
"type": "string",
|
|
7424
|
+
"description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
|
|
7425
|
+
},
|
|
7426
|
+
"filterModifiedFrom": {
|
|
7427
|
+
"type": "string",
|
|
7428
|
+
"description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
|
|
7429
|
+
},
|
|
7430
|
+
"filterModifiedTo": {
|
|
7431
|
+
"type": "string",
|
|
7432
|
+
"description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
|
|
7433
|
+
},
|
|
7434
|
+
"pageSize": {
|
|
7435
|
+
"type": "integer",
|
|
7436
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
7437
|
+
},
|
|
7438
|
+
"pageNumber": {
|
|
7439
|
+
"type": "integer",
|
|
7440
|
+
"description": "Specifies the page number to retrieve. Used for traditional pagination."
|
|
7441
|
+
},
|
|
7442
|
+
"pageAfter": {
|
|
7443
|
+
"type": "string",
|
|
7444
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
7445
|
+
},
|
|
7446
|
+
"pageBefore": {
|
|
7447
|
+
"type": "string",
|
|
7448
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
7449
|
+
}
|
|
7450
|
+
}
|
|
7451
|
+
},
|
|
7452
|
+
"_meta": {
|
|
7453
|
+
"method": "GET",
|
|
7454
|
+
"path": "/v1/submissions",
|
|
7455
|
+
"operationId": "listSubmissions"
|
|
7456
|
+
}
|
|
7457
|
+
},
|
|
7458
|
+
{
|
|
7459
|
+
"name": "submissions_options",
|
|
7460
|
+
"description": "Submissions Options",
|
|
7216
7461
|
"inputSchema": {
|
|
7217
7462
|
"type": "object",
|
|
7218
7463
|
"properties": {}
|
|
7219
7464
|
},
|
|
7220
7465
|
"_meta": {
|
|
7221
7466
|
"method": "OPTIONS",
|
|
7222
|
-
"path": "/v1/
|
|
7223
|
-
"operationId": "
|
|
7467
|
+
"path": "/v1/submissions",
|
|
7468
|
+
"operationId": "submissionsOptions"
|
|
7224
7469
|
}
|
|
7225
7470
|
},
|
|
7226
7471
|
{
|
|
7227
|
-
"name": "
|
|
7228
|
-
"description": "
|
|
7472
|
+
"name": "create_guest_submission",
|
|
7473
|
+
"description": "Create Submission (Guest)",
|
|
7229
7474
|
"inputSchema": {
|
|
7230
7475
|
"type": "object",
|
|
7476
|
+
"required": [
|
|
7477
|
+
"name",
|
|
7478
|
+
"email",
|
|
7479
|
+
"tenantId",
|
|
7480
|
+
"formId"
|
|
7481
|
+
],
|
|
7231
7482
|
"properties": {
|
|
7483
|
+
"tenantId": {
|
|
7484
|
+
"type": "string"
|
|
7485
|
+
},
|
|
7232
7486
|
"formId": {
|
|
7233
|
-
"type": "string"
|
|
7234
|
-
"description": "formId parameter"
|
|
7487
|
+
"type": "string"
|
|
7235
7488
|
},
|
|
7236
|
-
"
|
|
7489
|
+
"name": {
|
|
7490
|
+
"type": "string"
|
|
7491
|
+
},
|
|
7492
|
+
"email": {
|
|
7493
|
+
"type": "string"
|
|
7494
|
+
},
|
|
7495
|
+
"phone": {
|
|
7496
|
+
"type": "string"
|
|
7497
|
+
},
|
|
7498
|
+
"files": {
|
|
7499
|
+
"type": "array",
|
|
7500
|
+
"items": {
|
|
7501
|
+
"type": "object",
|
|
7502
|
+
"properties": {
|
|
7503
|
+
"fileKey": {
|
|
7504
|
+
"type": "string"
|
|
7505
|
+
},
|
|
7506
|
+
"originalFilename": {
|
|
7507
|
+
"type": "string"
|
|
7508
|
+
}
|
|
7509
|
+
}
|
|
7510
|
+
}
|
|
7511
|
+
},
|
|
7512
|
+
"fields": {
|
|
7513
|
+
"type": "object"
|
|
7514
|
+
},
|
|
7515
|
+
"language": {
|
|
7516
|
+
"type": "string"
|
|
7517
|
+
},
|
|
7518
|
+
"jobId": {
|
|
7519
|
+
"type": "string"
|
|
7520
|
+
},
|
|
7521
|
+
"referral": {
|
|
7237
7522
|
"type": "object",
|
|
7238
|
-
"required": [
|
|
7239
|
-
"name",
|
|
7240
|
-
"email",
|
|
7241
|
-
"tenantId"
|
|
7242
|
-
],
|
|
7243
7523
|
"properties": {
|
|
7244
|
-
"
|
|
7524
|
+
"referrerName": {
|
|
7245
7525
|
"type": "string"
|
|
7246
7526
|
},
|
|
7247
|
-
"
|
|
7527
|
+
"referrerEmail": {
|
|
7248
7528
|
"type": "string"
|
|
7249
7529
|
},
|
|
7250
|
-
"
|
|
7530
|
+
"relationship": {
|
|
7251
7531
|
"type": "string"
|
|
7252
7532
|
},
|
|
7253
|
-
"
|
|
7533
|
+
"note": {
|
|
7254
7534
|
"type": "string"
|
|
7255
|
-
}
|
|
7256
|
-
|
|
7257
|
-
|
|
7258
|
-
|
|
7259
|
-
|
|
7260
|
-
|
|
7261
|
-
|
|
7262
|
-
|
|
7263
|
-
|
|
7264
|
-
|
|
7265
|
-
|
|
7535
|
+
}
|
|
7536
|
+
}
|
|
7537
|
+
},
|
|
7538
|
+
"consentCurrent": {
|
|
7539
|
+
"type": "boolean"
|
|
7540
|
+
},
|
|
7541
|
+
"consentFuture": {
|
|
7542
|
+
"type": "boolean"
|
|
7543
|
+
}
|
|
7544
|
+
}
|
|
7545
|
+
},
|
|
7546
|
+
"_meta": {
|
|
7547
|
+
"method": "POST",
|
|
7548
|
+
"path": "/v1/guest/submissions",
|
|
7549
|
+
"operationId": "createGuestSubmission"
|
|
7550
|
+
}
|
|
7551
|
+
},
|
|
7552
|
+
{
|
|
7553
|
+
"name": "guest_submissions_options",
|
|
7554
|
+
"description": "Guest Submissions Options",
|
|
7555
|
+
"inputSchema": {
|
|
7556
|
+
"type": "object",
|
|
7557
|
+
"properties": {}
|
|
7558
|
+
},
|
|
7559
|
+
"_meta": {
|
|
7560
|
+
"method": "OPTIONS",
|
|
7561
|
+
"path": "/v1/guest/submissions",
|
|
7562
|
+
"operationId": "guestSubmissionsOptions"
|
|
7563
|
+
}
|
|
7564
|
+
},
|
|
7565
|
+
{
|
|
7566
|
+
"name": "upload_guest_submission_file",
|
|
7567
|
+
"description": "Upload Submission File (Guest)",
|
|
7568
|
+
"inputSchema": {
|
|
7569
|
+
"type": "object",
|
|
7570
|
+
"required": [
|
|
7571
|
+
"fileName",
|
|
7572
|
+
"contentType",
|
|
7573
|
+
"tenantId",
|
|
7574
|
+
"formId"
|
|
7575
|
+
],
|
|
7576
|
+
"properties": {
|
|
7577
|
+
"fileName": {
|
|
7578
|
+
"type": "string"
|
|
7579
|
+
},
|
|
7580
|
+
"contentType": {
|
|
7581
|
+
"type": "string"
|
|
7582
|
+
},
|
|
7583
|
+
"tenantId": {
|
|
7584
|
+
"type": "string"
|
|
7585
|
+
},
|
|
7586
|
+
"formId": {
|
|
7587
|
+
"type": "string"
|
|
7588
|
+
}
|
|
7589
|
+
}
|
|
7590
|
+
},
|
|
7591
|
+
"_meta": {
|
|
7592
|
+
"method": "POST",
|
|
7593
|
+
"path": "/v1/guest/submissions/uploads",
|
|
7594
|
+
"operationId": "uploadGuestSubmissionFile"
|
|
7595
|
+
}
|
|
7596
|
+
},
|
|
7597
|
+
{
|
|
7598
|
+
"name": "guest_submission_uploads_options",
|
|
7599
|
+
"description": "Guest Submission Uploads Options",
|
|
7600
|
+
"inputSchema": {
|
|
7601
|
+
"type": "object",
|
|
7602
|
+
"properties": {}
|
|
7603
|
+
},
|
|
7604
|
+
"_meta": {
|
|
7605
|
+
"method": "OPTIONS",
|
|
7606
|
+
"path": "/v1/guest/submissions/uploads",
|
|
7607
|
+
"operationId": "guestSubmissionUploadsOptions"
|
|
7608
|
+
}
|
|
7609
|
+
},
|
|
7610
|
+
{
|
|
7611
|
+
"name": "show_submission",
|
|
7612
|
+
"description": "Show Submission",
|
|
7613
|
+
"inputSchema": {
|
|
7614
|
+
"type": "object",
|
|
7615
|
+
"properties": {
|
|
7616
|
+
"submissionId": {
|
|
7617
|
+
"type": "string",
|
|
7618
|
+
"description": "submissionId parameter"
|
|
7619
|
+
}
|
|
7620
|
+
},
|
|
7621
|
+
"required": [
|
|
7622
|
+
"submissionId"
|
|
7623
|
+
]
|
|
7624
|
+
},
|
|
7625
|
+
"_meta": {
|
|
7626
|
+
"method": "GET",
|
|
7627
|
+
"path": "/v1/submissions/{submissionId}",
|
|
7628
|
+
"operationId": "showSubmission"
|
|
7629
|
+
}
|
|
7630
|
+
},
|
|
7631
|
+
{
|
|
7632
|
+
"name": "update_submission",
|
|
7633
|
+
"description": "Update Submission",
|
|
7634
|
+
"inputSchema": {
|
|
7635
|
+
"type": "object",
|
|
7636
|
+
"properties": {
|
|
7637
|
+
"submissionId": {
|
|
7638
|
+
"type": "string",
|
|
7639
|
+
"description": "submissionId parameter"
|
|
7640
|
+
},
|
|
7641
|
+
"requestBody": {
|
|
7642
|
+
"title": "UpdateSubmissionRequestBody",
|
|
7643
|
+
"type": "object",
|
|
7644
|
+
"required": [
|
|
7645
|
+
"data"
|
|
7646
|
+
],
|
|
7647
|
+
"properties": {
|
|
7648
|
+
"data": {
|
|
7649
|
+
"title": "UpdateSubmissionRequestBodyData",
|
|
7650
|
+
"type": "object",
|
|
7651
|
+
"required": [
|
|
7652
|
+
"type",
|
|
7653
|
+
"id",
|
|
7654
|
+
"attributes"
|
|
7655
|
+
],
|
|
7656
|
+
"properties": {
|
|
7657
|
+
"type": {
|
|
7658
|
+
"type": "string",
|
|
7659
|
+
"enum": [
|
|
7660
|
+
"submissions"
|
|
7661
|
+
]
|
|
7662
|
+
},
|
|
7663
|
+
"id": {
|
|
7664
|
+
"type": "string"
|
|
7665
|
+
},
|
|
7666
|
+
"attributes": {
|
|
7667
|
+
"title": "SubmissionAttributesSchema",
|
|
7668
|
+
"type": "object",
|
|
7669
|
+
"required": [
|
|
7670
|
+
"name",
|
|
7671
|
+
"email"
|
|
7672
|
+
],
|
|
7673
|
+
"properties": {
|
|
7674
|
+
"name": {
|
|
7675
|
+
"type": "string"
|
|
7676
|
+
},
|
|
7677
|
+
"email": {
|
|
7678
|
+
"type": "string"
|
|
7679
|
+
},
|
|
7680
|
+
"phone": {
|
|
7681
|
+
"type": "string"
|
|
7682
|
+
},
|
|
7683
|
+
"source": {
|
|
7684
|
+
"type": "string",
|
|
7685
|
+
"enum": [
|
|
7686
|
+
"form",
|
|
7687
|
+
"email",
|
|
7688
|
+
"call",
|
|
7689
|
+
"api"
|
|
7690
|
+
]
|
|
7691
|
+
},
|
|
7692
|
+
"status": {
|
|
7693
|
+
"type": "string",
|
|
7694
|
+
"enum": [
|
|
7695
|
+
"received",
|
|
7696
|
+
"processing",
|
|
7697
|
+
"processed",
|
|
7698
|
+
"failed"
|
|
7699
|
+
]
|
|
7700
|
+
},
|
|
7701
|
+
"language": {
|
|
7702
|
+
"type": "string"
|
|
7703
|
+
},
|
|
7704
|
+
"fields": {
|
|
7705
|
+
"type": "object",
|
|
7706
|
+
"description": "Custom form field answers keyed by field identifier"
|
|
7707
|
+
},
|
|
7708
|
+
"files": {
|
|
7709
|
+
"type": "array",
|
|
7710
|
+
"items": {
|
|
7711
|
+
"type": "object",
|
|
7712
|
+
"properties": {
|
|
7713
|
+
"key": {
|
|
7714
|
+
"type": "string"
|
|
7715
|
+
},
|
|
7716
|
+
"bucket": {
|
|
7717
|
+
"type": "string"
|
|
7718
|
+
},
|
|
7719
|
+
"name": {
|
|
7720
|
+
"type": "string"
|
|
7721
|
+
},
|
|
7722
|
+
"contentType": {
|
|
7723
|
+
"type": "string"
|
|
7724
|
+
}
|
|
7725
|
+
}
|
|
7726
|
+
}
|
|
7727
|
+
},
|
|
7728
|
+
"referral": {
|
|
7729
|
+
"type": "object",
|
|
7730
|
+
"properties": {
|
|
7731
|
+
"referrerName": {
|
|
7732
|
+
"type": "string"
|
|
7733
|
+
},
|
|
7734
|
+
"referrerEmail": {
|
|
7735
|
+
"type": "string"
|
|
7736
|
+
},
|
|
7737
|
+
"relationship": {
|
|
7738
|
+
"type": "string"
|
|
7739
|
+
},
|
|
7740
|
+
"note": {
|
|
7741
|
+
"type": "string"
|
|
7742
|
+
}
|
|
7743
|
+
}
|
|
7744
|
+
},
|
|
7745
|
+
"consent": {
|
|
7746
|
+
"type": "object",
|
|
7747
|
+
"properties": {
|
|
7748
|
+
"current": {
|
|
7749
|
+
"type": "boolean"
|
|
7750
|
+
},
|
|
7751
|
+
"future": {
|
|
7752
|
+
"type": "boolean"
|
|
7753
|
+
}
|
|
7754
|
+
}
|
|
7755
|
+
},
|
|
7756
|
+
"timestamps": {
|
|
7757
|
+
"title": "ResourceTimestampsSchema",
|
|
7758
|
+
"type": "object",
|
|
7759
|
+
"properties": {
|
|
7760
|
+
"created": {
|
|
7761
|
+
"type": "string",
|
|
7762
|
+
"format": "date-time"
|
|
7763
|
+
},
|
|
7764
|
+
"modified": {
|
|
7765
|
+
"type": "string",
|
|
7766
|
+
"format": "date-time"
|
|
7767
|
+
}
|
|
7768
|
+
}
|
|
7769
|
+
}
|
|
7770
|
+
}
|
|
7771
|
+
},
|
|
7772
|
+
"relationships": {
|
|
7773
|
+
"title": "SubmissionRelationshipsSchema",
|
|
7774
|
+
"type": "object",
|
|
7775
|
+
"properties": {
|
|
7776
|
+
"forms": {
|
|
7777
|
+
"title": "SubmissionRelationshipsFormsSchema",
|
|
7778
|
+
"type": "object",
|
|
7779
|
+
"properties": {
|
|
7780
|
+
"data": {
|
|
7781
|
+
"type": "array",
|
|
7782
|
+
"items": {
|
|
7783
|
+
"type": "object",
|
|
7784
|
+
"properties": {
|
|
7785
|
+
"type": {
|
|
7786
|
+
"type": "string"
|
|
7787
|
+
},
|
|
7788
|
+
"id": {
|
|
7789
|
+
"type": "string"
|
|
7790
|
+
}
|
|
7791
|
+
}
|
|
7792
|
+
}
|
|
7793
|
+
}
|
|
7794
|
+
}
|
|
7795
|
+
},
|
|
7796
|
+
"jobs": {
|
|
7797
|
+
"title": "SubmissionRelationshipsJobsSchema",
|
|
7798
|
+
"type": "object",
|
|
7799
|
+
"properties": {
|
|
7800
|
+
"data": {
|
|
7801
|
+
"type": "array",
|
|
7802
|
+
"items": {
|
|
7803
|
+
"type": "object",
|
|
7804
|
+
"properties": {
|
|
7805
|
+
"type": {
|
|
7806
|
+
"type": "string"
|
|
7807
|
+
},
|
|
7808
|
+
"id": {
|
|
7809
|
+
"type": "string"
|
|
7810
|
+
}
|
|
7811
|
+
}
|
|
7812
|
+
}
|
|
7813
|
+
}
|
|
7814
|
+
}
|
|
7815
|
+
},
|
|
7816
|
+
"talents": {
|
|
7817
|
+
"title": "SubmissionRelationshipsTalentsSchema",
|
|
7818
|
+
"type": "object",
|
|
7819
|
+
"properties": {
|
|
7820
|
+
"data": {
|
|
7821
|
+
"type": "array",
|
|
7822
|
+
"items": {
|
|
7823
|
+
"type": "object",
|
|
7824
|
+
"properties": {
|
|
7825
|
+
"type": {
|
|
7826
|
+
"type": "string"
|
|
7827
|
+
},
|
|
7828
|
+
"id": {
|
|
7829
|
+
"type": "string"
|
|
7830
|
+
}
|
|
7831
|
+
}
|
|
7832
|
+
}
|
|
7833
|
+
}
|
|
7834
|
+
}
|
|
7835
|
+
},
|
|
7836
|
+
"candidates": {
|
|
7837
|
+
"title": "SubmissionRelationshipsCandidatesSchema",
|
|
7838
|
+
"type": "object",
|
|
7839
|
+
"properties": {
|
|
7840
|
+
"data": {
|
|
7841
|
+
"type": "array",
|
|
7842
|
+
"items": {
|
|
7843
|
+
"type": "object",
|
|
7844
|
+
"properties": {
|
|
7845
|
+
"type": {
|
|
7846
|
+
"type": "string"
|
|
7847
|
+
},
|
|
7848
|
+
"id": {
|
|
7849
|
+
"type": "string"
|
|
7850
|
+
}
|
|
7851
|
+
}
|
|
7852
|
+
}
|
|
7853
|
+
}
|
|
7854
|
+
}
|
|
7855
|
+
}
|
|
7266
7856
|
}
|
|
7267
7857
|
}
|
|
7268
7858
|
}
|
|
7269
|
-
},
|
|
7270
|
-
"language": {
|
|
7271
|
-
"type": "string"
|
|
7272
|
-
},
|
|
7273
|
-
"sourceJobShortCode": {
|
|
7274
|
-
"type": "string"
|
|
7275
|
-
},
|
|
7276
|
-
"jobId": {
|
|
7277
|
-
"type": "string"
|
|
7278
|
-
},
|
|
7279
|
-
"consentCurrent": {
|
|
7280
|
-
"type": "boolean"
|
|
7281
|
-
},
|
|
7282
|
-
"consentFuture": {
|
|
7283
|
-
"type": "boolean"
|
|
7284
7859
|
}
|
|
7285
7860
|
}
|
|
7286
7861
|
}
|
|
7287
7862
|
},
|
|
7288
7863
|
"required": [
|
|
7289
|
-
"
|
|
7864
|
+
"submissionId",
|
|
7290
7865
|
"requestBody"
|
|
7291
7866
|
]
|
|
7292
7867
|
},
|
|
7293
7868
|
"_meta": {
|
|
7294
|
-
"method": "
|
|
7295
|
-
"path": "/v1/
|
|
7296
|
-
"operationId": "
|
|
7869
|
+
"method": "PATCH",
|
|
7870
|
+
"path": "/v1/submissions/{submissionId}",
|
|
7871
|
+
"operationId": "updateSubmission"
|
|
7872
|
+
}
|
|
7873
|
+
},
|
|
7874
|
+
{
|
|
7875
|
+
"name": "delete_submission",
|
|
7876
|
+
"description": "Delete Submission",
|
|
7877
|
+
"inputSchema": {
|
|
7878
|
+
"type": "object",
|
|
7879
|
+
"properties": {
|
|
7880
|
+
"submissionId": {
|
|
7881
|
+
"type": "string",
|
|
7882
|
+
"description": "submissionId parameter"
|
|
7883
|
+
},
|
|
7884
|
+
"permanentDelete": {
|
|
7885
|
+
"type": "string",
|
|
7886
|
+
"description": "Set to true for permanent deletion.",
|
|
7887
|
+
"enum": [
|
|
7888
|
+
"true",
|
|
7889
|
+
"false"
|
|
7890
|
+
]
|
|
7891
|
+
}
|
|
7892
|
+
},
|
|
7893
|
+
"required": [
|
|
7894
|
+
"submissionId"
|
|
7895
|
+
]
|
|
7896
|
+
},
|
|
7897
|
+
"_meta": {
|
|
7898
|
+
"method": "DELETE",
|
|
7899
|
+
"path": "/v1/submissions/{submissionId}",
|
|
7900
|
+
"operationId": "deleteSubmission"
|
|
7297
7901
|
}
|
|
7298
7902
|
},
|
|
7299
7903
|
{
|
|
7300
|
-
"name": "
|
|
7301
|
-
"description": "
|
|
7904
|
+
"name": "submission_options",
|
|
7905
|
+
"description": "Submission Options",
|
|
7302
7906
|
"inputSchema": {
|
|
7303
7907
|
"type": "object",
|
|
7304
7908
|
"properties": {}
|
|
7305
7909
|
},
|
|
7306
7910
|
"_meta": {
|
|
7307
7911
|
"method": "OPTIONS",
|
|
7308
|
-
"path": "/v1/
|
|
7309
|
-
"operationId": "
|
|
7912
|
+
"path": "/v1/submissions/{submissionId}",
|
|
7913
|
+
"operationId": "submissionOptions"
|
|
7310
7914
|
}
|
|
7311
7915
|
},
|
|
7312
7916
|
{
|