LinkedIn · Schema

JobPostingTaskResult

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
status string
jobPostingUrn string URN of the created job posting
errorMessage string Error message if task failed
View JSON Schema on GitHub

JSON Schema

linkedin-jobpostingtaskresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JobPostingTaskResult",
  "title": "JobPostingTaskResult",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "PENDING",
        "SUCCEEDED",
        "FAILED"
      ],
      "example": "SUCCEEDED"
    },
    "jobPostingUrn": {
      "type": "string",
      "description": "URN of the created job posting",
      "example": "urn:li:jobPosting:2722131308"
    },
    "errorMessage": {
      "type": "string",
      "description": "Error message if task failed",
      "example": "example_value"
    }
  }
}