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

JSON Schema

indeed-countryspecificattributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CountrySpecificAttributes",
  "title": "CountrySpecificAttributes",
  "type": "object",
  "description": "Country-scoped employer attributes. Provide an ISO 3166-1 two-letter country code to specify the country.",
  "required": [
    "country"
  ],
  "properties": {
    "country": {
      "type": "string",
      "description": "ISO 3166-1 alpha-2 country code.",
      "pattern": "^[A-Z]{2}$",
      "example": "US"
    },
    "websiteUrl": {
      "type": "string",
      "format": "uri",
      "description": "The employer's website URL for this country.",
      "example": "https://www.acmecorp.com"
    },
    "phoneNumber": {
      "type": "string",
      "description": "The employer's contact phone number for this country.",
      "example": "+1-555-123-4567"
    },
    "address": {
      "$ref": "#/components/schemas/Address"
    }
  }
}