Indeed · Schema

PatchEmployerInput

Input for creating or updating an employer on Indeed.

CareersEmploymentHiringJob SearchJobsRecruiting

Properties

Name Type Description
id string A globally unique employer identifier composed of the ATS identifier and the employer's ID within that system.
employerName string The employer's display name. Required when creating a new employer, optional when updating an existing one.
View JSON Schema on GitHub

JSON Schema

indeed-employer-patch-employer-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PatchEmployerInput",
  "type": "object",
  "description": "Input for creating or updating an employer on Indeed.",
  "properties": {
    "id": {
      "type": "string",
      "description": "A globally unique employer identifier composed of the ATS identifier and the employer's ID within that system."
    },
    "employerName": {
      "type": "string",
      "description": "The employer's display name. Required when creating a new employer, optional when updating an existing one."
    }
  }
}