Indeed · Schema

CountrySpecificAttributes

Country-scoped employer attributes. Provide an ISO 3166-1 two-letter country code to specify the country.

CareersEmploymentHiringJob SearchJobsRecruiting

Properties

Name Type Description
country string ISO 3166-1 alpha-2 country code.
websiteUrl string The employer's website URL for this country.
phoneNumber string The employer's contact phone number for this country.
View JSON Schema on GitHub

JSON Schema

indeed-employer-country-specific-attributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CountrySpecificAttributes",
  "type": "object",
  "description": "Country-scoped employer attributes. Provide an ISO 3166-1 two-letter country code to specify the country.",
  "properties": {
    "country": {
      "type": "string",
      "description": "ISO 3166-1 alpha-2 country code."
    },
    "websiteUrl": {
      "type": "string",
      "description": "The employer's website URL for this country."
    },
    "phoneNumber": {
      "type": "string",
      "description": "The employer's contact phone number for this country."
    }
  }
}