@smartytalent/openai-tools 0.9.8 → 0.9.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tools.json +295 -16
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -362,7 +362,7 @@
|
|
|
362
362
|
},
|
|
363
363
|
"limits": {
|
|
364
364
|
"type": "object",
|
|
365
|
-
"description": "Anti-abuse limits for the inbound
|
|
365
|
+
"description": "Anti-abuse limits for the inbound channels (inbound-call arc; email-intake daily budgets since EM-P1). Declared ahead of enforcement so generated clients carry the key (the typed settings schema is a whitelist - undeclared keys are silently dropped by the SDK). Sysowner-only on PATCH (cost-protection config, the boeMetering precedent); the call values are inert until the P4 limiter ships, the emailIntake* budgets are enforced by the inbound email Lambda.",
|
|
366
366
|
"properties": {
|
|
367
367
|
"callsPerCliHour": {
|
|
368
368
|
"type": "integer",
|
|
@@ -397,6 +397,18 @@
|
|
|
397
397
|
"type": "integer",
|
|
398
398
|
"minimum": 1,
|
|
399
399
|
"description": "Daily outbound-SMS budget for the tenant across the inbound-call channel (2b rails; container default applies when unset)"
|
|
400
|
+
},
|
|
401
|
+
"emailIntakeRepliesDay": {
|
|
402
|
+
"type": "integer",
|
|
403
|
+
"minimum": 1,
|
|
404
|
+
"default": 200,
|
|
405
|
+
"description": "Budget of automated intake mails the email channel may handle on the tenant's behalf (EM-P1 guard 3, every tenant from day one - no opt-in flag). Enforced over a ROLLING 24 h window, not a UTC day - the door reopens 24 h after the oldest counted mail, not at midnight. Counted from `intake_admitted` signals (one per mail admitted to the classifier, so silent branches consume budget too); over budget = silence + `rejected_rate_limit` signal + one Google Chat alarm per 24 h. Code default applies when unset."
|
|
406
|
+
},
|
|
407
|
+
"emailIntakeSubmissionsDay": {
|
|
408
|
+
"type": "integer",
|
|
409
|
+
"minimum": 1,
|
|
410
|
+
"default": 50,
|
|
411
|
+
"description": "Budget of submissions the email intake may create for the tenant (EM-P1 guard 3). Enforced over a ROLLING 24 h window, not a UTC day. Counted from `intake_submitted` signals; over budget = silence + `rejected_rate_limit` signal. Code default applies when unset."
|
|
400
412
|
}
|
|
401
413
|
}
|
|
402
414
|
}
|
|
@@ -881,7 +893,7 @@
|
|
|
881
893
|
},
|
|
882
894
|
"limits": {
|
|
883
895
|
"type": "object",
|
|
884
|
-
"description": "Anti-abuse limits for the inbound
|
|
896
|
+
"description": "Anti-abuse limits for the inbound channels (inbound-call arc; email-intake daily budgets since EM-P1). Declared ahead of enforcement so generated clients carry the key (the typed settings schema is a whitelist - undeclared keys are silently dropped by the SDK). Sysowner-only on PATCH (cost-protection config, the boeMetering precedent); the call values are inert until the P4 limiter ships, the emailIntake* budgets are enforced by the inbound email Lambda.",
|
|
885
897
|
"properties": {
|
|
886
898
|
"callsPerCliHour": {
|
|
887
899
|
"type": "integer",
|
|
@@ -916,6 +928,18 @@
|
|
|
916
928
|
"type": "integer",
|
|
917
929
|
"minimum": 1,
|
|
918
930
|
"description": "Daily outbound-SMS budget for the tenant across the inbound-call channel (2b rails; container default applies when unset)"
|
|
931
|
+
},
|
|
932
|
+
"emailIntakeRepliesDay": {
|
|
933
|
+
"type": "integer",
|
|
934
|
+
"minimum": 1,
|
|
935
|
+
"default": 200,
|
|
936
|
+
"description": "Budget of automated intake mails the email channel may handle on the tenant's behalf (EM-P1 guard 3, every tenant from day one - no opt-in flag). Enforced over a ROLLING 24 h window, not a UTC day - the door reopens 24 h after the oldest counted mail, not at midnight. Counted from `intake_admitted` signals (one per mail admitted to the classifier, so silent branches consume budget too); over budget = silence + `rejected_rate_limit` signal + one Google Chat alarm per 24 h. Code default applies when unset."
|
|
937
|
+
},
|
|
938
|
+
"emailIntakeSubmissionsDay": {
|
|
939
|
+
"type": "integer",
|
|
940
|
+
"minimum": 1,
|
|
941
|
+
"default": 50,
|
|
942
|
+
"description": "Budget of submissions the email intake may create for the tenant (EM-P1 guard 3). Enforced over a ROLLING 24 h window, not a UTC day. Counted from `intake_submitted` signals; over budget = silence + `rejected_rate_limit` signal. Code default applies when unset."
|
|
919
943
|
}
|
|
920
944
|
}
|
|
921
945
|
}
|
|
@@ -4580,6 +4604,10 @@
|
|
|
4580
4604
|
"title"
|
|
4581
4605
|
],
|
|
4582
4606
|
"properties": {
|
|
4607
|
+
"ownerId": {
|
|
4608
|
+
"type": "string",
|
|
4609
|
+
"description": "userId of the job owner (set server-side at create; the Boe user on workflow-built jobs). Read-only."
|
|
4610
|
+
},
|
|
4583
4611
|
"title": {
|
|
4584
4612
|
"title": "JobAttributesTitleSchema",
|
|
4585
4613
|
"description": "The job title/position. Language-keyed object where keys are locale codes (e.g. en-US, pl-PL).",
|
|
@@ -5406,6 +5434,10 @@
|
|
|
5406
5434
|
"title"
|
|
5407
5435
|
],
|
|
5408
5436
|
"properties": {
|
|
5437
|
+
"ownerId": {
|
|
5438
|
+
"type": "string",
|
|
5439
|
+
"description": "userId of the job owner (set server-side at create; the Boe user on workflow-built jobs). Read-only."
|
|
5440
|
+
},
|
|
5409
5441
|
"title": {
|
|
5410
5442
|
"title": "JobAttributesTitleSchema",
|
|
5411
5443
|
"description": "The job title/position. Language-keyed object where keys are locale codes (e.g. en-US, pl-PL).",
|
|
@@ -7807,6 +7839,10 @@
|
|
|
7807
7839
|
"type": "boolean",
|
|
7808
7840
|
"description": "Return only emails the system (broker / classifier) flagged as spam. Used by the Spam folder's `isSystemSpam=true` leg - the other leg comes from `/v1/states?folder=spam`. Backed by a filter-expression scan across shards for v1; promote to a sparse `SystemSpamIndex` if load warrants. Mutually exclusive with the other index-backed filters at the pagination layer."
|
|
7809
7841
|
},
|
|
7842
|
+
"filterLabelId": {
|
|
7843
|
+
"type": "string",
|
|
7844
|
+
"description": "Return only emails carrying this label. Server-side filter on the denormalised `labelIds` of relationships.labels. Mutually exclusive with the other filters - one filter at a time. Results are sorted by created desc."
|
|
7845
|
+
},
|
|
7810
7846
|
"sort": {
|
|
7811
7847
|
"type": "string",
|
|
7812
7848
|
"description": "Order results by a time field. Leading `-` means descending\n(newest-first). Accepted values:\n `-created` newest-first by creation time (CreatedIndex)\n `created` oldest-first by creation time\n `-modified` most-recently-modified first (ModifiedIndex)\n `modified` least-recently-modified first\nTakes effect only when no equality filter (filterStatus,\nfilterConversationId, filterDirection) dictates a different\nindex; equality filters win. Compatible with date-range filters\n(filterCreatedFrom/To, filterModifiedFrom/To) which already use\nthe same indexes; sort just picks the direction.",
|
|
@@ -7973,7 +8009,7 @@
|
|
|
7973
8009
|
},
|
|
7974
8010
|
"type": {
|
|
7975
8011
|
"type": "string",
|
|
7976
|
-
"description": "Resource type this attachment belongs to. User-uploaded attachments use `files`; system-generated attachments use the owning resource type: `jobs`, `personas`, `talents`, `candidates`, `reports`, `ads`."
|
|
8012
|
+
"description": "Resource type this attachment belongs to. User-uploaded attachments use `files`; system-generated attachments use the owning resource type: `jobs`, `personas`, `talents`, `candidates`, `reports`, `ads`, `briefs`. Calendar invites use `emails` - the mail itself owns the .ics."
|
|
7977
8013
|
},
|
|
7978
8014
|
"fileId": {
|
|
7979
8015
|
"type": "string",
|
|
@@ -8033,7 +8069,8 @@
|
|
|
8033
8069
|
},
|
|
8034
8070
|
"meta": {
|
|
8035
8071
|
"type": "object",
|
|
8036
|
-
"additionalProperties": true
|
|
8072
|
+
"additionalProperties": true,
|
|
8073
|
+
"description": "Not populated on the wire - the email meta rides at the resource level (data.meta, see EmailResourceSchema.meta). Kept for client compatibility only."
|
|
8037
8074
|
},
|
|
8038
8075
|
"timestamps": {
|
|
8039
8076
|
"title": "ResourceTimestampsSchema",
|
|
@@ -8099,6 +8136,28 @@
|
|
|
8099
8136
|
}
|
|
8100
8137
|
}
|
|
8101
8138
|
},
|
|
8139
|
+
"labels": {
|
|
8140
|
+
"title": "EmailRelationshipsLabelsSchema",
|
|
8141
|
+
"description": "Labels (label service definitions) attached to this email. To-many; wire contract declared ahead of use (D-D, 2026-08-31) - always empty in EM-P1, the email-labels package stamps system labels later. Per-user manual labelling stays in /v1/states flags.labels and is NOT mirrored here.",
|
|
8142
|
+
"type": "object",
|
|
8143
|
+
"properties": {
|
|
8144
|
+
"data": {
|
|
8145
|
+
"type": "array",
|
|
8146
|
+
"items": {
|
|
8147
|
+
"title": "EmailRelationshipsLabelsDataSchema",
|
|
8148
|
+
"type": "object",
|
|
8149
|
+
"properties": {
|
|
8150
|
+
"type": {
|
|
8151
|
+
"type": "string"
|
|
8152
|
+
},
|
|
8153
|
+
"id": {
|
|
8154
|
+
"type": "string"
|
|
8155
|
+
}
|
|
8156
|
+
}
|
|
8157
|
+
}
|
|
8158
|
+
}
|
|
8159
|
+
}
|
|
8160
|
+
},
|
|
8102
8161
|
"candidate": {
|
|
8103
8162
|
"title": "EmailRelationshipsCandidateSchema",
|
|
8104
8163
|
"type": "object",
|
|
@@ -8117,6 +8176,25 @@
|
|
|
8117
8176
|
}
|
|
8118
8177
|
}
|
|
8119
8178
|
},
|
|
8179
|
+
"talent": {
|
|
8180
|
+
"title": "EmailRelationshipsTalentSchema",
|
|
8181
|
+
"description": "The Talent (durable person) this email belongs to. To-one, nullable. Stamped at create by email:persist_inbound / the inbound email Lambda when the sender resolved to a known talent or candidate; rows written before the talent existed (a guest's application mail, the consent ask, the YES) stay unlinked - the conversation owns the linkage (SPEC_TALENT_COMMS_OWNERSHIP). No filterTalent on listEmails yet: list a talent's mail through its conversations.",
|
|
8182
|
+
"type": "object",
|
|
8183
|
+
"properties": {
|
|
8184
|
+
"data": {
|
|
8185
|
+
"title": "EmailRelationshipsTalentDataSchema",
|
|
8186
|
+
"type": "object",
|
|
8187
|
+
"properties": {
|
|
8188
|
+
"type": {
|
|
8189
|
+
"type": "string"
|
|
8190
|
+
},
|
|
8191
|
+
"id": {
|
|
8192
|
+
"type": "string"
|
|
8193
|
+
}
|
|
8194
|
+
}
|
|
8195
|
+
}
|
|
8196
|
+
}
|
|
8197
|
+
},
|
|
8120
8198
|
"conversations": {
|
|
8121
8199
|
"title": "EmailRelationshipsConversationsSchema",
|
|
8122
8200
|
"type": "object",
|
|
@@ -8431,7 +8509,7 @@
|
|
|
8431
8509
|
},
|
|
8432
8510
|
"type": {
|
|
8433
8511
|
"type": "string",
|
|
8434
|
-
"description": "Resource type this attachment belongs to. User-uploaded attachments use `files`; system-generated attachments use the owning resource type: `jobs`, `personas`, `talents`, `candidates`, `reports`, `ads`."
|
|
8512
|
+
"description": "Resource type this attachment belongs to. User-uploaded attachments use `files`; system-generated attachments use the owning resource type: `jobs`, `personas`, `talents`, `candidates`, `reports`, `ads`, `briefs`. Calendar invites use `emails` - the mail itself owns the .ics."
|
|
8435
8513
|
},
|
|
8436
8514
|
"fileId": {
|
|
8437
8515
|
"type": "string",
|
|
@@ -8491,7 +8569,8 @@
|
|
|
8491
8569
|
},
|
|
8492
8570
|
"meta": {
|
|
8493
8571
|
"type": "object",
|
|
8494
|
-
"additionalProperties": true
|
|
8572
|
+
"additionalProperties": true,
|
|
8573
|
+
"description": "Not populated on the wire - the email meta rides at the resource level (data.meta, see EmailResourceSchema.meta). Kept for client compatibility only."
|
|
8495
8574
|
},
|
|
8496
8575
|
"timestamps": {
|
|
8497
8576
|
"title": "ResourceTimestampsSchema",
|
|
@@ -12109,7 +12188,7 @@
|
|
|
12109
12188
|
},
|
|
12110
12189
|
"meta": {
|
|
12111
12190
|
"type": "object",
|
|
12112
|
-
"description": "
|
|
12191
|
+
"description": "Not populated on the wire - the submission meta rides at the resource level (data.meta, see SubmissionResourceSchema.meta). Kept for client compatibility only."
|
|
12113
12192
|
},
|
|
12114
12193
|
"timestamps": {
|
|
12115
12194
|
"title": "ResourceTimestampsSchema",
|
|
@@ -12601,7 +12680,7 @@
|
|
|
12601
12680
|
},
|
|
12602
12681
|
"meta": {
|
|
12603
12682
|
"type": "object",
|
|
12604
|
-
"description": "
|
|
12683
|
+
"description": "Not populated on the wire - the submission meta rides at the resource level (data.meta, see SubmissionResourceSchema.meta). Kept for client compatibility only."
|
|
12605
12684
|
},
|
|
12606
12685
|
"timestamps": {
|
|
12607
12686
|
"title": "ResourceTimestampsSchema",
|
|
@@ -17493,13 +17572,18 @@
|
|
|
17493
17572
|
"type": "string",
|
|
17494
17573
|
"enum": [
|
|
17495
17574
|
"tenant",
|
|
17496
|
-
"user"
|
|
17575
|
+
"user",
|
|
17576
|
+
"system"
|
|
17497
17577
|
],
|
|
17498
|
-
"description": "tenant = visible to every user in the tenant; user = visible only to the owner."
|
|
17578
|
+
"description": "tenant = visible to every user in the tenant; user = visible only to the owner; system = seeded and stamped by the platform; read-only (create/update/delete via the API are rejected)."
|
|
17579
|
+
},
|
|
17580
|
+
"systemKey": {
|
|
17581
|
+
"type": "string",
|
|
17582
|
+
"description": "Present only on scope=system rows: stable machine key naming the platform intent. `application` = inbound e-mail application, `talent_pool` = talent-pool opt-in (application without a job), `status` = status inquiry about an existing application, `withdrawal` = withdrawal / opt-out acknowledgement. Null on tenant/user labels. Filter or branch on this key, never on the localised name."
|
|
17499
17583
|
},
|
|
17500
17584
|
"ownerId": {
|
|
17501
17585
|
"type": "string",
|
|
17502
|
-
"description": "Set server-side from the caller. Tenant-scope: tenantId. User-scope: the authenticated user's full userId."
|
|
17586
|
+
"description": "Set server-side from the caller. Tenant-scope: tenantId. User-scope: the authenticated user's full userId. System-scope: the tenant base id, stamped by the seeder."
|
|
17503
17587
|
},
|
|
17504
17588
|
"resourceTypes": {
|
|
17505
17589
|
"type": "array",
|
|
@@ -17609,13 +17693,18 @@
|
|
|
17609
17693
|
"type": "string",
|
|
17610
17694
|
"enum": [
|
|
17611
17695
|
"tenant",
|
|
17612
|
-
"user"
|
|
17696
|
+
"user",
|
|
17697
|
+
"system"
|
|
17613
17698
|
],
|
|
17614
|
-
"description": "tenant = visible to every user in the tenant; user = visible only to the owner."
|
|
17699
|
+
"description": "tenant = visible to every user in the tenant; user = visible only to the owner; system = seeded and stamped by the platform; read-only (create/update/delete via the API are rejected)."
|
|
17700
|
+
},
|
|
17701
|
+
"systemKey": {
|
|
17702
|
+
"type": "string",
|
|
17703
|
+
"description": "Present only on scope=system rows: stable machine key naming the platform intent. `application` = inbound e-mail application, `talent_pool` = talent-pool opt-in (application without a job), `status` = status inquiry about an existing application, `withdrawal` = withdrawal / opt-out acknowledgement. Null on tenant/user labels. Filter or branch on this key, never on the localised name."
|
|
17615
17704
|
},
|
|
17616
17705
|
"ownerId": {
|
|
17617
17706
|
"type": "string",
|
|
17618
|
-
"description": "Set server-side from the caller. Tenant-scope: tenantId. User-scope: the authenticated user's full userId."
|
|
17707
|
+
"description": "Set server-side from the caller. Tenant-scope: tenantId. User-scope: the authenticated user's full userId. System-scope: the tenant base id, stamped by the seeder."
|
|
17619
17708
|
},
|
|
17620
17709
|
"resourceTypes": {
|
|
17621
17710
|
"type": "array",
|
|
@@ -19958,7 +20047,8 @@
|
|
|
19958
20047
|
},
|
|
19959
20048
|
"meta": {
|
|
19960
20049
|
"type": "object",
|
|
19961
|
-
"additionalProperties": true
|
|
20050
|
+
"additionalProperties": true,
|
|
20051
|
+
"description": "Not populated on the wire - the conversation meta rides at the resource level (data.meta, see ConversationResourceSchema.meta). Kept for client compatibility only."
|
|
19962
20052
|
},
|
|
19963
20053
|
"timestamps": {
|
|
19964
20054
|
"title": "ResourceTimestampsSchema",
|
|
@@ -20082,6 +20172,28 @@
|
|
|
20082
20172
|
}
|
|
20083
20173
|
}
|
|
20084
20174
|
},
|
|
20175
|
+
"labels": {
|
|
20176
|
+
"title": "ConversationRelationshipsLabelsSchema",
|
|
20177
|
+
"description": "Labels (label service definitions) attached to this conversation. To-many; wire contract declared ahead of use (D-D, 2026-08-31) - always empty in EM-P1, the email-labels package stamps system labels later. Not PATCH-mergeable (the conversation update door merges to-one keys only); per-user manual labelling stays in /v1/states flags.labels.",
|
|
20178
|
+
"type": "object",
|
|
20179
|
+
"properties": {
|
|
20180
|
+
"data": {
|
|
20181
|
+
"type": "array",
|
|
20182
|
+
"items": {
|
|
20183
|
+
"title": "ConversationRelationshipsLabelsDataSchema",
|
|
20184
|
+
"type": "object",
|
|
20185
|
+
"properties": {
|
|
20186
|
+
"type": {
|
|
20187
|
+
"type": "string"
|
|
20188
|
+
},
|
|
20189
|
+
"id": {
|
|
20190
|
+
"type": "string"
|
|
20191
|
+
}
|
|
20192
|
+
}
|
|
20193
|
+
}
|
|
20194
|
+
}
|
|
20195
|
+
}
|
|
20196
|
+
},
|
|
20085
20197
|
"talent": {
|
|
20086
20198
|
"title": "ConversationRelationshipsTalentSchema",
|
|
20087
20199
|
"type": "object",
|
|
@@ -20233,7 +20345,8 @@
|
|
|
20233
20345
|
},
|
|
20234
20346
|
"meta": {
|
|
20235
20347
|
"type": "object",
|
|
20236
|
-
"additionalProperties": true
|
|
20348
|
+
"additionalProperties": true,
|
|
20349
|
+
"description": "Not populated on the wire - the conversation meta rides at the resource level (data.meta, see ConversationResourceSchema.meta). Kept for client compatibility only."
|
|
20237
20350
|
},
|
|
20238
20351
|
"timestamps": {
|
|
20239
20352
|
"title": "ResourceTimestampsSchema",
|
|
@@ -20250,6 +20363,172 @@
|
|
|
20250
20363
|
}
|
|
20251
20364
|
}
|
|
20252
20365
|
}
|
|
20366
|
+
},
|
|
20367
|
+
"relationships": {
|
|
20368
|
+
"title": "ConversationRelationshipsSchema",
|
|
20369
|
+
"type": "object",
|
|
20370
|
+
"properties": {
|
|
20371
|
+
"candidate": {
|
|
20372
|
+
"title": "ConversationRelationshipsCandidateSchema",
|
|
20373
|
+
"type": "object",
|
|
20374
|
+
"properties": {
|
|
20375
|
+
"data": {
|
|
20376
|
+
"title": "ConversationRelationshipsCandidateDataSchema",
|
|
20377
|
+
"type": "object",
|
|
20378
|
+
"properties": {
|
|
20379
|
+
"type": {
|
|
20380
|
+
"type": "string"
|
|
20381
|
+
},
|
|
20382
|
+
"id": {
|
|
20383
|
+
"type": "string"
|
|
20384
|
+
}
|
|
20385
|
+
}
|
|
20386
|
+
}
|
|
20387
|
+
}
|
|
20388
|
+
},
|
|
20389
|
+
"emails": {
|
|
20390
|
+
"title": "ConversationRelationshipsEmailsSchema",
|
|
20391
|
+
"type": "object",
|
|
20392
|
+
"properties": {
|
|
20393
|
+
"data": {
|
|
20394
|
+
"type": "array",
|
|
20395
|
+
"items": {
|
|
20396
|
+
"title": "ConversationRelationshipsEmailsDataSchema",
|
|
20397
|
+
"type": "object",
|
|
20398
|
+
"properties": {
|
|
20399
|
+
"type": {
|
|
20400
|
+
"type": "string"
|
|
20401
|
+
},
|
|
20402
|
+
"id": {
|
|
20403
|
+
"type": "string"
|
|
20404
|
+
}
|
|
20405
|
+
}
|
|
20406
|
+
}
|
|
20407
|
+
}
|
|
20408
|
+
}
|
|
20409
|
+
},
|
|
20410
|
+
"chats": {
|
|
20411
|
+
"title": "ConversationRelationshipsChatsSchema",
|
|
20412
|
+
"type": "object",
|
|
20413
|
+
"properties": {
|
|
20414
|
+
"data": {
|
|
20415
|
+
"type": "array",
|
|
20416
|
+
"items": {
|
|
20417
|
+
"title": "ConversationRelationshipsChatsDataSchema",
|
|
20418
|
+
"type": "object",
|
|
20419
|
+
"properties": {
|
|
20420
|
+
"type": {
|
|
20421
|
+
"type": "string"
|
|
20422
|
+
},
|
|
20423
|
+
"id": {
|
|
20424
|
+
"type": "string"
|
|
20425
|
+
}
|
|
20426
|
+
}
|
|
20427
|
+
}
|
|
20428
|
+
}
|
|
20429
|
+
}
|
|
20430
|
+
},
|
|
20431
|
+
"calls": {
|
|
20432
|
+
"title": "ConversationRelationshipsCallsSchema",
|
|
20433
|
+
"type": "object",
|
|
20434
|
+
"properties": {
|
|
20435
|
+
"data": {
|
|
20436
|
+
"type": "array",
|
|
20437
|
+
"items": {
|
|
20438
|
+
"title": "ConversationRelationshipsCallsDataSchema",
|
|
20439
|
+
"type": "object",
|
|
20440
|
+
"properties": {
|
|
20441
|
+
"type": {
|
|
20442
|
+
"type": "string"
|
|
20443
|
+
},
|
|
20444
|
+
"id": {
|
|
20445
|
+
"type": "string"
|
|
20446
|
+
}
|
|
20447
|
+
}
|
|
20448
|
+
}
|
|
20449
|
+
}
|
|
20450
|
+
}
|
|
20451
|
+
},
|
|
20452
|
+
"meetings": {
|
|
20453
|
+
"title": "ConversationRelationshipsMeetingsSchema",
|
|
20454
|
+
"type": "object",
|
|
20455
|
+
"properties": {
|
|
20456
|
+
"data": {
|
|
20457
|
+
"type": "array",
|
|
20458
|
+
"items": {
|
|
20459
|
+
"title": "ConversationRelationshipsMeetingsDataSchema",
|
|
20460
|
+
"type": "object",
|
|
20461
|
+
"properties": {
|
|
20462
|
+
"type": {
|
|
20463
|
+
"type": "string"
|
|
20464
|
+
},
|
|
20465
|
+
"id": {
|
|
20466
|
+
"type": "string"
|
|
20467
|
+
}
|
|
20468
|
+
}
|
|
20469
|
+
}
|
|
20470
|
+
}
|
|
20471
|
+
}
|
|
20472
|
+
},
|
|
20473
|
+
"labels": {
|
|
20474
|
+
"title": "ConversationRelationshipsLabelsSchema",
|
|
20475
|
+
"description": "Labels (label service definitions) attached to this conversation. To-many; wire contract declared ahead of use (D-D, 2026-08-31) - always empty in EM-P1, the email-labels package stamps system labels later. Not PATCH-mergeable (the conversation update door merges to-one keys only); per-user manual labelling stays in /v1/states flags.labels.",
|
|
20476
|
+
"type": "object",
|
|
20477
|
+
"properties": {
|
|
20478
|
+
"data": {
|
|
20479
|
+
"type": "array",
|
|
20480
|
+
"items": {
|
|
20481
|
+
"title": "ConversationRelationshipsLabelsDataSchema",
|
|
20482
|
+
"type": "object",
|
|
20483
|
+
"properties": {
|
|
20484
|
+
"type": {
|
|
20485
|
+
"type": "string"
|
|
20486
|
+
},
|
|
20487
|
+
"id": {
|
|
20488
|
+
"type": "string"
|
|
20489
|
+
}
|
|
20490
|
+
}
|
|
20491
|
+
}
|
|
20492
|
+
}
|
|
20493
|
+
}
|
|
20494
|
+
},
|
|
20495
|
+
"talent": {
|
|
20496
|
+
"title": "ConversationRelationshipsTalentSchema",
|
|
20497
|
+
"type": "object",
|
|
20498
|
+
"properties": {
|
|
20499
|
+
"data": {
|
|
20500
|
+
"title": "ConversationRelationshipsTalentDataSchema",
|
|
20501
|
+
"type": "object",
|
|
20502
|
+
"properties": {
|
|
20503
|
+
"type": {
|
|
20504
|
+
"type": "string"
|
|
20505
|
+
},
|
|
20506
|
+
"id": {
|
|
20507
|
+
"type": "string"
|
|
20508
|
+
}
|
|
20509
|
+
}
|
|
20510
|
+
}
|
|
20511
|
+
}
|
|
20512
|
+
},
|
|
20513
|
+
"job": {
|
|
20514
|
+
"title": "ConversationRelationshipsJobSchema",
|
|
20515
|
+
"type": "object",
|
|
20516
|
+
"properties": {
|
|
20517
|
+
"data": {
|
|
20518
|
+
"title": "ConversationRelationshipsJobDataSchema",
|
|
20519
|
+
"type": "object",
|
|
20520
|
+
"properties": {
|
|
20521
|
+
"type": {
|
|
20522
|
+
"type": "string"
|
|
20523
|
+
},
|
|
20524
|
+
"id": {
|
|
20525
|
+
"type": "string"
|
|
20526
|
+
}
|
|
20527
|
+
}
|
|
20528
|
+
}
|
|
20529
|
+
}
|
|
20530
|
+
}
|
|
20531
|
+
}
|
|
20253
20532
|
}
|
|
20254
20533
|
}
|
|
20255
20534
|
}
|