@snokam/mcp-api 0.95.5 → 0.95.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snokam/mcp-api",
3
- "version": "0.95.5",
3
+ "version": "0.95.7",
4
4
  "description": "MCP server exposing Snokam backend APIs as tools for Claude Code and other MCP clients",
5
5
  "type": "module",
6
6
  "bin": {
@@ -226,11 +226,11 @@
226
226
  }
227
227
  ],
228
228
  "requestBody": {
229
- "description": "Partial candidate fields to update",
229
+ "description": "Partial candidate fields to update, plus an optional interviewBooking sub-payload that triggers events-function event creation when status moves to an *_INTERVIEW value",
230
230
  "content": {
231
231
  "application/json": {
232
232
  "schema": {
233
- "$ref": "#/components/schemas/sanityPatchCandidate"
233
+ "$ref": "#/components/schemas/patchCandidateRequestBody"
234
234
  }
235
235
  }
236
236
  },
@@ -2202,6 +2202,49 @@
2202
2202
  }
2203
2203
  }
2204
2204
  },
2205
+ "interviewBookingBody": {
2206
+ "type": "object",
2207
+ "properties": {
2208
+ "scheduledAt": {
2209
+ "type": "string",
2210
+ "nullable": true
2211
+ },
2212
+ "place": {
2213
+ "type": "string",
2214
+ "nullable": true
2215
+ },
2216
+ "eventTypeId": {
2217
+ "type": "string",
2218
+ "nullable": true
2219
+ },
2220
+ "durationMinutes": {
2221
+ "type": "integer",
2222
+ "format": "int32",
2223
+ "nullable": true
2224
+ },
2225
+ "interviewers": {
2226
+ "type": "array",
2227
+ "items": {
2228
+ "$ref": "#/components/schemas/interviewParticipantBody"
2229
+ },
2230
+ "nullable": true
2231
+ }
2232
+ },
2233
+ "nullable": true
2234
+ },
2235
+ "interviewParticipantBody": {
2236
+ "type": "object",
2237
+ "properties": {
2238
+ "sanityId": {
2239
+ "type": "string",
2240
+ "nullable": true
2241
+ },
2242
+ "email": {
2243
+ "type": "string",
2244
+ "nullable": true
2245
+ }
2246
+ }
2247
+ },
2205
2248
  "issueCandidatePinRequest": {
2206
2249
  "type": "object",
2207
2250
  "properties": {
@@ -2333,6 +2376,183 @@
2333
2376
  }
2334
2377
  }
2335
2378
  },
2379
+ "patchCandidateRequestBody": {
2380
+ "type": "object",
2381
+ "properties": {
2382
+ "interviewBooking": {
2383
+ "$ref": "#/components/schemas/interviewBookingBody"
2384
+ },
2385
+ "sanityType": {
2386
+ "enum": [
2387
+ "candidate"
2388
+ ],
2389
+ "type": "string",
2390
+ "default": "candidate",
2391
+ "nullable": true
2392
+ },
2393
+ "status": {
2394
+ "enum": [
2395
+ "CREATED",
2396
+ "INTRODUCTION_INTERVIEW",
2397
+ "TECHNICAL_INTERVIEW",
2398
+ "SALES_INTERVIEW",
2399
+ "OFFER",
2400
+ "SIGNED",
2401
+ "ONBOARDING",
2402
+ "USER_CREATION_REVIEW",
2403
+ "OFFBOARDING",
2404
+ "REJECTED"
2405
+ ],
2406
+ "type": "string",
2407
+ "default": "CREATED",
2408
+ "nullable": true
2409
+ },
2410
+ "address": {
2411
+ "$ref": "#/components/schemas/sanityPatchCandidateAddress"
2412
+ },
2413
+ "allergies": {
2414
+ "type": "array",
2415
+ "items": {
2416
+ "type": "string"
2417
+ }
2418
+ },
2419
+ "applicationLetter": {
2420
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
2421
+ },
2422
+ "applicationOther": {
2423
+ "type": "string"
2424
+ },
2425
+ "bankAccount": {
2426
+ "type": "string"
2427
+ },
2428
+ "birthDate": {
2429
+ "type": "string"
2430
+ },
2431
+ "buddy": {
2432
+ "$ref": "#/components/schemas/employeeReference"
2433
+ },
2434
+ "candidate": {
2435
+ "type": "string"
2436
+ },
2437
+ "contractPdf": {
2438
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
2439
+ },
2440
+ "contractSignDate": {
2441
+ "type": "string"
2442
+ },
2443
+ "contractSigner": {
2444
+ "$ref": "#/components/schemas/employeeReference"
2445
+ },
2446
+ "contractSignerRole": {
2447
+ "type": "string"
2448
+ },
2449
+ "cv": {
2450
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
2451
+ },
2452
+ "education": {
2453
+ "type": "string"
2454
+ },
2455
+ "email": {
2456
+ "type": "string"
2457
+ },
2458
+ "employee": {
2459
+ "$ref": "#/components/schemas/employeeReference"
2460
+ },
2461
+ "fromApplication": {
2462
+ "type": "boolean",
2463
+ "nullable": true
2464
+ },
2465
+ "githubUsername": {
2466
+ "type": "string"
2467
+ },
2468
+ "grades": {
2469
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
2470
+ },
2471
+ "interviews": {
2472
+ "type": "array",
2473
+ "items": {
2474
+ "$ref": "#/components/schemas/sanityPatchCandidateInterviewsInner"
2475
+ }
2476
+ },
2477
+ "jobPosition": {
2478
+ "$ref": "#/components/schemas/jobPositionReference"
2479
+ },
2480
+ "offboardingChecklist": {
2481
+ "type": "array",
2482
+ "items": {
2483
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
2484
+ }
2485
+ },
2486
+ "offerPdf": {
2487
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
2488
+ },
2489
+ "onboardingChecklist": {
2490
+ "type": "array",
2491
+ "items": {
2492
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
2493
+ }
2494
+ },
2495
+ "ownership": {
2496
+ "type": "number",
2497
+ "format": "double",
2498
+ "nullable": true
2499
+ },
2500
+ "personalNumber": {
2501
+ "type": "string"
2502
+ },
2503
+ "pin": {
2504
+ "type": "string"
2505
+ },
2506
+ "preferredDisplayName": {
2507
+ "type": "string"
2508
+ },
2509
+ "preferredEmail": {
2510
+ "type": "string"
2511
+ },
2512
+ "profileImage": {
2513
+ "$ref": "#/components/schemas/sanityPatchPageMetaImage"
2514
+ },
2515
+ "recruiter": {
2516
+ "$ref": "#/components/schemas/employeeReference"
2517
+ },
2518
+ "references": {
2519
+ "type": "array",
2520
+ "items": {
2521
+ "$ref": "#/components/schemas/sanityCandidateReferencesInner"
2522
+ }
2523
+ },
2524
+ "shortUrl": {
2525
+ "type": "string"
2526
+ },
2527
+ "signedContract": {
2528
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
2529
+ },
2530
+ "snapchatUsername": {
2531
+ "type": "string"
2532
+ },
2533
+ "startDate": {
2534
+ "type": "string"
2535
+ },
2536
+ "systemsActive": {
2537
+ "type": "array",
2538
+ "items": {
2539
+ "$ref": "#/components/schemas/sanityPatchCandidateSystemsActiveInner"
2540
+ }
2541
+ },
2542
+ "telephone": {
2543
+ "type": "string"
2544
+ },
2545
+ "url": {
2546
+ "type": "string"
2547
+ },
2548
+ "additionalProperties": {
2549
+ "type": "object",
2550
+ "additionalProperties": {
2551
+ "type": "object"
2552
+ }
2553
+ }
2554
+ }
2555
+ },
2336
2556
  "rejectCandidateMessage": {
2337
2557
  "type": "object",
2338
2558
  "properties": {
@@ -3148,180 +3368,6 @@
3148
3368
  }
3149
3369
  }
3150
3370
  },
3151
- "sanityPatchCandidate": {
3152
- "type": "object",
3153
- "properties": {
3154
- "sanityType": {
3155
- "enum": [
3156
- "candidate"
3157
- ],
3158
- "type": "string",
3159
- "default": "candidate",
3160
- "nullable": true
3161
- },
3162
- "status": {
3163
- "enum": [
3164
- "CREATED",
3165
- "INTRODUCTION_INTERVIEW",
3166
- "TECHNICAL_INTERVIEW",
3167
- "SALES_INTERVIEW",
3168
- "OFFER",
3169
- "SIGNED",
3170
- "ONBOARDING",
3171
- "USER_CREATION_REVIEW",
3172
- "OFFBOARDING",
3173
- "REJECTED"
3174
- ],
3175
- "type": "string",
3176
- "default": "CREATED",
3177
- "nullable": true
3178
- },
3179
- "address": {
3180
- "$ref": "#/components/schemas/sanityPatchCandidateAddress"
3181
- },
3182
- "allergies": {
3183
- "type": "array",
3184
- "items": {
3185
- "type": "string"
3186
- }
3187
- },
3188
- "applicationLetter": {
3189
- "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3190
- },
3191
- "applicationOther": {
3192
- "type": "string"
3193
- },
3194
- "bankAccount": {
3195
- "type": "string"
3196
- },
3197
- "birthDate": {
3198
- "type": "string"
3199
- },
3200
- "buddy": {
3201
- "$ref": "#/components/schemas/employeeReference"
3202
- },
3203
- "candidate": {
3204
- "type": "string"
3205
- },
3206
- "contractPdf": {
3207
- "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3208
- },
3209
- "contractSignDate": {
3210
- "type": "string"
3211
- },
3212
- "contractSigner": {
3213
- "$ref": "#/components/schemas/employeeReference"
3214
- },
3215
- "contractSignerRole": {
3216
- "type": "string"
3217
- },
3218
- "cv": {
3219
- "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3220
- },
3221
- "education": {
3222
- "type": "string"
3223
- },
3224
- "email": {
3225
- "type": "string"
3226
- },
3227
- "employee": {
3228
- "$ref": "#/components/schemas/employeeReference"
3229
- },
3230
- "fromApplication": {
3231
- "type": "boolean",
3232
- "nullable": true
3233
- },
3234
- "githubUsername": {
3235
- "type": "string"
3236
- },
3237
- "grades": {
3238
- "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3239
- },
3240
- "interviews": {
3241
- "type": "array",
3242
- "items": {
3243
- "$ref": "#/components/schemas/sanityPatchCandidateInterviewsInner"
3244
- }
3245
- },
3246
- "jobPosition": {
3247
- "$ref": "#/components/schemas/jobPositionReference"
3248
- },
3249
- "offboardingChecklist": {
3250
- "type": "array",
3251
- "items": {
3252
- "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
3253
- }
3254
- },
3255
- "offerPdf": {
3256
- "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3257
- },
3258
- "onboardingChecklist": {
3259
- "type": "array",
3260
- "items": {
3261
- "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
3262
- }
3263
- },
3264
- "ownership": {
3265
- "type": "number",
3266
- "format": "double",
3267
- "nullable": true
3268
- },
3269
- "personalNumber": {
3270
- "type": "string"
3271
- },
3272
- "pin": {
3273
- "type": "string"
3274
- },
3275
- "preferredDisplayName": {
3276
- "type": "string"
3277
- },
3278
- "preferredEmail": {
3279
- "type": "string"
3280
- },
3281
- "profileImage": {
3282
- "$ref": "#/components/schemas/sanityPatchPageMetaImage"
3283
- },
3284
- "recruiter": {
3285
- "$ref": "#/components/schemas/employeeReference"
3286
- },
3287
- "references": {
3288
- "type": "array",
3289
- "items": {
3290
- "$ref": "#/components/schemas/sanityCandidateReferencesInner"
3291
- }
3292
- },
3293
- "shortUrl": {
3294
- "type": "string"
3295
- },
3296
- "signedContract": {
3297
- "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3298
- },
3299
- "snapchatUsername": {
3300
- "type": "string"
3301
- },
3302
- "startDate": {
3303
- "type": "string"
3304
- },
3305
- "systemsActive": {
3306
- "type": "array",
3307
- "items": {
3308
- "$ref": "#/components/schemas/sanityPatchCandidateSystemsActiveInner"
3309
- }
3310
- },
3311
- "telephone": {
3312
- "type": "string"
3313
- },
3314
- "url": {
3315
- "type": "string"
3316
- },
3317
- "additionalProperties": {
3318
- "type": "object",
3319
- "additionalProperties": {
3320
- "type": "object"
3321
- }
3322
- }
3323
- }
3324
- },
3325
3371
  "sanityPatchCandidateAddress": {
3326
3372
  "type": "object",
3327
3373
  "properties": {
@@ -226,11 +226,11 @@
226
226
  }
227
227
  ],
228
228
  "requestBody": {
229
- "description": "Partial candidate fields to update",
229
+ "description": "Partial candidate fields to update, plus an optional interviewBooking sub-payload that triggers events-function event creation when status moves to an *_INTERVIEW value",
230
230
  "content": {
231
231
  "application/json": {
232
232
  "schema": {
233
- "$ref": "#/components/schemas/sanityPatchCandidate"
233
+ "$ref": "#/components/schemas/patchCandidateRequestBody"
234
234
  }
235
235
  }
236
236
  },
@@ -2202,6 +2202,49 @@
2202
2202
  }
2203
2203
  }
2204
2204
  },
2205
+ "interviewBookingBody": {
2206
+ "type": "object",
2207
+ "properties": {
2208
+ "scheduledAt": {
2209
+ "type": "string",
2210
+ "nullable": true
2211
+ },
2212
+ "place": {
2213
+ "type": "string",
2214
+ "nullable": true
2215
+ },
2216
+ "eventTypeId": {
2217
+ "type": "string",
2218
+ "nullable": true
2219
+ },
2220
+ "durationMinutes": {
2221
+ "type": "integer",
2222
+ "format": "int32",
2223
+ "nullable": true
2224
+ },
2225
+ "interviewers": {
2226
+ "type": "array",
2227
+ "items": {
2228
+ "$ref": "#/components/schemas/interviewParticipantBody"
2229
+ },
2230
+ "nullable": true
2231
+ }
2232
+ },
2233
+ "nullable": true
2234
+ },
2235
+ "interviewParticipantBody": {
2236
+ "type": "object",
2237
+ "properties": {
2238
+ "sanityId": {
2239
+ "type": "string",
2240
+ "nullable": true
2241
+ },
2242
+ "email": {
2243
+ "type": "string",
2244
+ "nullable": true
2245
+ }
2246
+ }
2247
+ },
2205
2248
  "issueCandidatePinRequest": {
2206
2249
  "type": "object",
2207
2250
  "properties": {
@@ -2333,6 +2376,183 @@
2333
2376
  }
2334
2377
  }
2335
2378
  },
2379
+ "patchCandidateRequestBody": {
2380
+ "type": "object",
2381
+ "properties": {
2382
+ "interviewBooking": {
2383
+ "$ref": "#/components/schemas/interviewBookingBody"
2384
+ },
2385
+ "sanityType": {
2386
+ "enum": [
2387
+ "candidate"
2388
+ ],
2389
+ "type": "string",
2390
+ "default": "candidate",
2391
+ "nullable": true
2392
+ },
2393
+ "status": {
2394
+ "enum": [
2395
+ "CREATED",
2396
+ "INTRODUCTION_INTERVIEW",
2397
+ "TECHNICAL_INTERVIEW",
2398
+ "SALES_INTERVIEW",
2399
+ "OFFER",
2400
+ "SIGNED",
2401
+ "ONBOARDING",
2402
+ "USER_CREATION_REVIEW",
2403
+ "OFFBOARDING",
2404
+ "REJECTED"
2405
+ ],
2406
+ "type": "string",
2407
+ "default": "CREATED",
2408
+ "nullable": true
2409
+ },
2410
+ "address": {
2411
+ "$ref": "#/components/schemas/sanityPatchCandidateAddress"
2412
+ },
2413
+ "allergies": {
2414
+ "type": "array",
2415
+ "items": {
2416
+ "type": "string"
2417
+ }
2418
+ },
2419
+ "applicationLetter": {
2420
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
2421
+ },
2422
+ "applicationOther": {
2423
+ "type": "string"
2424
+ },
2425
+ "bankAccount": {
2426
+ "type": "string"
2427
+ },
2428
+ "birthDate": {
2429
+ "type": "string"
2430
+ },
2431
+ "buddy": {
2432
+ "$ref": "#/components/schemas/employeeReference"
2433
+ },
2434
+ "candidate": {
2435
+ "type": "string"
2436
+ },
2437
+ "contractPdf": {
2438
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
2439
+ },
2440
+ "contractSignDate": {
2441
+ "type": "string"
2442
+ },
2443
+ "contractSigner": {
2444
+ "$ref": "#/components/schemas/employeeReference"
2445
+ },
2446
+ "contractSignerRole": {
2447
+ "type": "string"
2448
+ },
2449
+ "cv": {
2450
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
2451
+ },
2452
+ "education": {
2453
+ "type": "string"
2454
+ },
2455
+ "email": {
2456
+ "type": "string"
2457
+ },
2458
+ "employee": {
2459
+ "$ref": "#/components/schemas/employeeReference"
2460
+ },
2461
+ "fromApplication": {
2462
+ "type": "boolean",
2463
+ "nullable": true
2464
+ },
2465
+ "githubUsername": {
2466
+ "type": "string"
2467
+ },
2468
+ "grades": {
2469
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
2470
+ },
2471
+ "interviews": {
2472
+ "type": "array",
2473
+ "items": {
2474
+ "$ref": "#/components/schemas/sanityPatchCandidateInterviewsInner"
2475
+ }
2476
+ },
2477
+ "jobPosition": {
2478
+ "$ref": "#/components/schemas/jobPositionReference"
2479
+ },
2480
+ "offboardingChecklist": {
2481
+ "type": "array",
2482
+ "items": {
2483
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
2484
+ }
2485
+ },
2486
+ "offerPdf": {
2487
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
2488
+ },
2489
+ "onboardingChecklist": {
2490
+ "type": "array",
2491
+ "items": {
2492
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
2493
+ }
2494
+ },
2495
+ "ownership": {
2496
+ "type": "number",
2497
+ "format": "double",
2498
+ "nullable": true
2499
+ },
2500
+ "personalNumber": {
2501
+ "type": "string"
2502
+ },
2503
+ "pin": {
2504
+ "type": "string"
2505
+ },
2506
+ "preferredDisplayName": {
2507
+ "type": "string"
2508
+ },
2509
+ "preferredEmail": {
2510
+ "type": "string"
2511
+ },
2512
+ "profileImage": {
2513
+ "$ref": "#/components/schemas/sanityPatchPageMetaImage"
2514
+ },
2515
+ "recruiter": {
2516
+ "$ref": "#/components/schemas/employeeReference"
2517
+ },
2518
+ "references": {
2519
+ "type": "array",
2520
+ "items": {
2521
+ "$ref": "#/components/schemas/sanityCandidateReferencesInner"
2522
+ }
2523
+ },
2524
+ "shortUrl": {
2525
+ "type": "string"
2526
+ },
2527
+ "signedContract": {
2528
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
2529
+ },
2530
+ "snapchatUsername": {
2531
+ "type": "string"
2532
+ },
2533
+ "startDate": {
2534
+ "type": "string"
2535
+ },
2536
+ "systemsActive": {
2537
+ "type": "array",
2538
+ "items": {
2539
+ "$ref": "#/components/schemas/sanityPatchCandidateSystemsActiveInner"
2540
+ }
2541
+ },
2542
+ "telephone": {
2543
+ "type": "string"
2544
+ },
2545
+ "url": {
2546
+ "type": "string"
2547
+ },
2548
+ "additionalProperties": {
2549
+ "type": "object",
2550
+ "additionalProperties": {
2551
+ "type": "object"
2552
+ }
2553
+ }
2554
+ }
2555
+ },
2336
2556
  "rejectCandidateMessage": {
2337
2557
  "type": "object",
2338
2558
  "properties": {
@@ -3148,180 +3368,6 @@
3148
3368
  }
3149
3369
  }
3150
3370
  },
3151
- "sanityPatchCandidate": {
3152
- "type": "object",
3153
- "properties": {
3154
- "sanityType": {
3155
- "enum": [
3156
- "candidate"
3157
- ],
3158
- "type": "string",
3159
- "default": "candidate",
3160
- "nullable": true
3161
- },
3162
- "status": {
3163
- "enum": [
3164
- "CREATED",
3165
- "INTRODUCTION_INTERVIEW",
3166
- "TECHNICAL_INTERVIEW",
3167
- "SALES_INTERVIEW",
3168
- "OFFER",
3169
- "SIGNED",
3170
- "ONBOARDING",
3171
- "USER_CREATION_REVIEW",
3172
- "OFFBOARDING",
3173
- "REJECTED"
3174
- ],
3175
- "type": "string",
3176
- "default": "CREATED",
3177
- "nullable": true
3178
- },
3179
- "address": {
3180
- "$ref": "#/components/schemas/sanityPatchCandidateAddress"
3181
- },
3182
- "allergies": {
3183
- "type": "array",
3184
- "items": {
3185
- "type": "string"
3186
- }
3187
- },
3188
- "applicationLetter": {
3189
- "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3190
- },
3191
- "applicationOther": {
3192
- "type": "string"
3193
- },
3194
- "bankAccount": {
3195
- "type": "string"
3196
- },
3197
- "birthDate": {
3198
- "type": "string"
3199
- },
3200
- "buddy": {
3201
- "$ref": "#/components/schemas/employeeReference"
3202
- },
3203
- "candidate": {
3204
- "type": "string"
3205
- },
3206
- "contractPdf": {
3207
- "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3208
- },
3209
- "contractSignDate": {
3210
- "type": "string"
3211
- },
3212
- "contractSigner": {
3213
- "$ref": "#/components/schemas/employeeReference"
3214
- },
3215
- "contractSignerRole": {
3216
- "type": "string"
3217
- },
3218
- "cv": {
3219
- "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3220
- },
3221
- "education": {
3222
- "type": "string"
3223
- },
3224
- "email": {
3225
- "type": "string"
3226
- },
3227
- "employee": {
3228
- "$ref": "#/components/schemas/employeeReference"
3229
- },
3230
- "fromApplication": {
3231
- "type": "boolean",
3232
- "nullable": true
3233
- },
3234
- "githubUsername": {
3235
- "type": "string"
3236
- },
3237
- "grades": {
3238
- "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3239
- },
3240
- "interviews": {
3241
- "type": "array",
3242
- "items": {
3243
- "$ref": "#/components/schemas/sanityPatchCandidateInterviewsInner"
3244
- }
3245
- },
3246
- "jobPosition": {
3247
- "$ref": "#/components/schemas/jobPositionReference"
3248
- },
3249
- "offboardingChecklist": {
3250
- "type": "array",
3251
- "items": {
3252
- "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
3253
- }
3254
- },
3255
- "offerPdf": {
3256
- "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3257
- },
3258
- "onboardingChecklist": {
3259
- "type": "array",
3260
- "items": {
3261
- "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
3262
- }
3263
- },
3264
- "ownership": {
3265
- "type": "number",
3266
- "format": "double",
3267
- "nullable": true
3268
- },
3269
- "personalNumber": {
3270
- "type": "string"
3271
- },
3272
- "pin": {
3273
- "type": "string"
3274
- },
3275
- "preferredDisplayName": {
3276
- "type": "string"
3277
- },
3278
- "preferredEmail": {
3279
- "type": "string"
3280
- },
3281
- "profileImage": {
3282
- "$ref": "#/components/schemas/sanityPatchPageMetaImage"
3283
- },
3284
- "recruiter": {
3285
- "$ref": "#/components/schemas/employeeReference"
3286
- },
3287
- "references": {
3288
- "type": "array",
3289
- "items": {
3290
- "$ref": "#/components/schemas/sanityCandidateReferencesInner"
3291
- }
3292
- },
3293
- "shortUrl": {
3294
- "type": "string"
3295
- },
3296
- "signedContract": {
3297
- "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3298
- },
3299
- "snapchatUsername": {
3300
- "type": "string"
3301
- },
3302
- "startDate": {
3303
- "type": "string"
3304
- },
3305
- "systemsActive": {
3306
- "type": "array",
3307
- "items": {
3308
- "$ref": "#/components/schemas/sanityPatchCandidateSystemsActiveInner"
3309
- }
3310
- },
3311
- "telephone": {
3312
- "type": "string"
3313
- },
3314
- "url": {
3315
- "type": "string"
3316
- },
3317
- "additionalProperties": {
3318
- "type": "object",
3319
- "additionalProperties": {
3320
- "type": "object"
3321
- }
3322
- }
3323
- }
3324
- },
3325
3371
  "sanityPatchCandidateAddress": {
3326
3372
  "type": "object",
3327
3373
  "properties": {