{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AtsUpdateCandidatesRequestDto", "title": "AtsUpdateCandidatesRequestDto", "type": "object", "properties": { "phone": { "type": "string" }, "company": { "type": "string" }, "title": { "type": "string" }, "application_ids": { "type": "array", "items": { "type": "string" } }, "name": { "type": "string" }, "first_name": { "type": "string" }, "last_name": { "type": "string" }, "emails": { "type": "array", "items": { "$ref": "#/components/schemas/CandidateEmail" } } } }