Raw schema
{
"type": "object",
"properties": {
"profile": {
"type": "object",
"properties": {
"cfg_name": {
"type": "string",
"description": "Full name of the job seeker"
},
"cfg_email": {
"type": "string",
"description": "Must match the email the API key is registered to"
},
"cfg_location": {
"type": "string",
"description": "Where they live, e.g. \"Limassol, Cyprus\""
},
"cfg_location_preference": {
"type": "string",
"description": "Prose description of acceptable locations"
},
"cfg_work_style": {
"type": "string",
"enum": [
"remote_only",
"mix",
"hybrid"
]
},
"cfg_want_remote_eu": {
"type": "string",
"enum": [
"yes",
"no"
]
},
"cfg_want_remote_uk": {
"type": "string",
"enum": [
"yes",
"no"
]
},
"cfg_want_usa": {
"type": "string",
"enum": [
"yes",
"no"
]
},
"cfg_languages": {
"default": [
"english"
],
"type": "array",
"items": {
"type": "string"
}
},
"cfg_seniority": {
"type": "string",
"description": "Target level, e.g. \"senior\" or \"head of engineering\""
},
"cfg_industries": {
"type": "string",
"description": "Comma-separated industries of interest"
},
"cfg_not_interested_in": {
"default": "",
"description": "Comma-separated industries to exclude",
"type": "string"
},
"cfg_advisory_open": {
"default": "yes",
"type": "string",
"enum": [
"yes",
"no"
]
},
"cfg_additional_context": {
"default": "",
"description": "Anything else that shapes the search",
"type": "string"
},
"cfg_share_with_employers": {
"default": "no",
"type": "string",
"enum": [
"yes",
"no"
]
}
},
"required": [
"cfg_name",
"cfg_email",
"cfg_location",
"cfg_location_preference",
"cfg_work_style",
"cfg_want_remote_eu",
"cfg_want_remote_uk",
"cfg_want_usa",
"cfg_seniority",
"cfg_industries"
]
},
"cv_base64": {
"type": "string",
"description": "The job seeker CV as base64, PDF or DOCX"
},
"cv_type": {
"default": "application/pdf",
"description": "pdf, docx, or the MIME type",
"type": "string"
}
},
"required": [
"profile",
"cv_base64"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}