@smartytalent/openai-tools 0.1.33-dev.36 → 0.1.33-dev.37
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 +385 -31
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -15792,10 +15792,41 @@
|
|
|
15792
15792
|
"parameters": {
|
|
15793
15793
|
"type": "object",
|
|
15794
15794
|
"properties": {
|
|
15795
|
+
"filterStatus": {
|
|
15796
|
+
"type": "string",
|
|
15797
|
+
"description": "Filter by template status.",
|
|
15798
|
+
"enum": [
|
|
15799
|
+
"draft",
|
|
15800
|
+
"active",
|
|
15801
|
+
"archived",
|
|
15802
|
+
"failed",
|
|
15803
|
+
"pending"
|
|
15804
|
+
]
|
|
15805
|
+
},
|
|
15806
|
+
"filterCreatedFrom": {
|
|
15807
|
+
"type": "string",
|
|
15808
|
+
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
15809
|
+
},
|
|
15810
|
+
"filterCreatedTo": {
|
|
15811
|
+
"type": "string",
|
|
15812
|
+
"description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
|
|
15813
|
+
},
|
|
15814
|
+
"filterModifiedFrom": {
|
|
15815
|
+
"type": "string",
|
|
15816
|
+
"description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
|
|
15817
|
+
},
|
|
15818
|
+
"filterModifiedTo": {
|
|
15819
|
+
"type": "string",
|
|
15820
|
+
"description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
|
|
15821
|
+
},
|
|
15795
15822
|
"pageSize": {
|
|
15796
15823
|
"type": "integer",
|
|
15797
15824
|
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
15798
15825
|
},
|
|
15826
|
+
"pageNumber": {
|
|
15827
|
+
"type": "integer",
|
|
15828
|
+
"description": "Specifies the page number to retrieve. Used for traditional pagination."
|
|
15829
|
+
},
|
|
15799
15830
|
"pageAfter": {
|
|
15800
15831
|
"type": "string",
|
|
15801
15832
|
"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."
|
|
@@ -15836,21 +15867,23 @@
|
|
|
15836
15867
|
},
|
|
15837
15868
|
"attributes": {
|
|
15838
15869
|
"title": "AssessmentAttributesSchema",
|
|
15870
|
+
"description": "Template-only attributes for an assessment. The candidate's run of an\nassessment (answers, scores, evaluation, proctoring) lives on the\nAttempt resource - see AttemptAttributesSchema.",
|
|
15839
15871
|
"type": "object",
|
|
15840
15872
|
"properties": {
|
|
15841
15873
|
"status": {
|
|
15842
15874
|
"type": "string",
|
|
15875
|
+
"description": "Template lifecycle. Candidate-side state (inProgress/submitted/\nevaluated/etc.) lives on attempts. `pending` is a transient state\nset when the AI Generate Step Function is in flight - the row\nflips to `active` once questions land.",
|
|
15843
15876
|
"enum": [
|
|
15844
|
-
"
|
|
15845
|
-
"
|
|
15846
|
-
"
|
|
15847
|
-
"
|
|
15848
|
-
"
|
|
15849
|
-
"failed"
|
|
15877
|
+
"draft",
|
|
15878
|
+
"active",
|
|
15879
|
+
"archived",
|
|
15880
|
+
"failed",
|
|
15881
|
+
"pending"
|
|
15850
15882
|
]
|
|
15851
15883
|
},
|
|
15852
15884
|
"duration": {
|
|
15853
|
-
"type": "integer"
|
|
15885
|
+
"type": "integer",
|
|
15886
|
+
"description": "Time limit for the candidate to complete the assessment, in minutes. Defaults to 30."
|
|
15854
15887
|
},
|
|
15855
15888
|
"antiCheatingLevel": {
|
|
15856
15889
|
"type": "string",
|
|
@@ -15860,17 +15893,170 @@
|
|
|
15860
15893
|
"RIGOROUS"
|
|
15861
15894
|
]
|
|
15862
15895
|
},
|
|
15863
|
-
"totalScore": {
|
|
15864
|
-
"type": "number"
|
|
15865
|
-
},
|
|
15866
15896
|
"passingScore": {
|
|
15867
|
-
"type": "number"
|
|
15868
|
-
|
|
15869
|
-
"passed": {
|
|
15870
|
-
"type": "boolean"
|
|
15897
|
+
"type": "number",
|
|
15898
|
+
"description": "Score threshold (0-100) for `evaluation.passed=true` on attempts of this template. Defaults to 60."
|
|
15871
15899
|
},
|
|
15872
15900
|
"languageCode": {
|
|
15873
|
-
"type": "string"
|
|
15901
|
+
"type": "string",
|
|
15902
|
+
"description": "Default language tag used when the candidate UI doesn't specify one (e.g. 'en-US', 'pl-PL')."
|
|
15903
|
+
},
|
|
15904
|
+
"name": {
|
|
15905
|
+
"type": "object",
|
|
15906
|
+
"description": "Multilingual template name. Keys are locale tags, values are the localized title.",
|
|
15907
|
+
"additionalProperties": {
|
|
15908
|
+
"type": "string"
|
|
15909
|
+
}
|
|
15910
|
+
},
|
|
15911
|
+
"description": {
|
|
15912
|
+
"type": "object",
|
|
15913
|
+
"description": "Multilingual template description shown to the candidate before they start.",
|
|
15914
|
+
"additionalProperties": {
|
|
15915
|
+
"type": "string"
|
|
15916
|
+
}
|
|
15917
|
+
},
|
|
15918
|
+
"questions": {
|
|
15919
|
+
"type": "array",
|
|
15920
|
+
"description": "Question bank. See QuestionSchema for per-type schemas.",
|
|
15921
|
+
"items": {
|
|
15922
|
+
"title": "QuestionSchema",
|
|
15923
|
+
"description": "A single assessment question. Eight question types - the optional\nfields below are interpreted based on `type`. See\n`Question.value` shapes in AnswerSchema for what the candidate\nsends back per type.\n\nSECURITY: `answerKey`, `scoringRubric`, and `options[].isCorrect`\nare stripped server-side before responses are returned to candidates\nvia /v1/guest/attempts/* - they are recruiter-only fields.",
|
|
15924
|
+
"type": "object",
|
|
15925
|
+
"required": [
|
|
15926
|
+
"questionId",
|
|
15927
|
+
"type"
|
|
15928
|
+
],
|
|
15929
|
+
"properties": {
|
|
15930
|
+
"questionId": {
|
|
15931
|
+
"type": "string",
|
|
15932
|
+
"description": "Stable identifier (e.g. 'q1'). Candidates' answers reference this."
|
|
15933
|
+
},
|
|
15934
|
+
"type": {
|
|
15935
|
+
"type": "string",
|
|
15936
|
+
"enum": [
|
|
15937
|
+
"single-choice",
|
|
15938
|
+
"multiple-choice",
|
|
15939
|
+
"scale",
|
|
15940
|
+
"open-text",
|
|
15941
|
+
"ranking",
|
|
15942
|
+
"situational-judgment",
|
|
15943
|
+
"file-upload",
|
|
15944
|
+
"video-recording"
|
|
15945
|
+
]
|
|
15946
|
+
},
|
|
15947
|
+
"category": {
|
|
15948
|
+
"type": "string",
|
|
15949
|
+
"description": "Free-form tag for analytics (e.g. 'soft-skills', 'hard-skills', 'general')."
|
|
15950
|
+
},
|
|
15951
|
+
"difficulty": {
|
|
15952
|
+
"type": "string",
|
|
15953
|
+
"enum": [
|
|
15954
|
+
"easy",
|
|
15955
|
+
"medium",
|
|
15956
|
+
"hard"
|
|
15957
|
+
]
|
|
15958
|
+
},
|
|
15959
|
+
"points": {
|
|
15960
|
+
"type": "number",
|
|
15961
|
+
"description": "Maximum score for this question. Defaults to 1."
|
|
15962
|
+
},
|
|
15963
|
+
"required": {
|
|
15964
|
+
"type": "boolean"
|
|
15965
|
+
},
|
|
15966
|
+
"text": {
|
|
15967
|
+
"type": "object",
|
|
15968
|
+
"description": "Multilingual question text.",
|
|
15969
|
+
"additionalProperties": {
|
|
15970
|
+
"type": "string"
|
|
15971
|
+
}
|
|
15972
|
+
},
|
|
15973
|
+
"options": {
|
|
15974
|
+
"type": "array",
|
|
15975
|
+
"description": "Choices for single-choice / multiple-choice / ranking /\nsituational-judgment. Canonical shape is\n`{ id, text: { locale: string }, isCorrect?: bool }`. Bare\nlocale-map options exist in legacy data but are deprecated.",
|
|
15976
|
+
"items": {
|
|
15977
|
+
"type": "object",
|
|
15978
|
+
"properties": {
|
|
15979
|
+
"id": {
|
|
15980
|
+
"type": "string",
|
|
15981
|
+
"description": "Stable option id - candidates' answers reference this."
|
|
15982
|
+
},
|
|
15983
|
+
"text": {
|
|
15984
|
+
"type": "object",
|
|
15985
|
+
"additionalProperties": {
|
|
15986
|
+
"type": "string"
|
|
15987
|
+
}
|
|
15988
|
+
},
|
|
15989
|
+
"isCorrect": {
|
|
15990
|
+
"type": "boolean",
|
|
15991
|
+
"description": "Recruiter-only. Stripped server-side from guest responses."
|
|
15992
|
+
}
|
|
15993
|
+
}
|
|
15994
|
+
}
|
|
15995
|
+
},
|
|
15996
|
+
"scaleMin": {
|
|
15997
|
+
"type": "integer",
|
|
15998
|
+
"description": "Lower bound for `scale` type questions."
|
|
15999
|
+
},
|
|
16000
|
+
"scaleMax": {
|
|
16001
|
+
"type": "integer",
|
|
16002
|
+
"description": "Upper bound for `scale` type questions."
|
|
16003
|
+
},
|
|
16004
|
+
"scaleLabels": {
|
|
16005
|
+
"type": "object",
|
|
16006
|
+
"description": "Optional labels per step value, multilingual.\n`{ \"1\": { \"en-US\": \"Strongly disagree\" }, \"5\": { \"en-US\": \"Strongly agree\" } }`.",
|
|
16007
|
+
"additionalProperties": {
|
|
16008
|
+
"type": "object",
|
|
16009
|
+
"additionalProperties": {
|
|
16010
|
+
"type": "string"
|
|
16011
|
+
}
|
|
16012
|
+
}
|
|
16013
|
+
},
|
|
16014
|
+
"placeholder": {
|
|
16015
|
+
"type": "object",
|
|
16016
|
+
"description": "Multilingual placeholder text for `open-text` questions.",
|
|
16017
|
+
"additionalProperties": {
|
|
16018
|
+
"type": "string"
|
|
16019
|
+
}
|
|
16020
|
+
},
|
|
16021
|
+
"scenario": {
|
|
16022
|
+
"type": "object",
|
|
16023
|
+
"description": "Multilingual scenario body for `situational-judgment` questions.",
|
|
16024
|
+
"additionalProperties": {
|
|
16025
|
+
"type": "string"
|
|
16026
|
+
}
|
|
16027
|
+
},
|
|
16028
|
+
"acceptedFormats": {
|
|
16029
|
+
"type": "array",
|
|
16030
|
+
"description": "Accepted MIME or extension list for `file-upload` (e.g. ['.pdf', '.png']).",
|
|
16031
|
+
"items": {
|
|
16032
|
+
"type": "string"
|
|
16033
|
+
}
|
|
16034
|
+
},
|
|
16035
|
+
"maxDuration": {
|
|
16036
|
+
"type": "integer",
|
|
16037
|
+
"description": "Maximum recording length in seconds for `video-recording`."
|
|
16038
|
+
},
|
|
16039
|
+
"maxAttempts": {
|
|
16040
|
+
"type": "integer",
|
|
16041
|
+
"description": "Maximum recording retakes the candidate may use on `video-recording`."
|
|
16042
|
+
},
|
|
16043
|
+
"explanation": {
|
|
16044
|
+
"type": "object",
|
|
16045
|
+
"description": "Multilingual explanation shown post-submission on review screens.",
|
|
16046
|
+
"additionalProperties": {
|
|
16047
|
+
"type": "string"
|
|
16048
|
+
}
|
|
16049
|
+
},
|
|
16050
|
+
"answerKey": {
|
|
16051
|
+
"type": "string",
|
|
16052
|
+
"description": "Recruiter-only. The correct option id for `single-choice`. NEVER\nreturned by /v1/guest/attempts/* endpoints."
|
|
16053
|
+
},
|
|
16054
|
+
"scoringRubric": {
|
|
16055
|
+
"type": "string",
|
|
16056
|
+
"description": "Recruiter-only. Free-form scoring rubric the AI evaluator uses\nfor `open-text`. NEVER returned by guest endpoints."
|
|
16057
|
+
}
|
|
16058
|
+
}
|
|
16059
|
+
}
|
|
15874
16060
|
},
|
|
15875
16061
|
"timestamps": {
|
|
15876
16062
|
"title": "ResourceTimestampsSchema",
|
|
@@ -15990,21 +16176,23 @@
|
|
|
15990
16176
|
},
|
|
15991
16177
|
"attributes": {
|
|
15992
16178
|
"title": "AssessmentAttributesSchema",
|
|
16179
|
+
"description": "Template-only attributes for an assessment. The candidate's run of an\nassessment (answers, scores, evaluation, proctoring) lives on the\nAttempt resource - see AttemptAttributesSchema.",
|
|
15993
16180
|
"type": "object",
|
|
15994
16181
|
"properties": {
|
|
15995
16182
|
"status": {
|
|
15996
16183
|
"type": "string",
|
|
16184
|
+
"description": "Template lifecycle. Candidate-side state (inProgress/submitted/\nevaluated/etc.) lives on attempts. `pending` is a transient state\nset when the AI Generate Step Function is in flight - the row\nflips to `active` once questions land.",
|
|
15997
16185
|
"enum": [
|
|
15998
|
-
"
|
|
15999
|
-
"
|
|
16000
|
-
"
|
|
16001
|
-
"
|
|
16002
|
-
"
|
|
16003
|
-
"failed"
|
|
16186
|
+
"draft",
|
|
16187
|
+
"active",
|
|
16188
|
+
"archived",
|
|
16189
|
+
"failed",
|
|
16190
|
+
"pending"
|
|
16004
16191
|
]
|
|
16005
16192
|
},
|
|
16006
16193
|
"duration": {
|
|
16007
|
-
"type": "integer"
|
|
16194
|
+
"type": "integer",
|
|
16195
|
+
"description": "Time limit for the candidate to complete the assessment, in minutes. Defaults to 30."
|
|
16008
16196
|
},
|
|
16009
16197
|
"antiCheatingLevel": {
|
|
16010
16198
|
"type": "string",
|
|
@@ -16014,17 +16202,170 @@
|
|
|
16014
16202
|
"RIGOROUS"
|
|
16015
16203
|
]
|
|
16016
16204
|
},
|
|
16017
|
-
"totalScore": {
|
|
16018
|
-
"type": "number"
|
|
16019
|
-
},
|
|
16020
16205
|
"passingScore": {
|
|
16021
|
-
"type": "number"
|
|
16022
|
-
|
|
16023
|
-
"passed": {
|
|
16024
|
-
"type": "boolean"
|
|
16206
|
+
"type": "number",
|
|
16207
|
+
"description": "Score threshold (0-100) for `evaluation.passed=true` on attempts of this template. Defaults to 60."
|
|
16025
16208
|
},
|
|
16026
16209
|
"languageCode": {
|
|
16027
|
-
"type": "string"
|
|
16210
|
+
"type": "string",
|
|
16211
|
+
"description": "Default language tag used when the candidate UI doesn't specify one (e.g. 'en-US', 'pl-PL')."
|
|
16212
|
+
},
|
|
16213
|
+
"name": {
|
|
16214
|
+
"type": "object",
|
|
16215
|
+
"description": "Multilingual template name. Keys are locale tags, values are the localized title.",
|
|
16216
|
+
"additionalProperties": {
|
|
16217
|
+
"type": "string"
|
|
16218
|
+
}
|
|
16219
|
+
},
|
|
16220
|
+
"description": {
|
|
16221
|
+
"type": "object",
|
|
16222
|
+
"description": "Multilingual template description shown to the candidate before they start.",
|
|
16223
|
+
"additionalProperties": {
|
|
16224
|
+
"type": "string"
|
|
16225
|
+
}
|
|
16226
|
+
},
|
|
16227
|
+
"questions": {
|
|
16228
|
+
"type": "array",
|
|
16229
|
+
"description": "Question bank. See QuestionSchema for per-type schemas.",
|
|
16230
|
+
"items": {
|
|
16231
|
+
"title": "QuestionSchema",
|
|
16232
|
+
"description": "A single assessment question. Eight question types - the optional\nfields below are interpreted based on `type`. See\n`Question.value` shapes in AnswerSchema for what the candidate\nsends back per type.\n\nSECURITY: `answerKey`, `scoringRubric`, and `options[].isCorrect`\nare stripped server-side before responses are returned to candidates\nvia /v1/guest/attempts/* - they are recruiter-only fields.",
|
|
16233
|
+
"type": "object",
|
|
16234
|
+
"required": [
|
|
16235
|
+
"questionId",
|
|
16236
|
+
"type"
|
|
16237
|
+
],
|
|
16238
|
+
"properties": {
|
|
16239
|
+
"questionId": {
|
|
16240
|
+
"type": "string",
|
|
16241
|
+
"description": "Stable identifier (e.g. 'q1'). Candidates' answers reference this."
|
|
16242
|
+
},
|
|
16243
|
+
"type": {
|
|
16244
|
+
"type": "string",
|
|
16245
|
+
"enum": [
|
|
16246
|
+
"single-choice",
|
|
16247
|
+
"multiple-choice",
|
|
16248
|
+
"scale",
|
|
16249
|
+
"open-text",
|
|
16250
|
+
"ranking",
|
|
16251
|
+
"situational-judgment",
|
|
16252
|
+
"file-upload",
|
|
16253
|
+
"video-recording"
|
|
16254
|
+
]
|
|
16255
|
+
},
|
|
16256
|
+
"category": {
|
|
16257
|
+
"type": "string",
|
|
16258
|
+
"description": "Free-form tag for analytics (e.g. 'soft-skills', 'hard-skills', 'general')."
|
|
16259
|
+
},
|
|
16260
|
+
"difficulty": {
|
|
16261
|
+
"type": "string",
|
|
16262
|
+
"enum": [
|
|
16263
|
+
"easy",
|
|
16264
|
+
"medium",
|
|
16265
|
+
"hard"
|
|
16266
|
+
]
|
|
16267
|
+
},
|
|
16268
|
+
"points": {
|
|
16269
|
+
"type": "number",
|
|
16270
|
+
"description": "Maximum score for this question. Defaults to 1."
|
|
16271
|
+
},
|
|
16272
|
+
"required": {
|
|
16273
|
+
"type": "boolean"
|
|
16274
|
+
},
|
|
16275
|
+
"text": {
|
|
16276
|
+
"type": "object",
|
|
16277
|
+
"description": "Multilingual question text.",
|
|
16278
|
+
"additionalProperties": {
|
|
16279
|
+
"type": "string"
|
|
16280
|
+
}
|
|
16281
|
+
},
|
|
16282
|
+
"options": {
|
|
16283
|
+
"type": "array",
|
|
16284
|
+
"description": "Choices for single-choice / multiple-choice / ranking /\nsituational-judgment. Canonical shape is\n`{ id, text: { locale: string }, isCorrect?: bool }`. Bare\nlocale-map options exist in legacy data but are deprecated.",
|
|
16285
|
+
"items": {
|
|
16286
|
+
"type": "object",
|
|
16287
|
+
"properties": {
|
|
16288
|
+
"id": {
|
|
16289
|
+
"type": "string",
|
|
16290
|
+
"description": "Stable option id - candidates' answers reference this."
|
|
16291
|
+
},
|
|
16292
|
+
"text": {
|
|
16293
|
+
"type": "object",
|
|
16294
|
+
"additionalProperties": {
|
|
16295
|
+
"type": "string"
|
|
16296
|
+
}
|
|
16297
|
+
},
|
|
16298
|
+
"isCorrect": {
|
|
16299
|
+
"type": "boolean",
|
|
16300
|
+
"description": "Recruiter-only. Stripped server-side from guest responses."
|
|
16301
|
+
}
|
|
16302
|
+
}
|
|
16303
|
+
}
|
|
16304
|
+
},
|
|
16305
|
+
"scaleMin": {
|
|
16306
|
+
"type": "integer",
|
|
16307
|
+
"description": "Lower bound for `scale` type questions."
|
|
16308
|
+
},
|
|
16309
|
+
"scaleMax": {
|
|
16310
|
+
"type": "integer",
|
|
16311
|
+
"description": "Upper bound for `scale` type questions."
|
|
16312
|
+
},
|
|
16313
|
+
"scaleLabels": {
|
|
16314
|
+
"type": "object",
|
|
16315
|
+
"description": "Optional labels per step value, multilingual.\n`{ \"1\": { \"en-US\": \"Strongly disagree\" }, \"5\": { \"en-US\": \"Strongly agree\" } }`.",
|
|
16316
|
+
"additionalProperties": {
|
|
16317
|
+
"type": "object",
|
|
16318
|
+
"additionalProperties": {
|
|
16319
|
+
"type": "string"
|
|
16320
|
+
}
|
|
16321
|
+
}
|
|
16322
|
+
},
|
|
16323
|
+
"placeholder": {
|
|
16324
|
+
"type": "object",
|
|
16325
|
+
"description": "Multilingual placeholder text for `open-text` questions.",
|
|
16326
|
+
"additionalProperties": {
|
|
16327
|
+
"type": "string"
|
|
16328
|
+
}
|
|
16329
|
+
},
|
|
16330
|
+
"scenario": {
|
|
16331
|
+
"type": "object",
|
|
16332
|
+
"description": "Multilingual scenario body for `situational-judgment` questions.",
|
|
16333
|
+
"additionalProperties": {
|
|
16334
|
+
"type": "string"
|
|
16335
|
+
}
|
|
16336
|
+
},
|
|
16337
|
+
"acceptedFormats": {
|
|
16338
|
+
"type": "array",
|
|
16339
|
+
"description": "Accepted MIME or extension list for `file-upload` (e.g. ['.pdf', '.png']).",
|
|
16340
|
+
"items": {
|
|
16341
|
+
"type": "string"
|
|
16342
|
+
}
|
|
16343
|
+
},
|
|
16344
|
+
"maxDuration": {
|
|
16345
|
+
"type": "integer",
|
|
16346
|
+
"description": "Maximum recording length in seconds for `video-recording`."
|
|
16347
|
+
},
|
|
16348
|
+
"maxAttempts": {
|
|
16349
|
+
"type": "integer",
|
|
16350
|
+
"description": "Maximum recording retakes the candidate may use on `video-recording`."
|
|
16351
|
+
},
|
|
16352
|
+
"explanation": {
|
|
16353
|
+
"type": "object",
|
|
16354
|
+
"description": "Multilingual explanation shown post-submission on review screens.",
|
|
16355
|
+
"additionalProperties": {
|
|
16356
|
+
"type": "string"
|
|
16357
|
+
}
|
|
16358
|
+
},
|
|
16359
|
+
"answerKey": {
|
|
16360
|
+
"type": "string",
|
|
16361
|
+
"description": "Recruiter-only. The correct option id for `single-choice`. NEVER\nreturned by /v1/guest/attempts/* endpoints."
|
|
16362
|
+
},
|
|
16363
|
+
"scoringRubric": {
|
|
16364
|
+
"type": "string",
|
|
16365
|
+
"description": "Recruiter-only. Free-form scoring rubric the AI evaluator uses\nfor `open-text`. NEVER returned by guest endpoints."
|
|
16366
|
+
}
|
|
16367
|
+
}
|
|
16368
|
+
}
|
|
16028
16369
|
},
|
|
16029
16370
|
"timestamps": {
|
|
16030
16371
|
"title": "ResourceTimestampsSchema",
|
|
@@ -16055,7 +16396,16 @@
|
|
|
16055
16396
|
"description": "Delete Assessment",
|
|
16056
16397
|
"parameters": {
|
|
16057
16398
|
"type": "object",
|
|
16058
|
-
"properties": {
|
|
16399
|
+
"properties": {
|
|
16400
|
+
"permanentDelete": {
|
|
16401
|
+
"type": "string",
|
|
16402
|
+
"description": "When `true`, hard-delete the row. Otherwise sets status to archived.",
|
|
16403
|
+
"enum": [
|
|
16404
|
+
"true",
|
|
16405
|
+
"false"
|
|
16406
|
+
]
|
|
16407
|
+
}
|
|
16408
|
+
}
|
|
16059
16409
|
}
|
|
16060
16410
|
}
|
|
16061
16411
|
},
|
|
@@ -16343,6 +16693,8 @@
|
|
|
16343
16693
|
}
|
|
16344
16694
|
},
|
|
16345
16695
|
"meta": {
|
|
16696
|
+
"title": "GuestMetaSchema",
|
|
16697
|
+
"description": "Auth context for unauthenticated /v1/guest/attempts/* writes.\ntenantId scopes the call; accessToken is the per-attempt token\nissued at create time. Token mismatch returns 404 (intentionally\nindistinguishable from \"attempt not found\" so we don't leak\nattempt existence).",
|
|
16346
16698
|
"type": "object",
|
|
16347
16699
|
"required": [
|
|
16348
16700
|
"tenantId",
|
|
@@ -16477,6 +16829,8 @@
|
|
|
16477
16829
|
}
|
|
16478
16830
|
},
|
|
16479
16831
|
"meta": {
|
|
16832
|
+
"title": "GuestMetaSchema",
|
|
16833
|
+
"description": "Auth context for unauthenticated /v1/guest/attempts/* writes.\ntenantId scopes the call; accessToken is the per-attempt token\nissued at create time. Token mismatch returns 404 (intentionally\nindistinguishable from \"attempt not found\" so we don't leak\nattempt existence).",
|
|
16480
16834
|
"type": "object",
|
|
16481
16835
|
"required": [
|
|
16482
16836
|
"tenantId",
|