ATS (Applicant Tracking System)

Integration ProviderCandidate
JazzHR
RecruitCRM
Recruitee
Zoho Recruit

Don't see the integration provider or resource you want? Let us know and we will build it out ASAP!


Candidate: ats-candidate

A candidate is a potential hire for a position.

{         
        "address": {
            "title": "Address",
            "type": "object",
            "description": "Primary address of the candidate",
            "properties": {
              "primary_city": {
                "title": "Primary City",
                "type": "string",
                "description": "The city of the primary address."
              },
              "primary_country": {
                "title": "Primary Country",
                "type": "string",
                "description": "The country of the primary address."
              },
              "primary_postal_code": {
                "title": "Primary Postal Code",
                "type": "string",
                "description": "The postal or ZIP code of the primary address."
              },
              "primary_state": {
                "title": "Primary State",
                "type": "string",
                "description": "The state or region of the primary address."
              },
              "primary_street_1": {
                "title": "Primary Street 1",
                "type": "string",
                "description": "Line 1 of the street for the primary address."
              },
              "primary_street_2": {
                "title": "Primary Street 2",
                "type": "string",
                "description": "Line 2 of the street for the primary address."
              }
            }
          },
        "application_status": {
            "enum": [
                "NEW",
                "PENDING",
                "PROCESSED"
            ],
            "title": "Application Status",
            "type": "string",
            "description": "The current status of the candidate's application.",
        },
        "date_received": {
            "title": "Date Received",
            "type": "string",
            "format": "date-time",
            "description": "The date the application was received.",
        },
        "education": {
            "title": "Education",
            "type": "array",
            "description": "Any educational experience the candidate has provided.",
            "items": {
                "type": "object",
                "properties": {
                    "degree": {
                        "title": "Degree",
                        "type": "string"
                    },
                    "graduation_date": {
                        "format": "date",
                        "title": "Graduation Date",
                        "type": "string"
                    },
                    "institution": {
                        "title": "Institution",
                        "type": "string"
                    }
                },
            },
        },
        "email_address": {
            "format": "email",
            "title": "Email Address",
            "type": "string",
            "description":"Primary email address of the candidate"
        },
        "experience": {
            "title": "Experience",
            "type": "array",
            "description": "Any work experience the candidate has provided.",
            "items": {
                "type": "object",
                "properties": {
                    "company": {
                        "title": "Company",
                        "type": "string"
                    },
                    "end_date": {
                        "format": "date",
                        "title": "End Date",
                        "type": "string"
                    },
                    "job_title": {
                        "title": "Job Title",
                        "description": "The position that an individual works in.",
                        "type": "string"
                    },
                    "responsibilities": {
                        "title": "Responsibilities",
                        "type": "string"
                    },
                    "start_date": {
                        "format": "date",
                        "title": "Start Date",
                        "type": "string"
                    }
                },   
            },
        },
        "first_name": {
            "title": "First Name",
            "type": "string"
        },
        "last_name": {
            "title": "Last Name",
            "type": "string"
        },
        "links": {
            "title": "Links",
            "type": "array",
            "items": {
                "type": "string",
                "format": "uri",
            },
        },
        "phone_number": {
            "title": "Phone Number",
            "type": "string",
            "description":"Primary phone number of the candidate"
        },
        "references": {
            "title": "References",
            "type": "array",
            "description": "People an employer may contact for further information on a candidate.",
            "items": {
                "type": "object",
                "properties": {
                    "email_address": {
                        "format": "email",
                        "title": "Email Address",
                        "type": "string"
                    },
                    "first_name": {
                        "title": "First Name",
                        "type": "string"
                    },
                    "last_name": {
                        "title": "Last Name",
                        "type": "string"
                    },
                    "relationship": {
                        "title": "Relationship",
                        "type": "string"
                    }
                },
                
            },
        },
        "skills": {
            "title": "Skills",
            "type": "array",
            "description": "A list of skills the candidate has provided.",
            "items": {
                "type": "string"
            },
        },
    }
{
  "first_name": "Bob",
  "last_name": "Smith",
  "email_address": "[email protected]",
  "application_status":"NEW"
}