@smartytalent/mcp-tools 0.1.19 → 0.1.21

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 (2) hide show
  1. package/dist/tools.json +1313 -313
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -7169,18 +7169,1249 @@
7169
7169
  "operationId": "formOptions"
7170
7170
  }
7171
7171
  },
7172
+ {
7173
+ "name": "list_feedbacks",
7174
+ "description": "List Feedbacks",
7175
+ "inputSchema": {
7176
+ "type": "object",
7177
+ "properties": {
7178
+ "filterStatus": {
7179
+ "type": "string",
7180
+ "description": "Returns feedbacks with the current status.",
7181
+ "enum": [
7182
+ "active",
7183
+ "draft",
7184
+ "archived",
7185
+ "failed"
7186
+ ]
7187
+ },
7188
+ "filterCreatedFrom": {
7189
+ "type": "string",
7190
+ "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
7191
+ },
7192
+ "filterCreatedTo": {
7193
+ "type": "string",
7194
+ "description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
7195
+ },
7196
+ "filterModifiedFrom": {
7197
+ "type": "string",
7198
+ "description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
7199
+ },
7200
+ "filterModifiedTo": {
7201
+ "type": "string",
7202
+ "description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
7203
+ },
7204
+ "pageSize": {
7205
+ "type": "integer",
7206
+ "description": "Specifies the number of items to retrieve per page. The maximum value is 100."
7207
+ },
7208
+ "pageNumber": {
7209
+ "type": "integer",
7210
+ "description": "Specifies the page number to retrieve. Used for traditional pagination."
7211
+ },
7212
+ "pageAfter": {
7213
+ "type": "string",
7214
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
7215
+ },
7216
+ "pageBefore": {
7217
+ "type": "string",
7218
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
7219
+ }
7220
+ }
7221
+ },
7222
+ "_meta": {
7223
+ "method": "GET",
7224
+ "path": "/v1/feedbacks",
7225
+ "operationId": "listFeedbacks"
7226
+ }
7227
+ },
7228
+ {
7229
+ "name": "create_feedback",
7230
+ "description": "Create Feedback",
7231
+ "inputSchema": {
7232
+ "title": "CreateFeedbackRequestBody",
7233
+ "type": "object",
7234
+ "required": [
7235
+ "data"
7236
+ ],
7237
+ "properties": {
7238
+ "data": {
7239
+ "title": "CreateFeedbackRequestBodyData",
7240
+ "type": "object",
7241
+ "required": [
7242
+ "type",
7243
+ "attributes"
7244
+ ],
7245
+ "properties": {
7246
+ "type": {
7247
+ "type": "string",
7248
+ "enum": [
7249
+ "feedbacks"
7250
+ ]
7251
+ },
7252
+ "attributes": {
7253
+ "title": "FeedbackAttributesSchema",
7254
+ "type": "object",
7255
+ "required": [
7256
+ "name"
7257
+ ],
7258
+ "properties": {
7259
+ "name": {
7260
+ "type": "string"
7261
+ },
7262
+ "transparency": {
7263
+ "type": "string",
7264
+ "enum": [
7265
+ "generic",
7266
+ "category",
7267
+ "specific"
7268
+ ]
7269
+ },
7270
+ "tone": {
7271
+ "type": "string",
7272
+ "enum": [
7273
+ "casual",
7274
+ "formal",
7275
+ "superFormal"
7276
+ ]
7277
+ },
7278
+ "delay": {
7279
+ "type": "integer",
7280
+ "default": 72
7281
+ },
7282
+ "respectBusinessDays": {
7283
+ "type": "boolean",
7284
+ "default": false
7285
+ },
7286
+ "signature": {
7287
+ "type": "object",
7288
+ "properties": {
7289
+ "name": {
7290
+ "type": "string"
7291
+ },
7292
+ "title": {
7293
+ "type": "string"
7294
+ },
7295
+ "company": {
7296
+ "type": "string"
7297
+ }
7298
+ }
7299
+ },
7300
+ "aiDisclosure": {
7301
+ "type": "boolean",
7302
+ "default": true
7303
+ },
7304
+ "instructions": {
7305
+ "type": "string"
7306
+ },
7307
+ "categories": {
7308
+ "type": "array",
7309
+ "items": {
7310
+ "type": "string"
7311
+ }
7312
+ },
7313
+ "reasons": {
7314
+ "type": "array",
7315
+ "items": {
7316
+ "type": "string"
7317
+ }
7318
+ },
7319
+ "links": {
7320
+ "type": "array",
7321
+ "items": {
7322
+ "type": "object",
7323
+ "properties": {
7324
+ "label": {
7325
+ "type": "string"
7326
+ },
7327
+ "url": {
7328
+ "type": "string"
7329
+ }
7330
+ }
7331
+ }
7332
+ },
7333
+ "feedbackFormUrl": {
7334
+ "type": "string"
7335
+ },
7336
+ "status": {
7337
+ "type": "string",
7338
+ "enum": [
7339
+ "active",
7340
+ "draft",
7341
+ "archived",
7342
+ "failed"
7343
+ ]
7344
+ },
7345
+ "source": {
7346
+ "type": "string"
7347
+ },
7348
+ "timestamps": {
7349
+ "title": "ResourceTimestampsSchema",
7350
+ "type": "object",
7351
+ "properties": {
7352
+ "created": {
7353
+ "type": "string",
7354
+ "format": "date-time"
7355
+ },
7356
+ "modified": {
7357
+ "type": "string",
7358
+ "format": "date-time"
7359
+ }
7360
+ }
7361
+ }
7362
+ }
7363
+ },
7364
+ "relationships": {
7365
+ "title": "FeedbackRelationshipsSchema",
7366
+ "type": "object",
7367
+ "properties": {
7368
+ "jobs": {
7369
+ "title": "FeedbackRelationshipsJobsSchema",
7370
+ "type": "object",
7371
+ "properties": {
7372
+ "data": {
7373
+ "type": "object",
7374
+ "properties": {
7375
+ "type": {
7376
+ "type": "string"
7377
+ },
7378
+ "id": {
7379
+ "type": "string"
7380
+ }
7381
+ }
7382
+ }
7383
+ }
7384
+ }
7385
+ }
7386
+ }
7387
+ }
7388
+ }
7389
+ }
7390
+ },
7391
+ "_meta": {
7392
+ "method": "POST",
7393
+ "path": "/v1/feedbacks",
7394
+ "operationId": "createFeedback"
7395
+ }
7396
+ },
7397
+ {
7398
+ "name": "feedbacks_options",
7399
+ "description": "Feedbacks Options",
7400
+ "inputSchema": {
7401
+ "type": "object",
7402
+ "properties": {}
7403
+ },
7404
+ "_meta": {
7405
+ "method": "OPTIONS",
7406
+ "path": "/v1/feedbacks",
7407
+ "operationId": "feedbacksOptions"
7408
+ }
7409
+ },
7410
+ {
7411
+ "name": "show_feedback",
7412
+ "description": "Show Feedback",
7413
+ "inputSchema": {
7414
+ "type": "object",
7415
+ "properties": {
7416
+ "feedbackId": {
7417
+ "type": "string",
7418
+ "description": "feedbackId parameter"
7419
+ }
7420
+ },
7421
+ "required": [
7422
+ "feedbackId"
7423
+ ]
7424
+ },
7425
+ "_meta": {
7426
+ "method": "GET",
7427
+ "path": "/v1/feedbacks/{feedbackId}",
7428
+ "operationId": "showFeedback"
7429
+ }
7430
+ },
7431
+ {
7432
+ "name": "update_feedback",
7433
+ "description": "Update Feedback",
7434
+ "inputSchema": {
7435
+ "type": "object",
7436
+ "properties": {
7437
+ "feedbackId": {
7438
+ "type": "string",
7439
+ "description": "feedbackId parameter"
7440
+ },
7441
+ "requestBody": {
7442
+ "title": "UpdateFeedbackRequestBody",
7443
+ "type": "object",
7444
+ "required": [
7445
+ "data"
7446
+ ],
7447
+ "properties": {
7448
+ "data": {
7449
+ "title": "UpdateFeedbackRequestBodyData",
7450
+ "type": "object",
7451
+ "required": [
7452
+ "type",
7453
+ "id",
7454
+ "attributes"
7455
+ ],
7456
+ "properties": {
7457
+ "type": {
7458
+ "type": "string",
7459
+ "enum": [
7460
+ "feedbacks"
7461
+ ]
7462
+ },
7463
+ "id": {
7464
+ "type": "string"
7465
+ },
7466
+ "attributes": {
7467
+ "title": "FeedbackAttributesSchema",
7468
+ "type": "object",
7469
+ "required": [
7470
+ "name"
7471
+ ],
7472
+ "properties": {
7473
+ "name": {
7474
+ "type": "string"
7475
+ },
7476
+ "transparency": {
7477
+ "type": "string",
7478
+ "enum": [
7479
+ "generic",
7480
+ "category",
7481
+ "specific"
7482
+ ]
7483
+ },
7484
+ "tone": {
7485
+ "type": "string",
7486
+ "enum": [
7487
+ "casual",
7488
+ "formal",
7489
+ "superFormal"
7490
+ ]
7491
+ },
7492
+ "delay": {
7493
+ "type": "integer",
7494
+ "default": 72
7495
+ },
7496
+ "respectBusinessDays": {
7497
+ "type": "boolean",
7498
+ "default": false
7499
+ },
7500
+ "signature": {
7501
+ "type": "object",
7502
+ "properties": {
7503
+ "name": {
7504
+ "type": "string"
7505
+ },
7506
+ "title": {
7507
+ "type": "string"
7508
+ },
7509
+ "company": {
7510
+ "type": "string"
7511
+ }
7512
+ }
7513
+ },
7514
+ "aiDisclosure": {
7515
+ "type": "boolean",
7516
+ "default": true
7517
+ },
7518
+ "instructions": {
7519
+ "type": "string"
7520
+ },
7521
+ "categories": {
7522
+ "type": "array",
7523
+ "items": {
7524
+ "type": "string"
7525
+ }
7526
+ },
7527
+ "reasons": {
7528
+ "type": "array",
7529
+ "items": {
7530
+ "type": "string"
7531
+ }
7532
+ },
7533
+ "links": {
7534
+ "type": "array",
7535
+ "items": {
7536
+ "type": "object",
7537
+ "properties": {
7538
+ "label": {
7539
+ "type": "string"
7540
+ },
7541
+ "url": {
7542
+ "type": "string"
7543
+ }
7544
+ }
7545
+ }
7546
+ },
7547
+ "feedbackFormUrl": {
7548
+ "type": "string"
7549
+ },
7550
+ "status": {
7551
+ "type": "string",
7552
+ "enum": [
7553
+ "active",
7554
+ "draft",
7555
+ "archived",
7556
+ "failed"
7557
+ ]
7558
+ },
7559
+ "source": {
7560
+ "type": "string"
7561
+ },
7562
+ "timestamps": {
7563
+ "title": "ResourceTimestampsSchema",
7564
+ "type": "object",
7565
+ "properties": {
7566
+ "created": {
7567
+ "type": "string",
7568
+ "format": "date-time"
7569
+ },
7570
+ "modified": {
7571
+ "type": "string",
7572
+ "format": "date-time"
7573
+ }
7574
+ }
7575
+ }
7576
+ }
7577
+ },
7578
+ "relationships": {
7579
+ "title": "FeedbackRelationshipsSchema",
7580
+ "type": "object",
7581
+ "properties": {
7582
+ "jobs": {
7583
+ "title": "FeedbackRelationshipsJobsSchema",
7584
+ "type": "object",
7585
+ "properties": {
7586
+ "data": {
7587
+ "type": "object",
7588
+ "properties": {
7589
+ "type": {
7590
+ "type": "string"
7591
+ },
7592
+ "id": {
7593
+ "type": "string"
7594
+ }
7595
+ }
7596
+ }
7597
+ }
7598
+ }
7599
+ }
7600
+ }
7601
+ }
7602
+ }
7603
+ }
7604
+ }
7605
+ },
7606
+ "required": [
7607
+ "feedbackId",
7608
+ "requestBody"
7609
+ ]
7610
+ },
7611
+ "_meta": {
7612
+ "method": "PATCH",
7613
+ "path": "/v1/feedbacks/{feedbackId}",
7614
+ "operationId": "updateFeedback"
7615
+ }
7616
+ },
7617
+ {
7618
+ "name": "delete_feedback",
7619
+ "description": "Delete Feedback",
7620
+ "inputSchema": {
7621
+ "type": "object",
7622
+ "properties": {
7623
+ "feedbackId": {
7624
+ "type": "string",
7625
+ "description": "feedbackId parameter"
7626
+ },
7627
+ "permanentDelete": {
7628
+ "type": "string",
7629
+ "description": "Set to true for permanent deletion.",
7630
+ "enum": [
7631
+ "true",
7632
+ "false"
7633
+ ]
7634
+ }
7635
+ },
7636
+ "required": [
7637
+ "feedbackId"
7638
+ ]
7639
+ },
7640
+ "_meta": {
7641
+ "method": "DELETE",
7642
+ "path": "/v1/feedbacks/{feedbackId}",
7643
+ "operationId": "deleteFeedback"
7644
+ }
7645
+ },
7646
+ {
7647
+ "name": "feedback_options",
7648
+ "description": "Feedback Options",
7649
+ "inputSchema": {
7650
+ "type": "object",
7651
+ "properties": {}
7652
+ },
7653
+ "_meta": {
7654
+ "method": "OPTIONS",
7655
+ "path": "/v1/feedbacks/{feedbackId}",
7656
+ "operationId": "feedbackOptions"
7657
+ }
7658
+ },
7172
7659
  {
7173
7660
  "name": "create_submission",
7174
7661
  "description": "Create Submission",
7175
7662
  "inputSchema": {
7176
- "title": "CreateSubmissionRequestBody",
7663
+ "title": "CreateSubmissionRequestBody",
7664
+ "type": "object",
7665
+ "required": [
7666
+ "data"
7667
+ ],
7668
+ "properties": {
7669
+ "data": {
7670
+ "title": "CreateSubmissionRequestBodyData",
7671
+ "type": "object",
7672
+ "required": [
7673
+ "type",
7674
+ "attributes"
7675
+ ],
7676
+ "properties": {
7677
+ "type": {
7678
+ "type": "string",
7679
+ "enum": [
7680
+ "submissions"
7681
+ ]
7682
+ },
7683
+ "attributes": {
7684
+ "title": "SubmissionAttributesSchema",
7685
+ "type": "object",
7686
+ "required": [
7687
+ "name",
7688
+ "email"
7689
+ ],
7690
+ "properties": {
7691
+ "name": {
7692
+ "type": "string"
7693
+ },
7694
+ "email": {
7695
+ "type": "string"
7696
+ },
7697
+ "phone": {
7698
+ "type": "string"
7699
+ },
7700
+ "source": {
7701
+ "type": "string",
7702
+ "enum": [
7703
+ "form",
7704
+ "email",
7705
+ "call",
7706
+ "api"
7707
+ ]
7708
+ },
7709
+ "status": {
7710
+ "type": "string",
7711
+ "enum": [
7712
+ "received",
7713
+ "processing",
7714
+ "processed",
7715
+ "failed"
7716
+ ]
7717
+ },
7718
+ "language": {
7719
+ "type": "string"
7720
+ },
7721
+ "fields": {
7722
+ "type": "object",
7723
+ "description": "Custom form field answers keyed by field identifier"
7724
+ },
7725
+ "files": {
7726
+ "type": "array",
7727
+ "items": {
7728
+ "type": "object",
7729
+ "properties": {
7730
+ "key": {
7731
+ "type": "string"
7732
+ },
7733
+ "bucket": {
7734
+ "type": "string"
7735
+ },
7736
+ "name": {
7737
+ "type": "string"
7738
+ },
7739
+ "contentType": {
7740
+ "type": "string"
7741
+ }
7742
+ }
7743
+ }
7744
+ },
7745
+ "referral": {
7746
+ "type": "object",
7747
+ "properties": {
7748
+ "referrerName": {
7749
+ "type": "string"
7750
+ },
7751
+ "referrerEmail": {
7752
+ "type": "string"
7753
+ },
7754
+ "relationship": {
7755
+ "type": "string"
7756
+ },
7757
+ "note": {
7758
+ "type": "string"
7759
+ }
7760
+ }
7761
+ },
7762
+ "consent": {
7763
+ "type": "object",
7764
+ "properties": {
7765
+ "current": {
7766
+ "type": "boolean"
7767
+ },
7768
+ "future": {
7769
+ "type": "boolean"
7770
+ }
7771
+ }
7772
+ },
7773
+ "timestamps": {
7774
+ "title": "ResourceTimestampsSchema",
7775
+ "type": "object",
7776
+ "properties": {
7777
+ "created": {
7778
+ "type": "string",
7779
+ "format": "date-time"
7780
+ },
7781
+ "modified": {
7782
+ "type": "string",
7783
+ "format": "date-time"
7784
+ }
7785
+ }
7786
+ }
7787
+ }
7788
+ },
7789
+ "relationships": {
7790
+ "title": "SubmissionRelationshipsSchema",
7791
+ "type": "object",
7792
+ "properties": {
7793
+ "forms": {
7794
+ "title": "SubmissionRelationshipsFormsSchema",
7795
+ "type": "object",
7796
+ "properties": {
7797
+ "data": {
7798
+ "type": "array",
7799
+ "items": {
7800
+ "type": "object",
7801
+ "properties": {
7802
+ "type": {
7803
+ "type": "string"
7804
+ },
7805
+ "id": {
7806
+ "type": "string"
7807
+ }
7808
+ }
7809
+ }
7810
+ }
7811
+ }
7812
+ },
7813
+ "jobs": {
7814
+ "title": "SubmissionRelationshipsJobsSchema",
7815
+ "type": "object",
7816
+ "properties": {
7817
+ "data": {
7818
+ "type": "array",
7819
+ "items": {
7820
+ "type": "object",
7821
+ "properties": {
7822
+ "type": {
7823
+ "type": "string"
7824
+ },
7825
+ "id": {
7826
+ "type": "string"
7827
+ }
7828
+ }
7829
+ }
7830
+ }
7831
+ }
7832
+ },
7833
+ "talents": {
7834
+ "title": "SubmissionRelationshipsTalentsSchema",
7835
+ "type": "object",
7836
+ "properties": {
7837
+ "data": {
7838
+ "type": "array",
7839
+ "items": {
7840
+ "type": "object",
7841
+ "properties": {
7842
+ "type": {
7843
+ "type": "string"
7844
+ },
7845
+ "id": {
7846
+ "type": "string"
7847
+ }
7848
+ }
7849
+ }
7850
+ }
7851
+ }
7852
+ },
7853
+ "candidates": {
7854
+ "title": "SubmissionRelationshipsCandidatesSchema",
7855
+ "type": "object",
7856
+ "properties": {
7857
+ "data": {
7858
+ "type": "array",
7859
+ "items": {
7860
+ "type": "object",
7861
+ "properties": {
7862
+ "type": {
7863
+ "type": "string"
7864
+ },
7865
+ "id": {
7866
+ "type": "string"
7867
+ }
7868
+ }
7869
+ }
7870
+ }
7871
+ }
7872
+ }
7873
+ }
7874
+ }
7875
+ }
7876
+ }
7877
+ }
7878
+ },
7879
+ "_meta": {
7880
+ "method": "POST",
7881
+ "path": "/v1/submissions",
7882
+ "operationId": "createSubmission"
7883
+ }
7884
+ },
7885
+ {
7886
+ "name": "list_submissions",
7887
+ "description": "List Submissions",
7888
+ "inputSchema": {
7889
+ "type": "object",
7890
+ "properties": {
7891
+ "filterStatus": {
7892
+ "type": "string",
7893
+ "description": "Returns submissions with the current status.",
7894
+ "enum": [
7895
+ "received",
7896
+ "processing",
7897
+ "processed",
7898
+ "failed"
7899
+ ]
7900
+ },
7901
+ "filterEmail": {
7902
+ "type": "string",
7903
+ "description": "Filter submissions by email address."
7904
+ },
7905
+ "filterCreatedFrom": {
7906
+ "type": "string",
7907
+ "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
7908
+ },
7909
+ "filterCreatedTo": {
7910
+ "type": "string",
7911
+ "description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
7912
+ },
7913
+ "filterModifiedFrom": {
7914
+ "type": "string",
7915
+ "description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
7916
+ },
7917
+ "filterModifiedTo": {
7918
+ "type": "string",
7919
+ "description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
7920
+ },
7921
+ "pageSize": {
7922
+ "type": "integer",
7923
+ "description": "Specifies the number of items to retrieve per page. The maximum value is 100."
7924
+ },
7925
+ "pageNumber": {
7926
+ "type": "integer",
7927
+ "description": "Specifies the page number to retrieve. Used for traditional pagination."
7928
+ },
7929
+ "pageAfter": {
7930
+ "type": "string",
7931
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
7932
+ },
7933
+ "pageBefore": {
7934
+ "type": "string",
7935
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
7936
+ }
7937
+ }
7938
+ },
7939
+ "_meta": {
7940
+ "method": "GET",
7941
+ "path": "/v1/submissions",
7942
+ "operationId": "listSubmissions"
7943
+ }
7944
+ },
7945
+ {
7946
+ "name": "submissions_options",
7947
+ "description": "Submissions Options",
7948
+ "inputSchema": {
7949
+ "type": "object",
7950
+ "properties": {}
7951
+ },
7952
+ "_meta": {
7953
+ "method": "OPTIONS",
7954
+ "path": "/v1/submissions",
7955
+ "operationId": "submissionsOptions"
7956
+ }
7957
+ },
7958
+ {
7959
+ "name": "create_guest_submission",
7960
+ "description": "Create Submission (Guest)",
7961
+ "inputSchema": {
7962
+ "type": "object",
7963
+ "required": [
7964
+ "name",
7965
+ "email",
7966
+ "tenantId",
7967
+ "formId"
7968
+ ],
7969
+ "properties": {
7970
+ "tenantId": {
7971
+ "type": "string"
7972
+ },
7973
+ "formId": {
7974
+ "type": "string"
7975
+ },
7976
+ "name": {
7977
+ "type": "string"
7978
+ },
7979
+ "email": {
7980
+ "type": "string"
7981
+ },
7982
+ "phone": {
7983
+ "type": "string"
7984
+ },
7985
+ "files": {
7986
+ "type": "array",
7987
+ "items": {
7988
+ "type": "object",
7989
+ "properties": {
7990
+ "fileKey": {
7991
+ "type": "string"
7992
+ },
7993
+ "originalFilename": {
7994
+ "type": "string"
7995
+ }
7996
+ }
7997
+ }
7998
+ },
7999
+ "fields": {
8000
+ "type": "object"
8001
+ },
8002
+ "language": {
8003
+ "type": "string"
8004
+ },
8005
+ "jobId": {
8006
+ "type": "string"
8007
+ },
8008
+ "referral": {
8009
+ "type": "object",
8010
+ "properties": {
8011
+ "referrerName": {
8012
+ "type": "string"
8013
+ },
8014
+ "referrerEmail": {
8015
+ "type": "string"
8016
+ },
8017
+ "relationship": {
8018
+ "type": "string"
8019
+ },
8020
+ "note": {
8021
+ "type": "string"
8022
+ }
8023
+ }
8024
+ },
8025
+ "consentCurrent": {
8026
+ "type": "boolean"
8027
+ },
8028
+ "consentFuture": {
8029
+ "type": "boolean"
8030
+ }
8031
+ }
8032
+ },
8033
+ "_meta": {
8034
+ "method": "POST",
8035
+ "path": "/v1/guest/submissions",
8036
+ "operationId": "createGuestSubmission"
8037
+ }
8038
+ },
8039
+ {
8040
+ "name": "guest_submissions_options",
8041
+ "description": "Guest Submissions Options",
8042
+ "inputSchema": {
8043
+ "type": "object",
8044
+ "properties": {}
8045
+ },
8046
+ "_meta": {
8047
+ "method": "OPTIONS",
8048
+ "path": "/v1/guest/submissions",
8049
+ "operationId": "guestSubmissionsOptions"
8050
+ }
8051
+ },
8052
+ {
8053
+ "name": "upload_guest_submission_file",
8054
+ "description": "Upload Submission File (Guest)",
8055
+ "inputSchema": {
8056
+ "type": "object",
8057
+ "required": [
8058
+ "fileName",
8059
+ "contentType",
8060
+ "tenantId",
8061
+ "formId"
8062
+ ],
8063
+ "properties": {
8064
+ "fileName": {
8065
+ "type": "string"
8066
+ },
8067
+ "contentType": {
8068
+ "type": "string"
8069
+ },
8070
+ "tenantId": {
8071
+ "type": "string"
8072
+ },
8073
+ "formId": {
8074
+ "type": "string"
8075
+ }
8076
+ }
8077
+ },
8078
+ "_meta": {
8079
+ "method": "POST",
8080
+ "path": "/v1/guest/submissions/uploads",
8081
+ "operationId": "uploadGuestSubmissionFile"
8082
+ }
8083
+ },
8084
+ {
8085
+ "name": "guest_submission_uploads_options",
8086
+ "description": "Guest Submission Uploads Options",
8087
+ "inputSchema": {
8088
+ "type": "object",
8089
+ "properties": {}
8090
+ },
8091
+ "_meta": {
8092
+ "method": "OPTIONS",
8093
+ "path": "/v1/guest/submissions/uploads",
8094
+ "operationId": "guestSubmissionUploadsOptions"
8095
+ }
8096
+ },
8097
+ {
8098
+ "name": "show_submission",
8099
+ "description": "Show Submission",
8100
+ "inputSchema": {
8101
+ "type": "object",
8102
+ "properties": {
8103
+ "submissionId": {
8104
+ "type": "string",
8105
+ "description": "submissionId parameter"
8106
+ }
8107
+ },
8108
+ "required": [
8109
+ "submissionId"
8110
+ ]
8111
+ },
8112
+ "_meta": {
8113
+ "method": "GET",
8114
+ "path": "/v1/submissions/{submissionId}",
8115
+ "operationId": "showSubmission"
8116
+ }
8117
+ },
8118
+ {
8119
+ "name": "update_submission",
8120
+ "description": "Update Submission",
8121
+ "inputSchema": {
8122
+ "type": "object",
8123
+ "properties": {
8124
+ "submissionId": {
8125
+ "type": "string",
8126
+ "description": "submissionId parameter"
8127
+ },
8128
+ "requestBody": {
8129
+ "title": "UpdateSubmissionRequestBody",
8130
+ "type": "object",
8131
+ "required": [
8132
+ "data"
8133
+ ],
8134
+ "properties": {
8135
+ "data": {
8136
+ "title": "UpdateSubmissionRequestBodyData",
8137
+ "type": "object",
8138
+ "required": [
8139
+ "type",
8140
+ "id",
8141
+ "attributes"
8142
+ ],
8143
+ "properties": {
8144
+ "type": {
8145
+ "type": "string",
8146
+ "enum": [
8147
+ "submissions"
8148
+ ]
8149
+ },
8150
+ "id": {
8151
+ "type": "string"
8152
+ },
8153
+ "attributes": {
8154
+ "title": "SubmissionAttributesSchema",
8155
+ "type": "object",
8156
+ "required": [
8157
+ "name",
8158
+ "email"
8159
+ ],
8160
+ "properties": {
8161
+ "name": {
8162
+ "type": "string"
8163
+ },
8164
+ "email": {
8165
+ "type": "string"
8166
+ },
8167
+ "phone": {
8168
+ "type": "string"
8169
+ },
8170
+ "source": {
8171
+ "type": "string",
8172
+ "enum": [
8173
+ "form",
8174
+ "email",
8175
+ "call",
8176
+ "api"
8177
+ ]
8178
+ },
8179
+ "status": {
8180
+ "type": "string",
8181
+ "enum": [
8182
+ "received",
8183
+ "processing",
8184
+ "processed",
8185
+ "failed"
8186
+ ]
8187
+ },
8188
+ "language": {
8189
+ "type": "string"
8190
+ },
8191
+ "fields": {
8192
+ "type": "object",
8193
+ "description": "Custom form field answers keyed by field identifier"
8194
+ },
8195
+ "files": {
8196
+ "type": "array",
8197
+ "items": {
8198
+ "type": "object",
8199
+ "properties": {
8200
+ "key": {
8201
+ "type": "string"
8202
+ },
8203
+ "bucket": {
8204
+ "type": "string"
8205
+ },
8206
+ "name": {
8207
+ "type": "string"
8208
+ },
8209
+ "contentType": {
8210
+ "type": "string"
8211
+ }
8212
+ }
8213
+ }
8214
+ },
8215
+ "referral": {
8216
+ "type": "object",
8217
+ "properties": {
8218
+ "referrerName": {
8219
+ "type": "string"
8220
+ },
8221
+ "referrerEmail": {
8222
+ "type": "string"
8223
+ },
8224
+ "relationship": {
8225
+ "type": "string"
8226
+ },
8227
+ "note": {
8228
+ "type": "string"
8229
+ }
8230
+ }
8231
+ },
8232
+ "consent": {
8233
+ "type": "object",
8234
+ "properties": {
8235
+ "current": {
8236
+ "type": "boolean"
8237
+ },
8238
+ "future": {
8239
+ "type": "boolean"
8240
+ }
8241
+ }
8242
+ },
8243
+ "timestamps": {
8244
+ "title": "ResourceTimestampsSchema",
8245
+ "type": "object",
8246
+ "properties": {
8247
+ "created": {
8248
+ "type": "string",
8249
+ "format": "date-time"
8250
+ },
8251
+ "modified": {
8252
+ "type": "string",
8253
+ "format": "date-time"
8254
+ }
8255
+ }
8256
+ }
8257
+ }
8258
+ },
8259
+ "relationships": {
8260
+ "title": "SubmissionRelationshipsSchema",
8261
+ "type": "object",
8262
+ "properties": {
8263
+ "forms": {
8264
+ "title": "SubmissionRelationshipsFormsSchema",
8265
+ "type": "object",
8266
+ "properties": {
8267
+ "data": {
8268
+ "type": "array",
8269
+ "items": {
8270
+ "type": "object",
8271
+ "properties": {
8272
+ "type": {
8273
+ "type": "string"
8274
+ },
8275
+ "id": {
8276
+ "type": "string"
8277
+ }
8278
+ }
8279
+ }
8280
+ }
8281
+ }
8282
+ },
8283
+ "jobs": {
8284
+ "title": "SubmissionRelationshipsJobsSchema",
8285
+ "type": "object",
8286
+ "properties": {
8287
+ "data": {
8288
+ "type": "array",
8289
+ "items": {
8290
+ "type": "object",
8291
+ "properties": {
8292
+ "type": {
8293
+ "type": "string"
8294
+ },
8295
+ "id": {
8296
+ "type": "string"
8297
+ }
8298
+ }
8299
+ }
8300
+ }
8301
+ }
8302
+ },
8303
+ "talents": {
8304
+ "title": "SubmissionRelationshipsTalentsSchema",
8305
+ "type": "object",
8306
+ "properties": {
8307
+ "data": {
8308
+ "type": "array",
8309
+ "items": {
8310
+ "type": "object",
8311
+ "properties": {
8312
+ "type": {
8313
+ "type": "string"
8314
+ },
8315
+ "id": {
8316
+ "type": "string"
8317
+ }
8318
+ }
8319
+ }
8320
+ }
8321
+ }
8322
+ },
8323
+ "candidates": {
8324
+ "title": "SubmissionRelationshipsCandidatesSchema",
8325
+ "type": "object",
8326
+ "properties": {
8327
+ "data": {
8328
+ "type": "array",
8329
+ "items": {
8330
+ "type": "object",
8331
+ "properties": {
8332
+ "type": {
8333
+ "type": "string"
8334
+ },
8335
+ "id": {
8336
+ "type": "string"
8337
+ }
8338
+ }
8339
+ }
8340
+ }
8341
+ }
8342
+ }
8343
+ }
8344
+ }
8345
+ }
8346
+ }
8347
+ }
8348
+ }
8349
+ },
8350
+ "required": [
8351
+ "submissionId",
8352
+ "requestBody"
8353
+ ]
8354
+ },
8355
+ "_meta": {
8356
+ "method": "PATCH",
8357
+ "path": "/v1/submissions/{submissionId}",
8358
+ "operationId": "updateSubmission"
8359
+ }
8360
+ },
8361
+ {
8362
+ "name": "delete_submission",
8363
+ "description": "Delete Submission",
8364
+ "inputSchema": {
8365
+ "type": "object",
8366
+ "properties": {
8367
+ "submissionId": {
8368
+ "type": "string",
8369
+ "description": "submissionId parameter"
8370
+ },
8371
+ "permanentDelete": {
8372
+ "type": "string",
8373
+ "description": "Set to true for permanent deletion.",
8374
+ "enum": [
8375
+ "true",
8376
+ "false"
8377
+ ]
8378
+ }
8379
+ },
8380
+ "required": [
8381
+ "submissionId"
8382
+ ]
8383
+ },
8384
+ "_meta": {
8385
+ "method": "DELETE",
8386
+ "path": "/v1/submissions/{submissionId}",
8387
+ "operationId": "deleteSubmission"
8388
+ }
8389
+ },
8390
+ {
8391
+ "name": "submission_options",
8392
+ "description": "Submission Options",
8393
+ "inputSchema": {
8394
+ "type": "object",
8395
+ "properties": {}
8396
+ },
8397
+ "_meta": {
8398
+ "method": "OPTIONS",
8399
+ "path": "/v1/submissions/{submissionId}",
8400
+ "operationId": "submissionOptions"
8401
+ }
8402
+ },
8403
+ {
8404
+ "name": "create_brief",
8405
+ "description": "Create Brief",
8406
+ "inputSchema": {
8407
+ "title": "CreateBriefRequestBody",
7177
8408
  "type": "object",
7178
8409
  "required": [
7179
8410
  "data"
7180
8411
  ],
7181
8412
  "properties": {
7182
8413
  "data": {
7183
- "title": "CreateSubmissionRequestBodyData",
8414
+ "title": "CreateBriefRequestBodyData",
7184
8415
  "type": "object",
7185
8416
  "required": [
7186
8417
  "type",
@@ -7190,24 +8421,20 @@
7190
8421
  "type": {
7191
8422
  "type": "string",
7192
8423
  "enum": [
7193
- "submissions"
8424
+ "briefs"
7194
8425
  ]
7195
8426
  },
7196
8427
  "attributes": {
7197
- "title": "SubmissionAttributesSchema",
8428
+ "title": "BriefAttributesSchema",
7198
8429
  "type": "object",
7199
8430
  "required": [
7200
- "name",
7201
- "email"
8431
+ "title"
7202
8432
  ],
7203
8433
  "properties": {
7204
- "name": {
7205
- "type": "string"
7206
- },
7207
- "email": {
8434
+ "title": {
7208
8435
  "type": "string"
7209
8436
  },
7210
- "phone": {
8437
+ "description": {
7211
8438
  "type": "string"
7212
8439
  },
7213
8440
  "source": {
@@ -7216,6 +8443,8 @@
7216
8443
  "form",
7217
8444
  "email",
7218
8445
  "call",
8446
+ "sms",
8447
+ "ats",
7219
8448
  "api"
7220
8449
  ]
7221
8450
  },
@@ -7255,34 +8484,6 @@
7255
8484
  }
7256
8485
  }
7257
8486
  },
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
8487
  "timestamps": {
7287
8488
  "title": "ResourceTimestampsSchema",
7288
8489
  "type": "object",
@@ -7296,35 +8497,15 @@
7296
8497
  "format": "date-time"
7297
8498
  }
7298
8499
  }
7299
- }
7300
- }
7301
- },
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",
8500
+ }
8501
+ }
8502
+ },
8503
+ "relationships": {
8504
+ "title": "BriefRelationshipsSchema",
8505
+ "type": "object",
8506
+ "properties": {
8507
+ "forms": {
8508
+ "title": "BriefRelationshipsFormsSchema",
7328
8509
  "type": "object",
7329
8510
  "properties": {
7330
8511
  "data": {
@@ -7343,8 +8524,8 @@
7343
8524
  }
7344
8525
  }
7345
8526
  },
7346
- "talents": {
7347
- "title": "SubmissionRelationshipsTalentsSchema",
8527
+ "jobs": {
8528
+ "title": "BriefRelationshipsJobsSchema",
7348
8529
  "type": "object",
7349
8530
  "properties": {
7350
8531
  "data": {
@@ -7363,8 +8544,8 @@
7363
8544
  }
7364
8545
  }
7365
8546
  },
7366
- "candidates": {
7367
- "title": "SubmissionRelationshipsCandidatesSchema",
8547
+ "users": {
8548
+ "title": "BriefRelationshipsUsersSchema",
7368
8549
  "type": "object",
7369
8550
  "properties": {
7370
8551
  "data": {
@@ -7391,19 +8572,19 @@
7391
8572
  },
7392
8573
  "_meta": {
7393
8574
  "method": "POST",
7394
- "path": "/v1/submissions",
7395
- "operationId": "createSubmission"
8575
+ "path": "/v1/briefs",
8576
+ "operationId": "createBrief"
7396
8577
  }
7397
8578
  },
7398
8579
  {
7399
- "name": "list_submissions",
7400
- "description": "List Submissions",
8580
+ "name": "list_briefs",
8581
+ "description": "List Briefs",
7401
8582
  "inputSchema": {
7402
8583
  "type": "object",
7403
8584
  "properties": {
7404
8585
  "filterStatus": {
7405
8586
  "type": "string",
7406
- "description": "Returns submissions with the current status.",
8587
+ "description": "Returns briefs with the current status.",
7407
8588
  "enum": [
7408
8589
  "received",
7409
8590
  "processing",
@@ -7411,9 +8592,17 @@
7411
8592
  "failed"
7412
8593
  ]
7413
8594
  },
7414
- "filterEmail": {
8595
+ "filterSource": {
7415
8596
  "type": "string",
7416
- "description": "Filter submissions by email address."
8597
+ "description": "Filter briefs by source channel.",
8598
+ "enum": [
8599
+ "form",
8600
+ "email",
8601
+ "call",
8602
+ "sms",
8603
+ "ats",
8604
+ "api"
8605
+ ]
7417
8606
  },
7418
8607
  "filterCreatedFrom": {
7419
8608
  "type": "string",
@@ -7451,202 +8640,63 @@
7451
8640
  },
7452
8641
  "_meta": {
7453
8642
  "method": "GET",
7454
- "path": "/v1/submissions",
7455
- "operationId": "listSubmissions"
7456
- }
7457
- },
7458
- {
7459
- "name": "submissions_options",
7460
- "description": "Submissions Options",
7461
- "inputSchema": {
7462
- "type": "object",
7463
- "properties": {}
7464
- },
7465
- "_meta": {
7466
- "method": "OPTIONS",
7467
- "path": "/v1/submissions",
7468
- "operationId": "submissionsOptions"
7469
- }
7470
- },
7471
- {
7472
- "name": "create_guest_submission",
7473
- "description": "Create Submission (Guest)",
7474
- "inputSchema": {
7475
- "type": "object",
7476
- "required": [
7477
- "name",
7478
- "email",
7479
- "tenantId",
7480
- "formId"
7481
- ],
7482
- "properties": {
7483
- "tenantId": {
7484
- "type": "string"
7485
- },
7486
- "formId": {
7487
- "type": "string"
7488
- },
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": {
7522
- "type": "object",
7523
- "properties": {
7524
- "referrerName": {
7525
- "type": "string"
7526
- },
7527
- "referrerEmail": {
7528
- "type": "string"
7529
- },
7530
- "relationship": {
7531
- "type": "string"
7532
- },
7533
- "note": {
7534
- "type": "string"
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"
8643
+ "path": "/v1/briefs",
8644
+ "operationId": "listBriefs"
7595
8645
  }
7596
8646
  },
7597
8647
  {
7598
- "name": "guest_submission_uploads_options",
7599
- "description": "Guest Submission Uploads Options",
8648
+ "name": "briefs_options",
8649
+ "description": "Briefs Options",
7600
8650
  "inputSchema": {
7601
8651
  "type": "object",
7602
8652
  "properties": {}
7603
8653
  },
7604
8654
  "_meta": {
7605
8655
  "method": "OPTIONS",
7606
- "path": "/v1/guest/submissions/uploads",
7607
- "operationId": "guestSubmissionUploadsOptions"
8656
+ "path": "/v1/briefs",
8657
+ "operationId": "briefsOptions"
7608
8658
  }
7609
8659
  },
7610
8660
  {
7611
- "name": "show_submission",
7612
- "description": "Show Submission",
8661
+ "name": "show_brief",
8662
+ "description": "Show Brief",
7613
8663
  "inputSchema": {
7614
8664
  "type": "object",
7615
8665
  "properties": {
7616
- "submissionId": {
8666
+ "briefId": {
7617
8667
  "type": "string",
7618
- "description": "submissionId parameter"
8668
+ "description": "briefId parameter"
7619
8669
  }
7620
8670
  },
7621
8671
  "required": [
7622
- "submissionId"
8672
+ "briefId"
7623
8673
  ]
7624
8674
  },
7625
8675
  "_meta": {
7626
8676
  "method": "GET",
7627
- "path": "/v1/submissions/{submissionId}",
7628
- "operationId": "showSubmission"
8677
+ "path": "/v1/briefs/{briefId}",
8678
+ "operationId": "showBrief"
7629
8679
  }
7630
8680
  },
7631
8681
  {
7632
- "name": "update_submission",
7633
- "description": "Update Submission",
8682
+ "name": "update_brief",
8683
+ "description": "Update Brief",
7634
8684
  "inputSchema": {
7635
8685
  "type": "object",
7636
8686
  "properties": {
7637
- "submissionId": {
8687
+ "briefId": {
7638
8688
  "type": "string",
7639
- "description": "submissionId parameter"
8689
+ "description": "briefId parameter"
7640
8690
  },
7641
8691
  "requestBody": {
7642
- "title": "UpdateSubmissionRequestBody",
8692
+ "title": "UpdateBriefRequestBody",
7643
8693
  "type": "object",
7644
8694
  "required": [
7645
8695
  "data"
7646
8696
  ],
7647
8697
  "properties": {
7648
8698
  "data": {
7649
- "title": "UpdateSubmissionRequestBodyData",
8699
+ "title": "UpdateBriefRequestBodyData",
7650
8700
  "type": "object",
7651
8701
  "required": [
7652
8702
  "type",
@@ -7657,27 +8707,23 @@
7657
8707
  "type": {
7658
8708
  "type": "string",
7659
8709
  "enum": [
7660
- "submissions"
8710
+ "briefs"
7661
8711
  ]
7662
8712
  },
7663
8713
  "id": {
7664
8714
  "type": "string"
7665
8715
  },
7666
8716
  "attributes": {
7667
- "title": "SubmissionAttributesSchema",
8717
+ "title": "BriefAttributesSchema",
7668
8718
  "type": "object",
7669
8719
  "required": [
7670
- "name",
7671
- "email"
8720
+ "title"
7672
8721
  ],
7673
8722
  "properties": {
7674
- "name": {
7675
- "type": "string"
7676
- },
7677
- "email": {
8723
+ "title": {
7678
8724
  "type": "string"
7679
8725
  },
7680
- "phone": {
8726
+ "description": {
7681
8727
  "type": "string"
7682
8728
  },
7683
8729
  "source": {
@@ -7686,6 +8732,8 @@
7686
8732
  "form",
7687
8733
  "email",
7688
8734
  "call",
8735
+ "sms",
8736
+ "ats",
7689
8737
  "api"
7690
8738
  ]
7691
8739
  },
@@ -7725,34 +8773,6 @@
7725
8773
  }
7726
8774
  }
7727
8775
  },
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
8776
  "timestamps": {
7757
8777
  "title": "ResourceTimestampsSchema",
7758
8778
  "type": "object",
@@ -7770,11 +8790,11 @@
7770
8790
  }
7771
8791
  },
7772
8792
  "relationships": {
7773
- "title": "SubmissionRelationshipsSchema",
8793
+ "title": "BriefRelationshipsSchema",
7774
8794
  "type": "object",
7775
8795
  "properties": {
7776
8796
  "forms": {
7777
- "title": "SubmissionRelationshipsFormsSchema",
8797
+ "title": "BriefRelationshipsFormsSchema",
7778
8798
  "type": "object",
7779
8799
  "properties": {
7780
8800
  "data": {
@@ -7794,27 +8814,7 @@
7794
8814
  }
7795
8815
  },
7796
8816
  "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",
8817
+ "title": "BriefRelationshipsJobsSchema",
7818
8818
  "type": "object",
7819
8819
  "properties": {
7820
8820
  "data": {
@@ -7833,8 +8833,8 @@
7833
8833
  }
7834
8834
  }
7835
8835
  },
7836
- "candidates": {
7837
- "title": "SubmissionRelationshipsCandidatesSchema",
8836
+ "users": {
8837
+ "title": "BriefRelationshipsUsersSchema",
7838
8838
  "type": "object",
7839
8839
  "properties": {
7840
8840
  "data": {
@@ -7861,25 +8861,25 @@
7861
8861
  }
7862
8862
  },
7863
8863
  "required": [
7864
- "submissionId",
8864
+ "briefId",
7865
8865
  "requestBody"
7866
8866
  ]
7867
8867
  },
7868
8868
  "_meta": {
7869
8869
  "method": "PATCH",
7870
- "path": "/v1/submissions/{submissionId}",
7871
- "operationId": "updateSubmission"
8870
+ "path": "/v1/briefs/{briefId}",
8871
+ "operationId": "updateBrief"
7872
8872
  }
7873
8873
  },
7874
8874
  {
7875
- "name": "delete_submission",
7876
- "description": "Delete Submission",
8875
+ "name": "delete_brief",
8876
+ "description": "Delete Brief",
7877
8877
  "inputSchema": {
7878
8878
  "type": "object",
7879
8879
  "properties": {
7880
- "submissionId": {
8880
+ "briefId": {
7881
8881
  "type": "string",
7882
- "description": "submissionId parameter"
8882
+ "description": "briefId parameter"
7883
8883
  },
7884
8884
  "permanentDelete": {
7885
8885
  "type": "string",
@@ -7891,26 +8891,26 @@
7891
8891
  }
7892
8892
  },
7893
8893
  "required": [
7894
- "submissionId"
8894
+ "briefId"
7895
8895
  ]
7896
8896
  },
7897
8897
  "_meta": {
7898
8898
  "method": "DELETE",
7899
- "path": "/v1/submissions/{submissionId}",
7900
- "operationId": "deleteSubmission"
8899
+ "path": "/v1/briefs/{briefId}",
8900
+ "operationId": "deleteBrief"
7901
8901
  }
7902
8902
  },
7903
8903
  {
7904
- "name": "submission_options",
7905
- "description": "Submission Options",
8904
+ "name": "brief_options",
8905
+ "description": "Brief Options",
7906
8906
  "inputSchema": {
7907
8907
  "type": "object",
7908
8908
  "properties": {}
7909
8909
  },
7910
8910
  "_meta": {
7911
8911
  "method": "OPTIONS",
7912
- "path": "/v1/submissions/{submissionId}",
7913
- "operationId": "submissionOptions"
8912
+ "path": "/v1/briefs/{briefId}",
8913
+ "operationId": "briefOptions"
7914
8914
  }
7915
8915
  },
7916
8916
  {