Properties
| Name | Type | Description |
|---|---|---|
| packages | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PutAssessmentPackagesRequestBody",
"title": "PutAssessmentPackagesRequestBody",
"type": "object",
"properties": {
"packages": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "A unique identifier for the assessment package."
},
"type": {
"type": "string",
"enum": [
"BEHAVIORAL",
"VIDEO_INTERVIEW",
"SKILLS_TEST",
"BACKGROUND_CHECK",
"REFERENCE_CHECK"
]
},
"name": {
"type": "string",
"description": "The name of the assessment package."
},
"description": {
"type": "string",
"description": "Description about the package. Some ATSs will display this in their UI."
}
},
"required": [
"id",
"type",
"name",
"description"
]
}
}
},
"required": [
"packages"
]
}