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.
employerAttributes object
View JSON Schema on GitHub

JSON Schema

indeed-patchemployerinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchEmployerInput",
  "title": "PatchEmployerInput",
  "type": "object",
  "description": "Input for creating or updating an employer on Indeed.",
  "required": [
    "id"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "A globally unique employer identifier composed of the ATS identifier and the employer's ID within that system.",
      "example": "ats-partner_employer-12345"
    },
    "employerName": {
      "type": "string",
      "description": "The employer's display name. Required when creating a new employer, optional when updating an existing one.",
      "example": "Acme Corporation"
    },
    "employerAttributes": {
      "$ref": "#/components/schemas/EmployerAttributes"
    }
  }
}