Indeed · Schema

Salary

Salary or compensation details for the job posting.

CareersEmploymentHiringJob SearchJobsRecruiting

Properties

Name Type Description
minimumAmount number The minimum salary amount.
maximumAmount number The maximum salary amount.
currency string ISO 4217 currency code.
period string The pay period for the salary.
View JSON Schema on GitHub

JSON Schema

indeed-employer-salary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Salary",
  "type": "object",
  "description": "Salary or compensation details for the job posting.",
  "properties": {
    "minimumAmount": {
      "type": "number",
      "description": "The minimum salary amount."
    },
    "maximumAmount": {
      "type": "number",
      "description": "The maximum salary amount."
    },
    "currency": {
      "type": "string",
      "description": "ISO 4217 currency code."
    },
    "period": {
      "type": "string",
      "description": "The pay period for the salary."
    }
  }
}