@smartytalent/openai-tools 0.8.2 → 0.8.3

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 +1116 -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,74 @@
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. Written once, then stable across rebuilds.",
15012
+ "additionalProperties": true
15013
+ },
15014
+ "profilePictureUrl": {
15015
+ "type": "string",
15016
+ "description": "Illustration for the archetype. Not a photograph of anyone."
15017
+ },
15018
+ "gender": {
15019
+ "type": "object",
15020
+ "description": "Language-keyed, cohort-derived. Locale value unconstrained (Any).",
15021
+ "additionalProperties": true
15022
+ },
15023
+ "ageRange": {
15024
+ "type": "object",
15025
+ "description": "Language-keyed, cohort-derived. Locale value unconstrained (Any).",
15026
+ "additionalProperties": true
15027
+ },
15028
+ "scope": {
15029
+ "type": "object",
15030
+ "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.",
15031
+ "additionalProperties": true
15032
+ },
15033
+ "scopeKey": {
15034
+ "type": "string",
15035
+ "description": "`{positionFamily}#{scope}` - the list filter (`filterScopeKey`) and the index key."
15036
+ },
15037
+ "positionFamily": {
15038
+ "type": "string",
15039
+ "description": "Slug of the role the cohort was hired for, e.g. `regional-sales-representative`."
15040
+ },
15041
+ "memberCount": {
15042
+ "type": "integer",
15043
+ "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."
15044
+ },
15045
+ "cohortRead": {
15046
+ "type": "integer",
15047
+ "description": "How many members actually fed the profile on this row (diagnostic; can be lower than memberCount)."
15048
+ },
15049
+ "talentCount": {
15050
+ "type": "integer",
15051
+ "description": "Legacy mirror of memberCount."
15052
+ },
15053
+ "version": {
15054
+ "type": "integer",
15055
+ "description": "Bumped by every rebuild that wrote something."
15056
+ },
15057
+ "publishedAt": {
15058
+ "type": "string",
15059
+ "description": "When this persona last became consumable."
14455
15060
  },
14456
15061
  "timestamps": {
14457
15062
  "title": "ResourceTimestampsSchema",
@@ -14466,6 +15071,126 @@
14466
15071
  "format": "date-time"
14467
15072
  }
14468
15073
  }
15074
+ },
15075
+ "availability": {
15076
+ "type": "object",
15077
+ "description": "Language-keyed availability pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15078
+ "additionalProperties": true
15079
+ },
15080
+ "certifications": {
15081
+ "type": "object",
15082
+ "description": "Language-keyed certifications pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15083
+ "additionalProperties": true
15084
+ },
15085
+ "companyTypeExperience": {
15086
+ "type": "object",
15087
+ "description": "Language-keyed companyTypeExperience pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15088
+ "additionalProperties": true
15089
+ },
15090
+ "education": {
15091
+ "type": "object",
15092
+ "description": "Language-keyed education pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15093
+ "additionalProperties": true
15094
+ },
15095
+ "experienceAndSeniority": {
15096
+ "type": "object",
15097
+ "description": "Language-keyed experienceAndSeniority pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15098
+ "additionalProperties": true
15099
+ },
15100
+ "industryExperience": {
15101
+ "type": "object",
15102
+ "description": "Language-keyed industryExperience pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15103
+ "additionalProperties": true
15104
+ },
15105
+ "jobPositions": {
15106
+ "type": "object",
15107
+ "description": "Language-keyed jobPositions pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15108
+ "additionalProperties": true
15109
+ },
15110
+ "jobTendencies": {
15111
+ "type": "object",
15112
+ "description": "Language-keyed jobTendencies pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15113
+ "additionalProperties": true
15114
+ },
15115
+ "languagesSpoken": {
15116
+ "type": "object",
15117
+ "description": "Language-keyed languagesSpoken pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15118
+ "additionalProperties": true
15119
+ },
15120
+ "licenses": {
15121
+ "type": "object",
15122
+ "description": "Language-keyed licenses pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15123
+ "additionalProperties": true
15124
+ },
15125
+ "locationPreferences": {
15126
+ "type": "object",
15127
+ "description": "Language-keyed locationPreferences pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15128
+ "additionalProperties": true
15129
+ },
15130
+ "personalityAndSoftSkills": {
15131
+ "type": "object",
15132
+ "description": "Language-keyed personalityAndSoftSkills pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15133
+ "additionalProperties": true
15134
+ },
15135
+ "salaryExpectation": {
15136
+ "type": "object",
15137
+ "description": "Language-keyed salaryExpectation pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15138
+ "additionalProperties": true
15139
+ },
15140
+ "skillsAndExpertise": {
15141
+ "type": "object",
15142
+ "description": "Language-keyed skillsAndExpertise pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15143
+ "additionalProperties": true
15144
+ },
15145
+ "workAuthorization": {
15146
+ "type": "object",
15147
+ "description": "Language-keyed workAuthorization pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15148
+ "additionalProperties": true
15149
+ },
15150
+ "workPreferences": {
15151
+ "type": "object",
15152
+ "description": "Language-keyed workPreferences pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15153
+ "additionalProperties": true
15154
+ },
15155
+ "responsibilities": {
15156
+ "type": "object",
15157
+ "description": "Language-keyed responsibilities pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15158
+ "additionalProperties": true
15159
+ },
15160
+ "hobbiesAndInterests": {
15161
+ "type": "object",
15162
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15163
+ "additionalProperties": true
15164
+ },
15165
+ "personalTraits": {
15166
+ "type": "object",
15167
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15168
+ "additionalProperties": true
15169
+ },
15170
+ "goalsAndAspirations": {
15171
+ "type": "object",
15172
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15173
+ "additionalProperties": true
15174
+ },
15175
+ "mainFrustrations": {
15176
+ "type": "object",
15177
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15178
+ "additionalProperties": true
15179
+ },
15180
+ "keyCompetenciesAndStrengths": {
15181
+ "type": "object",
15182
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15183
+ "additionalProperties": true
15184
+ },
15185
+ "quickInsights": {
15186
+ "type": "object",
15187
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15188
+ "additionalProperties": true
15189
+ },
15190
+ "keywords": {
15191
+ "type": "object",
15192
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15193
+ "additionalProperties": true
14469
15194
  }
14470
15195
  }
14471
15196
  },
@@ -14599,17 +15324,75 @@
14599
15324
  "attributes": {
14600
15325
  "title": "PersonaAttributesSchema",
14601
15326
  "type": "object",
14602
- "required": [
14603
- "name",
14604
- "email"
14605
- ],
15327
+ "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
15328
  "properties": {
14607
- "name": {
14608
- "type": "string"
14609
- },
14610
15329
  "status": {
15330
+ "type": "string",
15331
+ "description": "Only `active` personas may be shown as a benchmark - see\n`memberCount`. Everything else is a work in progress.",
15332
+ "enum": [
15333
+ "active",
15334
+ "inactive",
15335
+ "draft",
15336
+ "pending",
15337
+ "archived",
15338
+ "failed"
15339
+ ]
15340
+ },
15341
+ "source": {
14611
15342
  "type": "string"
14612
15343
  },
15344
+ "name": {
15345
+ "type": "object",
15346
+ "description": "Language-keyed invented name for the archetype. Written once, then stable across rebuilds.",
15347
+ "additionalProperties": true
15348
+ },
15349
+ "profilePictureUrl": {
15350
+ "type": "string",
15351
+ "description": "Illustration for the archetype. Not a photograph of anyone."
15352
+ },
15353
+ "gender": {
15354
+ "type": "object",
15355
+ "description": "Language-keyed, cohort-derived. Locale value unconstrained (Any).",
15356
+ "additionalProperties": true
15357
+ },
15358
+ "ageRange": {
15359
+ "type": "object",
15360
+ "description": "Language-keyed, cohort-derived. Locale value unconstrained (Any).",
15361
+ "additionalProperties": true
15362
+ },
15363
+ "scope": {
15364
+ "type": "object",
15365
+ "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.",
15366
+ "additionalProperties": true
15367
+ },
15368
+ "scopeKey": {
15369
+ "type": "string",
15370
+ "description": "`{positionFamily}#{scope}` - the list filter (`filterScopeKey`) and the index key."
15371
+ },
15372
+ "positionFamily": {
15373
+ "type": "string",
15374
+ "description": "Slug of the role the cohort was hired for, e.g. `regional-sales-representative`."
15375
+ },
15376
+ "memberCount": {
15377
+ "type": "integer",
15378
+ "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."
15379
+ },
15380
+ "cohortRead": {
15381
+ "type": "integer",
15382
+ "description": "How many members actually fed the profile on this row (diagnostic; can be lower than memberCount)."
15383
+ },
15384
+ "talentCount": {
15385
+ "type": "integer",
15386
+ "description": "Legacy mirror of memberCount."
15387
+ },
15388
+ "version": {
15389
+ "type": "integer",
15390
+ "description": "Bumped by every rebuild that wrote something."
15391
+ },
15392
+ "publishedAt": {
15393
+ "type": "string",
15394
+ "description": "When this persona last became consumable."
15395
+ },
14613
15396
  "timestamps": {
14614
15397
  "title": "ResourceTimestampsSchema",
14615
15398
  "type": "object",
@@ -14623,6 +15406,126 @@
14623
15406
  "format": "date-time"
14624
15407
  }
14625
15408
  }
15409
+ },
15410
+ "availability": {
15411
+ "type": "object",
15412
+ "description": "Language-keyed availability pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15413
+ "additionalProperties": true
15414
+ },
15415
+ "certifications": {
15416
+ "type": "object",
15417
+ "description": "Language-keyed certifications pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15418
+ "additionalProperties": true
15419
+ },
15420
+ "companyTypeExperience": {
15421
+ "type": "object",
15422
+ "description": "Language-keyed companyTypeExperience pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15423
+ "additionalProperties": true
15424
+ },
15425
+ "education": {
15426
+ "type": "object",
15427
+ "description": "Language-keyed education pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15428
+ "additionalProperties": true
15429
+ },
15430
+ "experienceAndSeniority": {
15431
+ "type": "object",
15432
+ "description": "Language-keyed experienceAndSeniority pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15433
+ "additionalProperties": true
15434
+ },
15435
+ "industryExperience": {
15436
+ "type": "object",
15437
+ "description": "Language-keyed industryExperience pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15438
+ "additionalProperties": true
15439
+ },
15440
+ "jobPositions": {
15441
+ "type": "object",
15442
+ "description": "Language-keyed jobPositions pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15443
+ "additionalProperties": true
15444
+ },
15445
+ "jobTendencies": {
15446
+ "type": "object",
15447
+ "description": "Language-keyed jobTendencies pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15448
+ "additionalProperties": true
15449
+ },
15450
+ "languagesSpoken": {
15451
+ "type": "object",
15452
+ "description": "Language-keyed languagesSpoken pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15453
+ "additionalProperties": true
15454
+ },
15455
+ "licenses": {
15456
+ "type": "object",
15457
+ "description": "Language-keyed licenses pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15458
+ "additionalProperties": true
15459
+ },
15460
+ "locationPreferences": {
15461
+ "type": "object",
15462
+ "description": "Language-keyed locationPreferences pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15463
+ "additionalProperties": true
15464
+ },
15465
+ "personalityAndSoftSkills": {
15466
+ "type": "object",
15467
+ "description": "Language-keyed personalityAndSoftSkills pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15468
+ "additionalProperties": true
15469
+ },
15470
+ "salaryExpectation": {
15471
+ "type": "object",
15472
+ "description": "Language-keyed salaryExpectation pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15473
+ "additionalProperties": true
15474
+ },
15475
+ "skillsAndExpertise": {
15476
+ "type": "object",
15477
+ "description": "Language-keyed skillsAndExpertise pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15478
+ "additionalProperties": true
15479
+ },
15480
+ "workAuthorization": {
15481
+ "type": "object",
15482
+ "description": "Language-keyed workAuthorization pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15483
+ "additionalProperties": true
15484
+ },
15485
+ "workPreferences": {
15486
+ "type": "object",
15487
+ "description": "Language-keyed workPreferences pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15488
+ "additionalProperties": true
15489
+ },
15490
+ "responsibilities": {
15491
+ "type": "object",
15492
+ "description": "Language-keyed responsibilities pattern across the cohort. Each entry carries its own prevalence (\"N of M hired talents\").",
15493
+ "additionalProperties": true
15494
+ },
15495
+ "hobbiesAndInterests": {
15496
+ "type": "object",
15497
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15498
+ "additionalProperties": true
15499
+ },
15500
+ "personalTraits": {
15501
+ "type": "object",
15502
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15503
+ "additionalProperties": true
15504
+ },
15505
+ "goalsAndAspirations": {
15506
+ "type": "object",
15507
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15508
+ "additionalProperties": true
15509
+ },
15510
+ "mainFrustrations": {
15511
+ "type": "object",
15512
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15513
+ "additionalProperties": true
15514
+ },
15515
+ "keyCompetenciesAndStrengths": {
15516
+ "type": "object",
15517
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15518
+ "additionalProperties": true
15519
+ },
15520
+ "quickInsights": {
15521
+ "type": "object",
15522
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15523
+ "additionalProperties": true
15524
+ },
15525
+ "keywords": {
15526
+ "type": "object",
15527
+ "description": "Language-keyed narrative synthesis. Locale value unconstrained (Any) - see the candidate schema note.",
15528
+ "additionalProperties": true
14626
15529
  }
14627
15530
  }
14628
15531
  }