Indeed · Schema

JobLocation

The location of the job.

CareersEmploymentHiringJob SearchJobsRecruiting

Properties

Name Type Description
streetAddress string Street address of the job location.
city string City where the job is located.
state string State, province, or region.
postalCode string Postal or ZIP code.
country string ISO 3166-1 alpha-2 country code.
formattedAddress string A human-readable formatted address string.
View JSON Schema on GitHub

JSON Schema

indeed-employer-job-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "JobLocation",
  "type": "object",
  "description": "The location of the job.",
  "properties": {
    "streetAddress": {
      "type": "string",
      "description": "Street address of the job location."
    },
    "city": {
      "type": "string",
      "description": "City where the job is located."
    },
    "state": {
      "type": "string",
      "description": "State, province, or region."
    },
    "postalCode": {
      "type": "string",
      "description": "Postal or ZIP code."
    },
    "country": {
      "type": "string",
      "description": "ISO 3166-1 alpha-2 country code."
    },
    "formattedAddress": {
      "type": "string",
      "description": "A human-readable formatted address string."
    }
  }
}