Indeed · Schema

CreateJobPostingPayload

Response payload from a job posting creation operation.

CareersEmploymentHiringJob SearchJobsRecruiting

Properties

Name Type Description
results array
totalCreated integer Total number of job postings successfully created.
totalFailed integer Total number of job postings that failed to create.
View JSON Schema on GitHub

JSON Schema

indeed-employer-create-job-posting-payload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CreateJobPostingPayload",
  "type": "object",
  "description": "Response payload from a job posting creation operation.",
  "properties": {
    "results": {
      "type": "array"
    },
    "totalCreated": {
      "type": "integer",
      "description": "Total number of job postings successfully created."
    },
    "totalFailed": {
      "type": "integer",
      "description": "Total number of job postings that failed to create."
    }
  }
}