@smartytalent/openai-tools 0.8.2 → 0.8.4

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 +1132 -213
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -9973,21 +9973,27 @@
9973
9973
  {
9974
9974
  "type": "function",
9975
9975
  "function": {
9976
- "name": "list_schedules",
9977
- "description": "List Schedules",
9976
+ "name": "list_documents",
9977
+ "description": "List Documents",
9978
9978
  "parameters": {
9979
9979
  "type": "object",
9980
9980
  "properties": {
9981
9981
  "filterStatus": {
9982
9982
  "type": "string",
9983
- "description": "Filter by status. Omit to return all.",
9983
+ "description": "Returns documents with the current status.",
9984
9984
  "enum": [
9985
+ "draft",
9985
9986
  "pending",
9986
- "fired",
9987
- "cancelled",
9988
- "failed"
9987
+ "completed",
9988
+ "declined",
9989
+ "expired",
9990
+ "withdrawn"
9989
9991
  ]
9990
9992
  },
9993
+ "filterCandidateId": {
9994
+ "type": "string",
9995
+ "description": "Filter by the candidate the document belongs to."
9996
+ },
9991
9997
  "filterCreatedFrom": {
9992
9998
  "type": "string",
9993
9999
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
@@ -10027,17 +10033,17 @@
10027
10033
  {
10028
10034
  "type": "function",
10029
10035
  "function": {
10030
- "name": "create_schedule",
10031
- "description": "Create Schedule",
10036
+ "name": "create_document",
10037
+ "description": "Create Document",
10032
10038
  "parameters": {
10033
- "title": "CreateScheduleRequestBody",
10039
+ "title": "CreateDocumentRequestBody",
10034
10040
  "type": "object",
10035
10041
  "required": [
10036
10042
  "data"
10037
10043
  ],
10038
10044
  "properties": {
10039
10045
  "data": {
10040
- "title": "CreateScheduleRequestBodyData",
10046
+ "title": "CreateDocumentRequestBodyData",
10041
10047
  "type": "object",
10042
10048
  "required": [
10043
10049
  "type",
@@ -10047,91 +10053,77 @@
10047
10053
  "type": {
10048
10054
  "type": "string",
10049
10055
  "enum": [
10050
- "schedules"
10056
+ "documents"
10051
10057
  ]
10052
10058
  },
10053
10059
  "attributes": {
10054
- "title": "ScheduleAttributesSchema",
10060
+ "title": "CreateDocumentRequestBodyDataAttributes",
10055
10061
  "type": "object",
10062
+ "required": [
10063
+ "documentType"
10064
+ ],
10056
10065
  "properties": {
10057
- "name": {
10066
+ "documentType": {
10058
10067
  "type": "string",
10059
- "description": "Optional human-readable label for the schedule."
10068
+ "enum": [
10069
+ "employment_offer",
10070
+ "employment_contract",
10071
+ "b2b_contract",
10072
+ "nda",
10073
+ "policy",
10074
+ "consent"
10075
+ ]
10060
10076
  },
10061
- "status": {
10077
+ "process": {
10062
10078
  "type": "string",
10063
10079
  "enum": [
10064
- "pending",
10065
- "fired",
10066
- "cancelled",
10067
- "failed",
10068
- "paused"
10069
- ],
10070
- "description": "Lifecycle. `pending` is armed and will fire. `fired`/`failed` are terminal. `cancelled` is terminal (hard cancel via DELETE). `paused` is pause-for-edit: EventBridge entry is removed but the row stays re-activatable by PATCH back to `pending` with a new `fireAt`."
10080
+ "offer",
10081
+ "contract",
10082
+ "document"
10083
+ ]
10071
10084
  },
10072
- "fireAt": {
10073
- "type": "string",
10074
- "format": "date-time",
10075
- "description": "ISO 8601 timestamp when the schedule fires. Absolute; compute delayMinutes client-side if needed."
10085
+ "title": {
10086
+ "type": "object",
10087
+ "additionalProperties": {
10088
+ "type": "string"
10089
+ }
10076
10090
  },
10077
- "firedAt": {
10078
- "type": "string",
10079
- "format": "date-time",
10080
- "description": "Set by the dispatcher when the schedule actually fires."
10091
+ "languageCode": {
10092
+ "type": "string"
10081
10093
  },
10082
- "target": {
10083
- "title": "ScheduleTargetSchema",
10084
- "type": "object",
10085
- "description": "What to invoke when the schedule fires.",
10086
- "required": [
10087
- "type",
10088
- "actionName"
10089
- ],
10090
- "properties": {
10091
- "type": {
10092
- "type": "string",
10093
- "enum": [
10094
- "action"
10095
- ],
10096
- "description": "Target kind. Only `action` is supported today; the dispatcher invokes the matching action Lambda."
10097
- },
10098
- "actionName": {
10099
- "type": "string",
10100
- "description": "Action identifier (e.g. `email:send`, `call:initiate`). Resolved by the same convention the workflow engine uses - `resource:verb` maps to `sm-${env}-tb-service-action-function-${resource}-${verb}`."
10101
- },
10102
- "input": {
10103
- "type": "object",
10104
- "description": "Payload passed to the action Lambda. Shape is action-specific."
10105
- }
10094
+ "organizationName": {
10095
+ "type": "string"
10096
+ },
10097
+ "body": {
10098
+ "type": "array",
10099
+ "items": {
10100
+ "type": "object"
10106
10101
  }
10107
10102
  },
10108
- "result": {
10109
- "type": "object",
10110
- "description": "Dispatcher's recorded result after firing (status, messageId, or error detail). Server-managed."
10103
+ "fields": {
10104
+ "type": "array",
10105
+ "items": {
10106
+ "type": "object"
10107
+ }
10111
10108
  },
10112
- "timestamps": {
10113
- "title": "ResourceTimestampsSchema",
10114
- "type": "object",
10115
- "properties": {
10116
- "created": {
10117
- "type": "string",
10118
- "format": "date-time"
10119
- },
10120
- "modified": {
10121
- "type": "string",
10122
- "format": "date-time"
10123
- }
10109
+ "participants": {
10110
+ "type": "array",
10111
+ "items": {
10112
+ "type": "object"
10124
10113
  }
10114
+ },
10115
+ "expiresAt": {
10116
+ "type": "string",
10117
+ "format": "date-time"
10125
10118
  }
10126
10119
  }
10127
10120
  },
10128
10121
  "relationships": {
10129
- "title": "ScheduleRelationshipsSchema",
10122
+ "title": "DocumentRelationshipsSchema",
10130
10123
  "type": "object",
10131
- "description": "Optional audit links. None required; use the ones relevant to the scheduled action.",
10132
10124
  "properties": {
10133
10125
  "candidate": {
10134
- "title": "ScheduleRelationshipsCandidateSchema",
10126
+ "title": "DocumentRelationshipsCandidateSchema",
10135
10127
  "type": "object",
10136
10128
  "properties": {
10137
10129
  "data": {
@@ -10148,7 +10140,7 @@
10148
10140
  }
10149
10141
  },
10150
10142
  "job": {
10151
- "title": "ScheduleRelationshipsJobSchema",
10143
+ "title": "DocumentRelationshipsJobSchema",
10152
10144
  "type": "object",
10153
10145
  "properties": {
10154
10146
  "data": {
@@ -10165,60 +10157,8 @@
10165
10157
  }
10166
10158
  },
10167
10159
  "conversation": {
10168
- "title": "ScheduleRelationshipsConversationSchema",
10169
- "type": "object",
10170
- "properties": {
10171
- "data": {
10172
- "type": "object",
10173
- "properties": {
10174
- "type": {
10175
- "type": "string"
10176
- },
10177
- "id": {
10178
- "type": "string"
10179
- }
10180
- }
10181
- }
10182
- }
10183
- },
10184
- "talent": {
10185
- "title": "ScheduleRelationshipsTalentSchema",
10186
- "type": "object",
10187
- "properties": {
10188
- "data": {
10189
- "type": "object",
10190
- "properties": {
10191
- "type": {
10192
- "type": "string"
10193
- },
10194
- "id": {
10195
- "type": "string"
10196
- }
10197
- }
10198
- }
10199
- }
10200
- },
10201
- "user": {
10202
- "title": "ScheduleRelationshipsUserSchema",
10203
- "type": "object",
10204
- "properties": {
10205
- "data": {
10206
- "type": "object",
10207
- "properties": {
10208
- "type": {
10209
- "type": "string"
10210
- },
10211
- "id": {
10212
- "type": "string"
10213
- }
10214
- }
10215
- }
10216
- }
10217
- },
10218
- "email": {
10219
- "title": "ScheduleRelationshipsEmailSchema",
10160
+ "title": "DocumentRelationshipsConversationSchema",
10220
10161
  "type": "object",
10221
- "description": "The email this schedule was armed for. Set by wait:process so the email service can denormalise scheduleId back onto the email row when SCHEDULE_CREATED fires.",
10222
10162
  "properties": {
10223
10163
  "data": {
10224
10164
  "type": "object",
@@ -10244,8 +10184,8 @@
10244
10184
  {
10245
10185
  "type": "function",
10246
10186
  "function": {
10247
- "name": "schedules_options",
10248
- "description": "Schedules Options",
10187
+ "name": "documents_options",
10188
+ "description": "Documents Options",
10249
10189
  "parameters": {
10250
10190
  "type": "object",
10251
10191
  "properties": {}
@@ -10255,18 +10195,18 @@
10255
10195
  {
10256
10196
  "type": "function",
10257
10197
  "function": {
10258
- "name": "show_schedule",
10259
- "description": "Show Schedule",
10198
+ "name": "show_document",
10199
+ "description": "Show Document",
10260
10200
  "parameters": {
10261
10201
  "type": "object",
10262
10202
  "properties": {
10263
- "scheduleId": {
10203
+ "documentId": {
10264
10204
  "type": "string",
10265
- "description": "scheduleId parameter"
10205
+ "description": "documentId parameter"
10266
10206
  }
10267
10207
  },
10268
10208
  "required": [
10269
- "scheduleId"
10209
+ "documentId"
10270
10210
  ]
10271
10211
  }
10272
10212
  }
@@ -10274,110 +10214,713 @@
10274
10214
  {
10275
10215
  "type": "function",
10276
10216
  "function": {
10277
- "name": "update_schedule",
10278
- "description": "Update Schedule",
10217
+ "name": "update_document",
10218
+ "description": "Update Document",
10279
10219
  "parameters": {
10280
10220
  "type": "object",
10281
10221
  "properties": {
10282
- "scheduleId": {
10222
+ "documentId": {
10283
10223
  "type": "string",
10284
- "description": "scheduleId parameter"
10224
+ "description": "documentId parameter"
10285
10225
  },
10286
10226
  "requestBody": {
10287
- "title": "UpdateScheduleRequestBody",
10227
+ "title": "UpdateDocumentRequestBody",
10288
10228
  "type": "object",
10289
10229
  "required": [
10290
10230
  "data"
10291
10231
  ],
10292
10232
  "properties": {
10293
10233
  "data": {
10294
- "title": "UpdateScheduleRequestBodyData",
10234
+ "title": "UpdateDocumentRequestBodyData",
10295
10235
  "type": "object",
10296
10236
  "required": [
10297
- "type",
10298
- "id"
10237
+ "type"
10299
10238
  ],
10300
10239
  "properties": {
10301
10240
  "type": {
10302
10241
  "type": "string",
10303
10242
  "enum": [
10304
- "schedules"
10243
+ "documents"
10305
10244
  ]
10306
10245
  },
10307
10246
  "id": {
10308
10247
  "type": "string"
10309
10248
  },
10310
10249
  "attributes": {
10311
- "title": "ScheduleAttributesSchema",
10250
+ "title": "UpdateDocumentRequestBodyDataAttributes",
10312
10251
  "type": "object",
10313
10252
  "properties": {
10314
- "name": {
10315
- "type": "string",
10316
- "description": "Optional human-readable label for the schedule."
10317
- },
10318
10253
  "status": {
10319
10254
  "type": "string",
10320
10255
  "enum": [
10321
10256
  "pending",
10322
- "fired",
10323
- "cancelled",
10324
- "failed",
10325
- "paused"
10257
+ "withdrawn"
10326
10258
  ],
10327
- "description": "Lifecycle. `pending` is armed and will fire. `fired`/`failed` are terminal. `cancelled` is terminal (hard cancel via DELETE). `paused` is pause-for-edit: EventBridge entry is removed but the row stays re-activatable by PATCH back to `pending` with a new `fireAt`."
10259
+ "description": "pending = the SEND door (draft only); withdrawn = withdraw a sent document."
10328
10260
  },
10329
- "fireAt": {
10330
- "type": "string",
10331
- "format": "date-time",
10332
- "description": "ISO 8601 timestamp when the schedule fires. Absolute; compute delayMinutes client-side if needed."
10261
+ "title": {
10262
+ "type": "object",
10263
+ "additionalProperties": {
10264
+ "type": "string"
10265
+ }
10333
10266
  },
10334
- "firedAt": {
10335
- "type": "string",
10336
- "format": "date-time",
10337
- "description": "Set by the dispatcher when the schedule actually fires."
10267
+ "languageCode": {
10268
+ "type": "string"
10338
10269
  },
10339
- "target": {
10340
- "title": "ScheduleTargetSchema",
10341
- "type": "object",
10342
- "description": "What to invoke when the schedule fires.",
10343
- "required": [
10344
- "type",
10345
- "actionName"
10346
- ],
10347
- "properties": {
10348
- "type": {
10349
- "type": "string",
10350
- "enum": [
10351
- "action"
10352
- ],
10353
- "description": "Target kind. Only `action` is supported today; the dispatcher invokes the matching action Lambda."
10354
- },
10355
- "actionName": {
10356
- "type": "string",
10357
- "description": "Action identifier (e.g. `email:send`, `call:initiate`). Resolved by the same convention the workflow engine uses - `resource:verb` maps to `sm-${env}-tb-service-action-function-${resource}-${verb}`."
10358
- },
10359
- "input": {
10360
- "type": "object",
10361
- "description": "Payload passed to the action Lambda. Shape is action-specific."
10362
- }
10270
+ "organizationName": {
10271
+ "type": "string"
10272
+ },
10273
+ "body": {
10274
+ "type": "array",
10275
+ "items": {
10276
+ "type": "object"
10363
10277
  }
10364
10278
  },
10365
- "result": {
10366
- "type": "object",
10367
- "description": "Dispatcher's recorded result after firing (status, messageId, or error detail). Server-managed."
10279
+ "fields": {
10280
+ "type": "array",
10281
+ "items": {
10282
+ "type": "object"
10283
+ }
10368
10284
  },
10369
- "timestamps": {
10370
- "title": "ResourceTimestampsSchema",
10371
- "type": "object",
10372
- "properties": {
10373
- "created": {
10374
- "type": "string",
10375
- "format": "date-time"
10376
- },
10377
- "modified": {
10378
- "type": "string",
10379
- "format": "date-time"
10380
- }
10285
+ "participants": {
10286
+ "type": "array",
10287
+ "items": {
10288
+ "type": "object"
10289
+ }
10290
+ },
10291
+ "expiresAt": {
10292
+ "type": "string",
10293
+ "format": "date-time"
10294
+ }
10295
+ }
10296
+ },
10297
+ "relationships": {
10298
+ "title": "DocumentRelationshipsSchema",
10299
+ "type": "object",
10300
+ "properties": {
10301
+ "candidate": {
10302
+ "title": "DocumentRelationshipsCandidateSchema",
10303
+ "type": "object",
10304
+ "properties": {
10305
+ "data": {
10306
+ "type": "object",
10307
+ "properties": {
10308
+ "type": {
10309
+ "type": "string"
10310
+ },
10311
+ "id": {
10312
+ "type": "string"
10313
+ }
10314
+ }
10315
+ }
10316
+ }
10317
+ },
10318
+ "job": {
10319
+ "title": "DocumentRelationshipsJobSchema",
10320
+ "type": "object",
10321
+ "properties": {
10322
+ "data": {
10323
+ "type": "object",
10324
+ "properties": {
10325
+ "type": {
10326
+ "type": "string"
10327
+ },
10328
+ "id": {
10329
+ "type": "string"
10330
+ }
10331
+ }
10332
+ }
10333
+ }
10334
+ },
10335
+ "conversation": {
10336
+ "title": "DocumentRelationshipsConversationSchema",
10337
+ "type": "object",
10338
+ "properties": {
10339
+ "data": {
10340
+ "type": "object",
10341
+ "properties": {
10342
+ "type": {
10343
+ "type": "string"
10344
+ },
10345
+ "id": {
10346
+ "type": "string"
10347
+ }
10348
+ }
10349
+ }
10350
+ }
10351
+ }
10352
+ }
10353
+ }
10354
+ }
10355
+ }
10356
+ }
10357
+ }
10358
+ },
10359
+ "required": [
10360
+ "documentId",
10361
+ "requestBody"
10362
+ ]
10363
+ }
10364
+ }
10365
+ },
10366
+ {
10367
+ "type": "function",
10368
+ "function": {
10369
+ "name": "delete_document",
10370
+ "description": "Delete Document",
10371
+ "parameters": {
10372
+ "type": "object",
10373
+ "properties": {
10374
+ "documentId": {
10375
+ "type": "string",
10376
+ "description": "documentId parameter"
10377
+ }
10378
+ },
10379
+ "required": [
10380
+ "documentId"
10381
+ ]
10382
+ }
10383
+ }
10384
+ },
10385
+ {
10386
+ "type": "function",
10387
+ "function": {
10388
+ "name": "document_options",
10389
+ "description": "Document Options",
10390
+ "parameters": {
10391
+ "type": "object",
10392
+ "properties": {}
10393
+ }
10394
+ }
10395
+ },
10396
+ {
10397
+ "type": "function",
10398
+ "function": {
10399
+ "name": "show_guest_document",
10400
+ "description": "Show Guest Document",
10401
+ "parameters": {
10402
+ "type": "object",
10403
+ "properties": {
10404
+ "tenantId": {
10405
+ "type": "string",
10406
+ "description": "Base tenant id from the emailed link. Part of the guest auth."
10407
+ },
10408
+ "token": {
10409
+ "type": "string",
10410
+ "description": "Per-participant accessToken from the emailed link. Compared with hmac.compare_digest; mismatch returns 404."
10411
+ },
10412
+ "process": {
10413
+ "type": "string",
10414
+ "description": "The link's {process} path segment (offer | contract | document). Mismatch with the row returns 404.",
10415
+ "enum": [
10416
+ "offer",
10417
+ "contract",
10418
+ "document"
10419
+ ]
10420
+ }
10421
+ },
10422
+ "required": [
10423
+ "tenantId",
10424
+ "token"
10425
+ ]
10426
+ }
10427
+ }
10428
+ },
10429
+ {
10430
+ "type": "function",
10431
+ "function": {
10432
+ "name": "submit_guest_document",
10433
+ "description": "Submit Guest Document",
10434
+ "parameters": {
10435
+ "title": "SubmitGuestDocumentRequestBody",
10436
+ "type": "object",
10437
+ "required": [
10438
+ "data",
10439
+ "meta"
10440
+ ],
10441
+ "properties": {
10442
+ "data": {
10443
+ "title": "SubmitGuestDocumentRequestBodyData",
10444
+ "type": "object",
10445
+ "required": [
10446
+ "type",
10447
+ "attributes"
10448
+ ],
10449
+ "properties": {
10450
+ "type": {
10451
+ "type": "string",
10452
+ "enum": [
10453
+ "documents"
10454
+ ]
10455
+ },
10456
+ "id": {
10457
+ "type": "string"
10458
+ },
10459
+ "attributes": {
10460
+ "title": "SubmitGuestDocumentRequestBodyDataAttributes",
10461
+ "type": "object",
10462
+ "required": [
10463
+ "action"
10464
+ ],
10465
+ "properties": {
10466
+ "action": {
10467
+ "type": "string",
10468
+ "enum": [
10469
+ "VIEW",
10470
+ "ACCEPT",
10471
+ "DECLINE"
10472
+ ]
10473
+ },
10474
+ "confirmations": {
10475
+ "type": "array",
10476
+ "items": {
10477
+ "type": "string"
10478
+ }
10479
+ }
10480
+ }
10481
+ }
10482
+ }
10483
+ },
10484
+ "meta": {
10485
+ "title": "GuestDocumentMetaSchema",
10486
+ "description": "Auth context for the unauthenticated PATCH\n/v1/guest/documents/{id}. Both values come from the emailed link,\nnever from a session. tenantId is the BASE tenant id; accessToken\nis the per-participant token minted at send and compared with\nhmac.compare_digest. Any mismatch returns 404, intentionally\nindistinguishable from \"document not found\".",
10487
+ "type": "object",
10488
+ "required": [
10489
+ "tenantId",
10490
+ "accessToken"
10491
+ ],
10492
+ "properties": {
10493
+ "tenantId": {
10494
+ "type": "string"
10495
+ },
10496
+ "accessToken": {
10497
+ "type": "string"
10498
+ }
10499
+ }
10500
+ }
10501
+ }
10502
+ }
10503
+ }
10504
+ },
10505
+ {
10506
+ "type": "function",
10507
+ "function": {
10508
+ "name": "guest_document_options",
10509
+ "description": "Guest Document Options",
10510
+ "parameters": {
10511
+ "type": "object",
10512
+ "properties": {}
10513
+ }
10514
+ }
10515
+ },
10516
+ {
10517
+ "type": "function",
10518
+ "function": {
10519
+ "name": "list_schedules",
10520
+ "description": "List Schedules",
10521
+ "parameters": {
10522
+ "type": "object",
10523
+ "properties": {
10524
+ "filterStatus": {
10525
+ "type": "string",
10526
+ "description": "Filter by status. Omit to return all.",
10527
+ "enum": [
10528
+ "pending",
10529
+ "fired",
10530
+ "cancelled",
10531
+ "failed"
10532
+ ]
10533
+ },
10534
+ "filterCreatedFrom": {
10535
+ "type": "string",
10536
+ "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
10537
+ },
10538
+ "filterCreatedTo": {
10539
+ "type": "string",
10540
+ "description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
10541
+ },
10542
+ "filterModifiedFrom": {
10543
+ "type": "string",
10544
+ "description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
10545
+ },
10546
+ "filterModifiedTo": {
10547
+ "type": "string",
10548
+ "description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
10549
+ },
10550
+ "pageSize": {
10551
+ "type": "integer",
10552
+ "description": "Specifies the number of items to retrieve per page. The maximum value is 100."
10553
+ },
10554
+ "pageNumber": {
10555
+ "type": "integer",
10556
+ "description": "Specifies the page number to retrieve. Used for traditional pagination."
10557
+ },
10558
+ "pageAfter": {
10559
+ "type": "string",
10560
+ "description": "Opaque base64-encoded cursor returned by a previous list response, used for forward cursor-based pagination. Pass the value verbatim; do not decode or mutate it."
10561
+ },
10562
+ "pageBefore": {
10563
+ "type": "string",
10564
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
10565
+ }
10566
+ }
10567
+ }
10568
+ }
10569
+ },
10570
+ {
10571
+ "type": "function",
10572
+ "function": {
10573
+ "name": "create_schedule",
10574
+ "description": "Create Schedule",
10575
+ "parameters": {
10576
+ "title": "CreateScheduleRequestBody",
10577
+ "type": "object",
10578
+ "required": [
10579
+ "data"
10580
+ ],
10581
+ "properties": {
10582
+ "data": {
10583
+ "title": "CreateScheduleRequestBodyData",
10584
+ "type": "object",
10585
+ "required": [
10586
+ "type",
10587
+ "attributes"
10588
+ ],
10589
+ "properties": {
10590
+ "type": {
10591
+ "type": "string",
10592
+ "enum": [
10593
+ "schedules"
10594
+ ]
10595
+ },
10596
+ "attributes": {
10597
+ "title": "ScheduleAttributesSchema",
10598
+ "type": "object",
10599
+ "properties": {
10600
+ "name": {
10601
+ "type": "string",
10602
+ "description": "Optional human-readable label for the schedule."
10603
+ },
10604
+ "status": {
10605
+ "type": "string",
10606
+ "enum": [
10607
+ "pending",
10608
+ "fired",
10609
+ "cancelled",
10610
+ "failed",
10611
+ "paused"
10612
+ ],
10613
+ "description": "Lifecycle. `pending` is armed and will fire. `fired`/`failed` are terminal. `cancelled` is terminal (hard cancel via DELETE). `paused` is pause-for-edit: EventBridge entry is removed but the row stays re-activatable by PATCH back to `pending` with a new `fireAt`."
10614
+ },
10615
+ "fireAt": {
10616
+ "type": "string",
10617
+ "format": "date-time",
10618
+ "description": "ISO 8601 timestamp when the schedule fires. Absolute; compute delayMinutes client-side if needed."
10619
+ },
10620
+ "firedAt": {
10621
+ "type": "string",
10622
+ "format": "date-time",
10623
+ "description": "Set by the dispatcher when the schedule actually fires."
10624
+ },
10625
+ "target": {
10626
+ "title": "ScheduleTargetSchema",
10627
+ "type": "object",
10628
+ "description": "What to invoke when the schedule fires.",
10629
+ "required": [
10630
+ "type",
10631
+ "actionName"
10632
+ ],
10633
+ "properties": {
10634
+ "type": {
10635
+ "type": "string",
10636
+ "enum": [
10637
+ "action"
10638
+ ],
10639
+ "description": "Target kind. Only `action` is supported today; the dispatcher invokes the matching action Lambda."
10640
+ },
10641
+ "actionName": {
10642
+ "type": "string",
10643
+ "description": "Action identifier (e.g. `email:send`, `call:initiate`). Resolved by the same convention the workflow engine uses - `resource:verb` maps to `sm-${env}-tb-service-action-function-${resource}-${verb}`."
10644
+ },
10645
+ "input": {
10646
+ "type": "object",
10647
+ "description": "Payload passed to the action Lambda. Shape is action-specific."
10648
+ }
10649
+ }
10650
+ },
10651
+ "result": {
10652
+ "type": "object",
10653
+ "description": "Dispatcher's recorded result after firing (status, messageId, or error detail). Server-managed."
10654
+ },
10655
+ "timestamps": {
10656
+ "title": "ResourceTimestampsSchema",
10657
+ "type": "object",
10658
+ "properties": {
10659
+ "created": {
10660
+ "type": "string",
10661
+ "format": "date-time"
10662
+ },
10663
+ "modified": {
10664
+ "type": "string",
10665
+ "format": "date-time"
10666
+ }
10667
+ }
10668
+ }
10669
+ }
10670
+ },
10671
+ "relationships": {
10672
+ "title": "ScheduleRelationshipsSchema",
10673
+ "type": "object",
10674
+ "description": "Optional audit links. None required; use the ones relevant to the scheduled action.",
10675
+ "properties": {
10676
+ "candidate": {
10677
+ "title": "ScheduleRelationshipsCandidateSchema",
10678
+ "type": "object",
10679
+ "properties": {
10680
+ "data": {
10681
+ "type": "object",
10682
+ "properties": {
10683
+ "type": {
10684
+ "type": "string"
10685
+ },
10686
+ "id": {
10687
+ "type": "string"
10688
+ }
10689
+ }
10690
+ }
10691
+ }
10692
+ },
10693
+ "job": {
10694
+ "title": "ScheduleRelationshipsJobSchema",
10695
+ "type": "object",
10696
+ "properties": {
10697
+ "data": {
10698
+ "type": "object",
10699
+ "properties": {
10700
+ "type": {
10701
+ "type": "string"
10702
+ },
10703
+ "id": {
10704
+ "type": "string"
10705
+ }
10706
+ }
10707
+ }
10708
+ }
10709
+ },
10710
+ "conversation": {
10711
+ "title": "ScheduleRelationshipsConversationSchema",
10712
+ "type": "object",
10713
+ "properties": {
10714
+ "data": {
10715
+ "type": "object",
10716
+ "properties": {
10717
+ "type": {
10718
+ "type": "string"
10719
+ },
10720
+ "id": {
10721
+ "type": "string"
10722
+ }
10723
+ }
10724
+ }
10725
+ }
10726
+ },
10727
+ "talent": {
10728
+ "title": "ScheduleRelationshipsTalentSchema",
10729
+ "type": "object",
10730
+ "properties": {
10731
+ "data": {
10732
+ "type": "object",
10733
+ "properties": {
10734
+ "type": {
10735
+ "type": "string"
10736
+ },
10737
+ "id": {
10738
+ "type": "string"
10739
+ }
10740
+ }
10741
+ }
10742
+ }
10743
+ },
10744
+ "user": {
10745
+ "title": "ScheduleRelationshipsUserSchema",
10746
+ "type": "object",
10747
+ "properties": {
10748
+ "data": {
10749
+ "type": "object",
10750
+ "properties": {
10751
+ "type": {
10752
+ "type": "string"
10753
+ },
10754
+ "id": {
10755
+ "type": "string"
10756
+ }
10757
+ }
10758
+ }
10759
+ }
10760
+ },
10761
+ "email": {
10762
+ "title": "ScheduleRelationshipsEmailSchema",
10763
+ "type": "object",
10764
+ "description": "The email this schedule was armed for. Set by wait:process so the email service can denormalise scheduleId back onto the email row when SCHEDULE_CREATED fires.",
10765
+ "properties": {
10766
+ "data": {
10767
+ "type": "object",
10768
+ "properties": {
10769
+ "type": {
10770
+ "type": "string"
10771
+ },
10772
+ "id": {
10773
+ "type": "string"
10774
+ }
10775
+ }
10776
+ }
10777
+ }
10778
+ }
10779
+ }
10780
+ }
10781
+ }
10782
+ }
10783
+ }
10784
+ }
10785
+ }
10786
+ },
10787
+ {
10788
+ "type": "function",
10789
+ "function": {
10790
+ "name": "schedules_options",
10791
+ "description": "Schedules Options",
10792
+ "parameters": {
10793
+ "type": "object",
10794
+ "properties": {}
10795
+ }
10796
+ }
10797
+ },
10798
+ {
10799
+ "type": "function",
10800
+ "function": {
10801
+ "name": "show_schedule",
10802
+ "description": "Show Schedule",
10803
+ "parameters": {
10804
+ "type": "object",
10805
+ "properties": {
10806
+ "scheduleId": {
10807
+ "type": "string",
10808
+ "description": "scheduleId parameter"
10809
+ }
10810
+ },
10811
+ "required": [
10812
+ "scheduleId"
10813
+ ]
10814
+ }
10815
+ }
10816
+ },
10817
+ {
10818
+ "type": "function",
10819
+ "function": {
10820
+ "name": "update_schedule",
10821
+ "description": "Update Schedule",
10822
+ "parameters": {
10823
+ "type": "object",
10824
+ "properties": {
10825
+ "scheduleId": {
10826
+ "type": "string",
10827
+ "description": "scheduleId parameter"
10828
+ },
10829
+ "requestBody": {
10830
+ "title": "UpdateScheduleRequestBody",
10831
+ "type": "object",
10832
+ "required": [
10833
+ "data"
10834
+ ],
10835
+ "properties": {
10836
+ "data": {
10837
+ "title": "UpdateScheduleRequestBodyData",
10838
+ "type": "object",
10839
+ "required": [
10840
+ "type",
10841
+ "id"
10842
+ ],
10843
+ "properties": {
10844
+ "type": {
10845
+ "type": "string",
10846
+ "enum": [
10847
+ "schedules"
10848
+ ]
10849
+ },
10850
+ "id": {
10851
+ "type": "string"
10852
+ },
10853
+ "attributes": {
10854
+ "title": "ScheduleAttributesSchema",
10855
+ "type": "object",
10856
+ "properties": {
10857
+ "name": {
10858
+ "type": "string",
10859
+ "description": "Optional human-readable label for the schedule."
10860
+ },
10861
+ "status": {
10862
+ "type": "string",
10863
+ "enum": [
10864
+ "pending",
10865
+ "fired",
10866
+ "cancelled",
10867
+ "failed",
10868
+ "paused"
10869
+ ],
10870
+ "description": "Lifecycle. `pending` is armed and will fire. `fired`/`failed` are terminal. `cancelled` is terminal (hard cancel via DELETE). `paused` is pause-for-edit: EventBridge entry is removed but the row stays re-activatable by PATCH back to `pending` with a new `fireAt`."
10871
+ },
10872
+ "fireAt": {
10873
+ "type": "string",
10874
+ "format": "date-time",
10875
+ "description": "ISO 8601 timestamp when the schedule fires. Absolute; compute delayMinutes client-side if needed."
10876
+ },
10877
+ "firedAt": {
10878
+ "type": "string",
10879
+ "format": "date-time",
10880
+ "description": "Set by the dispatcher when the schedule actually fires."
10881
+ },
10882
+ "target": {
10883
+ "title": "ScheduleTargetSchema",
10884
+ "type": "object",
10885
+ "description": "What to invoke when the schedule fires.",
10886
+ "required": [
10887
+ "type",
10888
+ "actionName"
10889
+ ],
10890
+ "properties": {
10891
+ "type": {
10892
+ "type": "string",
10893
+ "enum": [
10894
+ "action"
10895
+ ],
10896
+ "description": "Target kind. Only `action` is supported today; the dispatcher invokes the matching action Lambda."
10897
+ },
10898
+ "actionName": {
10899
+ "type": "string",
10900
+ "description": "Action identifier (e.g. `email:send`, `call:initiate`). Resolved by the same convention the workflow engine uses - `resource:verb` maps to `sm-${env}-tb-service-action-function-${resource}-${verb}`."
10901
+ },
10902
+ "input": {
10903
+ "type": "object",
10904
+ "description": "Payload passed to the action Lambda. Shape is action-specific."
10905
+ }
10906
+ }
10907
+ },
10908
+ "result": {
10909
+ "type": "object",
10910
+ "description": "Dispatcher's recorded result after firing (status, messageId, or error detail). Server-managed."
10911
+ },
10912
+ "timestamps": {
10913
+ "title": "ResourceTimestampsSchema",
10914
+ "type": "object",
10915
+ "properties": {
10916
+ "created": {
10917
+ "type": "string",
10918
+ "format": "date-time"
10919
+ },
10920
+ "modified": {
10921
+ "type": "string",
10922
+ "format": "date-time"
10923
+ }
10381
10924
  }
10382
10925
  }
10383
10926
  }
@@ -14377,6 +14920,10 @@
14377
14920
  "archived"
14378
14921
  ]
14379
14922
  },
14923
+ "filterScopeKey": {
14924
+ "type": "string",
14925
+ "description": "Returns the persona for one position family in one market.\nFormat `{positionFamily}#{scope}`, where scope is\n`city:<slug>`, `voivodeship:<slug>`, `country:<code>` or\n`remote` - for example\n`regional-sales-representative#city:krakow`. Slugs are folded\n(lowercase, no diacritics), so Krakow and Kraków are one key."
14926
+ },
14380
14927
  "filterCreatedFrom": {
14381
14928
  "type": "string",
14382
14929
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
@@ -14442,16 +14989,82 @@
14442
14989
  "attributes": {
14443
14990
  "title": "PersonaAttributesSchema",
14444
14991
  "type": "object",
14445
- "required": [
14446
- "name",
14447
- "email"
14448
- ],
14992
+ "description": "A persona is a REGIONAL COHORT profile, not a person: it is\nsynthesized from the talents this tenant actually hired for one\nposition family in one market. Nothing here describes an individual,\nand `name` / `profilePictureUrl` are an invented label for the\ncohort, never a real person.",
14449
14993
  "properties": {
14450
- "name": {
14994
+ "status": {
14995
+ "type": "string",
14996
+ "description": "Only `active` personas may be shown as a benchmark - see\n`memberCount`. Everything else is a work in progress.",
14997
+ "enum": [
14998
+ "active",
14999
+ "inactive",
15000
+ "draft",
15001
+ "pending",
15002
+ "archived",
15003
+ "failed"
15004
+ ]
15005
+ },
15006
+ "source": {
14451
15007
  "type": "string"
14452
15008
  },
14453
- "status": {
14454
- "type": "string"
15009
+ "name": {
15010
+ "type": "object",
15011
+ "description": "Language-keyed invented name for the archetype. Stable across\nrebuilds, but regenerated when the cohort's predominant gender\nflips - the name states a gender, and that gender is a finding\nabout the cohort (see `identityGender`).",
15012
+ "additionalProperties": true
15013
+ },
15014
+ "identityGender": {
15015
+ "type": "string",
15016
+ "description": "The cohort gender the current name and picture were minted for. Diagnostic.",
15017
+ "enum": [
15018
+ "male",
15019
+ "female"
15020
+ ]
15021
+ },
15022
+ "profilePictureUrl": {
15023
+ "type": "string",
15024
+ "description": "Illustration for the archetype. Not a photograph of anyone."
15025
+ },
15026
+ "gender": {
15027
+ "type": "object",
15028
+ "description": "Language-keyed, cohort-derived. Locale value unconstrained (Any).",
15029
+ "additionalProperties": true
15030
+ },
15031
+ "ageRange": {
15032
+ "type": "object",
15033
+ "description": "Language-keyed, cohort-derived. Locale value unconstrained (Any).",
15034
+ "additionalProperties": true
15035
+ },
15036
+ "scope": {
15037
+ "type": "object",
15038
+ "description": "Which market this persona describes: `{level: city|voivodeship|\ncountry|remote, city?, voivodeship?, country?}`. A hire feeds\nthree personas (city, voivodeship, country), and consumers take\nthe most specific USABLE one.",
15039
+ "additionalProperties": true
15040
+ },
15041
+ "scopeKey": {
15042
+ "type": "string",
15043
+ "description": "`{positionFamily}#{scope}` - the list filter (`filterScopeKey`) and the index key."
15044
+ },
15045
+ "positionFamily": {
15046
+ "type": "string",
15047
+ "description": "Slug of the role the cohort was hired for, e.g. `regional-sales-representative`."
15048
+ },
15049
+ "memberCount": {
15050
+ "type": "integer",
15051
+ "description": "How many hired talents the cohort holds. Below 3 the profile is\nthose few people in disguise, so it is never published and never\nconsumed - k-anonymity, not a display preference."
15052
+ },
15053
+ "cohortRead": {
15054
+ "type": "integer",
15055
+ "description": "How many members actually fed the profile on this row (diagnostic; can be lower than memberCount)."
15056
+ },
15057
+ "talentCount": {
15058
+ "type": "integer",
15059
+ "description": "Legacy mirror of memberCount."
15060
+ },
15061
+ "version": {
15062
+ "type": "integer",
15063
+ "description": "Bumped by every rebuild that wrote something."
15064
+ },
15065
+ "publishedAt": {
15066
+ "type": "string",
15067
+ "description": "When this persona last became consumable."
14455
15068
  },
14456
15069
  "timestamps": {
14457
15070
  "title": "ResourceTimestampsSchema",
@@ -14466,6 +15079,126 @@
14466
15079
  "format": "date-time"
14467
15080
  }
14468
15081
  }
15082
+ },
15083
+ "availability": {
15084
+ "type": "object",
15085
+ "description": "Language-keyed availability pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15086
+ "additionalProperties": true
15087
+ },
15088
+ "certifications": {
15089
+ "type": "object",
15090
+ "description": "Language-keyed certifications pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15091
+ "additionalProperties": true
15092
+ },
15093
+ "companyTypeExperience": {
15094
+ "type": "object",
15095
+ "description": "Language-keyed companyTypeExperience pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15096
+ "additionalProperties": true
15097
+ },
15098
+ "education": {
15099
+ "type": "object",
15100
+ "description": "Language-keyed education pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15101
+ "additionalProperties": true
15102
+ },
15103
+ "experienceAndSeniority": {
15104
+ "type": "object",
15105
+ "description": "Language-keyed experienceAndSeniority pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15106
+ "additionalProperties": true
15107
+ },
15108
+ "industryExperience": {
15109
+ "type": "object",
15110
+ "description": "Language-keyed industryExperience pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15111
+ "additionalProperties": true
15112
+ },
15113
+ "jobPositions": {
15114
+ "type": "object",
15115
+ "description": "Language-keyed jobPositions pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15116
+ "additionalProperties": true
15117
+ },
15118
+ "jobTendencies": {
15119
+ "type": "object",
15120
+ "description": "Language-keyed jobTendencies pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15121
+ "additionalProperties": true
15122
+ },
15123
+ "languagesSpoken": {
15124
+ "type": "object",
15125
+ "description": "Language-keyed languagesSpoken pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15126
+ "additionalProperties": true
15127
+ },
15128
+ "licenses": {
15129
+ "type": "object",
15130
+ "description": "Language-keyed licenses pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15131
+ "additionalProperties": true
15132
+ },
15133
+ "locationPreferences": {
15134
+ "type": "object",
15135
+ "description": "Language-keyed locationPreferences pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15136
+ "additionalProperties": true
15137
+ },
15138
+ "personalityAndSoftSkills": {
15139
+ "type": "object",
15140
+ "description": "Language-keyed personalityAndSoftSkills pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15141
+ "additionalProperties": true
15142
+ },
15143
+ "salaryExpectation": {
15144
+ "type": "object",
15145
+ "description": "Language-keyed salaryExpectation pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15146
+ "additionalProperties": true
15147
+ },
15148
+ "skillsAndExpertise": {
15149
+ "type": "object",
15150
+ "description": "Language-keyed skillsAndExpertise pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15151
+ "additionalProperties": true
15152
+ },
15153
+ "workAuthorization": {
15154
+ "type": "object",
15155
+ "description": "Language-keyed workAuthorization pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15156
+ "additionalProperties": true
15157
+ },
15158
+ "workPreferences": {
15159
+ "type": "object",
15160
+ "description": "Language-keyed workPreferences pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15161
+ "additionalProperties": true
15162
+ },
15163
+ "responsibilities": {
15164
+ "type": "object",
15165
+ "description": "Language-keyed responsibilities pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15166
+ "additionalProperties": true
15167
+ },
15168
+ "hobbiesAndInterests": {
15169
+ "type": "object",
15170
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15171
+ "additionalProperties": true
15172
+ },
15173
+ "personalTraits": {
15174
+ "type": "object",
15175
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15176
+ "additionalProperties": true
15177
+ },
15178
+ "goalsAndAspirations": {
15179
+ "type": "object",
15180
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15181
+ "additionalProperties": true
15182
+ },
15183
+ "mainFrustrations": {
15184
+ "type": "object",
15185
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15186
+ "additionalProperties": true
15187
+ },
15188
+ "keyCompetenciesAndStrengths": {
15189
+ "type": "object",
15190
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15191
+ "additionalProperties": true
15192
+ },
15193
+ "quickInsights": {
15194
+ "type": "object",
15195
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15196
+ "additionalProperties": true
15197
+ },
15198
+ "keywords": {
15199
+ "type": "object",
15200
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15201
+ "additionalProperties": true
14469
15202
  }
14470
15203
  }
14471
15204
  },
@@ -14599,17 +15332,83 @@
14599
15332
  "attributes": {
14600
15333
  "title": "PersonaAttributesSchema",
14601
15334
  "type": "object",
14602
- "required": [
14603
- "name",
14604
- "email"
14605
- ],
15335
+ "description": "A persona is a REGIONAL COHORT profile, not a person: it is\nsynthesized from the talents this tenant actually hired for one\nposition family in one market. Nothing here describes an individual,\nand `name` / `profilePictureUrl` are an invented label for the\ncohort, never a real person.",
14606
15336
  "properties": {
14607
- "name": {
14608
- "type": "string"
14609
- },
14610
15337
  "status": {
15338
+ "type": "string",
15339
+ "description": "Only `active` personas may be shown as a benchmark - see\n`memberCount`. Everything else is a work in progress.",
15340
+ "enum": [
15341
+ "active",
15342
+ "inactive",
15343
+ "draft",
15344
+ "pending",
15345
+ "archived",
15346
+ "failed"
15347
+ ]
15348
+ },
15349
+ "source": {
14611
15350
  "type": "string"
14612
15351
  },
15352
+ "name": {
15353
+ "type": "object",
15354
+ "description": "Language-keyed invented name for the archetype. Stable across\nrebuilds, but regenerated when the cohort's predominant gender\nflips - the name states a gender, and that gender is a finding\nabout the cohort (see `identityGender`).",
15355
+ "additionalProperties": true
15356
+ },
15357
+ "identityGender": {
15358
+ "type": "string",
15359
+ "description": "The cohort gender the current name and picture were minted for. Diagnostic.",
15360
+ "enum": [
15361
+ "male",
15362
+ "female"
15363
+ ]
15364
+ },
15365
+ "profilePictureUrl": {
15366
+ "type": "string",
15367
+ "description": "Illustration for the archetype. Not a photograph of anyone."
15368
+ },
15369
+ "gender": {
15370
+ "type": "object",
15371
+ "description": "Language-keyed, cohort-derived. Locale value unconstrained (Any).",
15372
+ "additionalProperties": true
15373
+ },
15374
+ "ageRange": {
15375
+ "type": "object",
15376
+ "description": "Language-keyed, cohort-derived. Locale value unconstrained (Any).",
15377
+ "additionalProperties": true
15378
+ },
15379
+ "scope": {
15380
+ "type": "object",
15381
+ "description": "Which market this persona describes: `{level: city|voivodeship|\ncountry|remote, city?, voivodeship?, country?}`. A hire feeds\nthree personas (city, voivodeship, country), and consumers take\nthe most specific USABLE one.",
15382
+ "additionalProperties": true
15383
+ },
15384
+ "scopeKey": {
15385
+ "type": "string",
15386
+ "description": "`{positionFamily}#{scope}` - the list filter (`filterScopeKey`) and the index key."
15387
+ },
15388
+ "positionFamily": {
15389
+ "type": "string",
15390
+ "description": "Slug of the role the cohort was hired for, e.g. `regional-sales-representative`."
15391
+ },
15392
+ "memberCount": {
15393
+ "type": "integer",
15394
+ "description": "How many hired talents the cohort holds. Below 3 the profile is\nthose few people in disguise, so it is never published and never\nconsumed - k-anonymity, not a display preference."
15395
+ },
15396
+ "cohortRead": {
15397
+ "type": "integer",
15398
+ "description": "How many members actually fed the profile on this row (diagnostic; can be lower than memberCount)."
15399
+ },
15400
+ "talentCount": {
15401
+ "type": "integer",
15402
+ "description": "Legacy mirror of memberCount."
15403
+ },
15404
+ "version": {
15405
+ "type": "integer",
15406
+ "description": "Bumped by every rebuild that wrote something."
15407
+ },
15408
+ "publishedAt": {
15409
+ "type": "string",
15410
+ "description": "When this persona last became consumable."
15411
+ },
14613
15412
  "timestamps": {
14614
15413
  "title": "ResourceTimestampsSchema",
14615
15414
  "type": "object",
@@ -14623,6 +15422,126 @@
14623
15422
  "format": "date-time"
14624
15423
  }
14625
15424
  }
15425
+ },
15426
+ "availability": {
15427
+ "type": "object",
15428
+ "description": "Language-keyed availability pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15429
+ "additionalProperties": true
15430
+ },
15431
+ "certifications": {
15432
+ "type": "object",
15433
+ "description": "Language-keyed certifications pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15434
+ "additionalProperties": true
15435
+ },
15436
+ "companyTypeExperience": {
15437
+ "type": "object",
15438
+ "description": "Language-keyed companyTypeExperience pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15439
+ "additionalProperties": true
15440
+ },
15441
+ "education": {
15442
+ "type": "object",
15443
+ "description": "Language-keyed education pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15444
+ "additionalProperties": true
15445
+ },
15446
+ "experienceAndSeniority": {
15447
+ "type": "object",
15448
+ "description": "Language-keyed experienceAndSeniority pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15449
+ "additionalProperties": true
15450
+ },
15451
+ "industryExperience": {
15452
+ "type": "object",
15453
+ "description": "Language-keyed industryExperience pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15454
+ "additionalProperties": true
15455
+ },
15456
+ "jobPositions": {
15457
+ "type": "object",
15458
+ "description": "Language-keyed jobPositions pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15459
+ "additionalProperties": true
15460
+ },
15461
+ "jobTendencies": {
15462
+ "type": "object",
15463
+ "description": "Language-keyed jobTendencies pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15464
+ "additionalProperties": true
15465
+ },
15466
+ "languagesSpoken": {
15467
+ "type": "object",
15468
+ "description": "Language-keyed languagesSpoken pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15469
+ "additionalProperties": true
15470
+ },
15471
+ "licenses": {
15472
+ "type": "object",
15473
+ "description": "Language-keyed licenses pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15474
+ "additionalProperties": true
15475
+ },
15476
+ "locationPreferences": {
15477
+ "type": "object",
15478
+ "description": "Language-keyed locationPreferences pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15479
+ "additionalProperties": true
15480
+ },
15481
+ "personalityAndSoftSkills": {
15482
+ "type": "object",
15483
+ "description": "Language-keyed personalityAndSoftSkills pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15484
+ "additionalProperties": true
15485
+ },
15486
+ "salaryExpectation": {
15487
+ "type": "object",
15488
+ "description": "Language-keyed salaryExpectation pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15489
+ "additionalProperties": true
15490
+ },
15491
+ "skillsAndExpertise": {
15492
+ "type": "object",
15493
+ "description": "Language-keyed skillsAndExpertise pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15494
+ "additionalProperties": true
15495
+ },
15496
+ "workAuthorization": {
15497
+ "type": "object",
15498
+ "description": "Language-keyed workAuthorization pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15499
+ "additionalProperties": true
15500
+ },
15501
+ "workPreferences": {
15502
+ "type": "object",
15503
+ "description": "Language-keyed workPreferences pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15504
+ "additionalProperties": true
15505
+ },
15506
+ "responsibilities": {
15507
+ "type": "object",
15508
+ "description": "Language-keyed responsibilities pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15509
+ "additionalProperties": true
15510
+ },
15511
+ "hobbiesAndInterests": {
15512
+ "type": "object",
15513
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15514
+ "additionalProperties": true
15515
+ },
15516
+ "personalTraits": {
15517
+ "type": "object",
15518
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15519
+ "additionalProperties": true
15520
+ },
15521
+ "goalsAndAspirations": {
15522
+ "type": "object",
15523
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15524
+ "additionalProperties": true
15525
+ },
15526
+ "mainFrustrations": {
15527
+ "type": "object",
15528
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15529
+ "additionalProperties": true
15530
+ },
15531
+ "keyCompetenciesAndStrengths": {
15532
+ "type": "object",
15533
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15534
+ "additionalProperties": true
15535
+ },
15536
+ "quickInsights": {
15537
+ "type": "object",
15538
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15539
+ "additionalProperties": true
15540
+ },
15541
+ "keywords": {
15542
+ "type": "object",
15543
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15544
+ "additionalProperties": true
14626
15545
  }
14627
15546
  }
14628
15547
  }