Kombo · Schema

BulkImportJobPostingLocation

The location of the job posting

ATSEmbedded iPaaSHRISLMSPayrollUnified API

Properties

Name Type Description
country string ISO 3166-1 alpha-2 country code
postal_code string Postal/ZIP code
View JSON Schema on GitHub

JSON Schema

kombo-bulkimportjobpostinglocation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkImportJobPostingLocation",
  "title": "BulkImportJobPostingLocation",
  "type": "object",
  "description": "The location of the job posting",
  "properties": {
    "country": {
      "type": "string",
      "description": "ISO 3166-1 alpha-2 country code",
      "example": "US"
    },
    "postal_code": {
      "type": "string",
      "description": "Postal/ZIP code",
      "example": "94115"
    }
  },
  "required": [
    "country"
  ]
}