Required plan
Available only in the BUSINESS plan.
Component | Type | Description |
---|---|---|
title | String | Job title |
organization | String | The name of the employing organization |
industry | String | The employing organization industry |
date_range | DateRange | Period of employment. Date ranges might be partial to designate current job or an unknown start date. See Date Range for more details. |
organization_data coming soon | Object: { "name" : String, "domain" : String, @domain_accuracy: Float } | A list of attributes about the organization: name - name of the organization domain - url of the organization's website @domain_accuracy - value between 0 and 1 that indicates the confidence of accuracy of the domain for this organization Response only. |
display | String | The full job headline for display purposes. Response only. |
Search Requirements
For a Job object to be useful for a search, it must contain either a title or an organization.
Example
{
"title": "Field Reporter",
"organization": "The Daily Planet",
"industry": "Journalism",
"date_range": {
"start": "2000-12-08",
"end": "2012-10-09"
},
"organization_data": { //coming soon
"name": "The Daily Planet", //
"domain": "thedailyplanet.com", //
"domain_accuracy": "8", //
}, //
"display": "Field Reporter at The Daily Planet (2000-2012)"
}