Properties
| Name | Type | Description |
|---|---|---|
| offer_history | array | |
| application_id | string | |
| start_date | string | |
| offer_status | object | |
| salary | number | |
| currency | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AtsCreateOfferRequestDto",
"title": "AtsCreateOfferRequestDto",
"type": "object",
"properties": {
"offer_history": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OfferHistory"
}
},
"application_id": {
"type": "string"
},
"start_date": {
"type": "string",
"format": "date-time"
},
"offer_status": {
"$ref": "#/components/schemas/OfferStatusEnum"
},
"salary": {
"type": "number"
},
"currency": {
"type": "string"
}
},
"required": [
"application_id",
"start_date",
"offer_status"
]
}