Overview
Unified keys let you pre-fill application form questions with candidate data you already store, so the candidate has less to fill in before submitting. While parsing job postings, Kombo classifies screening questions that match our catalog of common questions (e.g. a question labeled “Surname” is classified asLAST_NAME).
In your front end, you can use these classifications to pre-populate data for the candidate.
Using unified keys
The unified_key question property
Each question block in the application form contains the nullable unified_key property.
Select options
For unified keys with catalog typeENUM (questions with question_type SINGLE_SELECT or MULTI_SELECT), each option carries a nullable unified_key as well.
For example, GENDER has catalog type ENUM and supports the option keys MALE, FEMALE, NON_BINARY, and NOT_SPECIFIED.
Pre-filling questions in your UI
When you render the form, walk all questions, including those nested in sections, and fill any question whoseunified_key matches data you already store.
For a text question, write the value into the field. A question with unified_key FIRST_NAME gets the candidate’s first name.
For a select, match the option the same way. If you know your user is FEMALE, you can search for a question with unified_key GENDER, and in that question search for an option with unified_key FEMALE. If found, pre-select that option. Otherwise, leave the question to the candidate.
Submitting works the same with or without pre-filling: you submit each question_id with the candidate’s answer. Unified keys are never part of the submit payload (always use the question_id, not the unified_key).
New keys may be added over time, so treat keys you don’t handle like null.
Rendering pre-filled data in your UI
Whether to show a pre-filled question to the candidate in your UI is up to you. We recommend pre-filling and hiding primitive questions such asFIRST_NAME and LAST_NAME, as they are not contentious.
Consent questions like TERMS_AND_CONDITIONS and APPLICANT_POOL_CONSENT should stay visible: the candidate should be able to agree to those themselves.
Product implementation
When deciding which unified keys to support, consider what data you already store in your product and implement handling for the related unified keys. For example, if your product stores the candidate’s resume, first name, and last name, you’ll want to handle the following unified keys:FIRST_NAMELAST_NAMEFULL_NAMERESUME
Complete list of unified keys
Applicant Residence
Applicant Residence
Fields related to where the candidate currently lives, including full addresses, individual address components, and residence type information
Consent
Consent
Fields that require explicit consent or agreement from the candidate, including terms of service, privacy policies, and data usage permissions
Personal Information
Personal Information
Fields containing basic personal details about the candidate, including names, gender, availability, and personal documents like resumes
Phone
Phone
Fields related to phone numbers and telephonic contact information, including phone types, country codes, national numbers, and extensions.Keyed fields expect different formats:
-
FULL_PHONE_NUMBER: E.164 format -
PHONE_NATIONAL_NUMBER: national phone number format (e.g. 123 456 7890)