SmartRecruiters · Schema

Location

Human ResourcesRecruitingTalent AcquisitionApplicant TrackingHR Technology

Properties

Name Type Description
country string ISO 3166-1 alpha-2 country code
countryCode string
region string
city string
address string
postalCode string
remote boolean Whether the position is remote
View JSON Schema on GitHub

JSON Schema

smartrecruiters-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Location",
  "title": "Location",
  "type": "object",
  "properties": {
    "country": {
      "type": "string",
      "description": "ISO 3166-1 alpha-2 country code"
    },
    "countryCode": {
      "type": "string"
    },
    "region": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "address": {
      "type": "string"
    },
    "postalCode": {
      "type": "string"
    },
    "remote": {
      "type": "boolean",
      "description": "Whether the position is remote"
    }
  }
}