Paradox · Schema

Location

A physical location or job site in the Paradox platform

Artificial IntelligenceCandidate ScreeningChatbotConversational AIHiring AutomationHR TechnologyInterview SchedulingRecruitingSMSTalent Acquisition

Properties

Name Type Description
oid string Location identifier
name string Location name
job_loc_code string Job location code
address string Street address
city string City
state string State or province
zip_code string Postal code
country string Country
timezone string Location timezone
active boolean Whether the location is active
created_at string Creation timestamp
updated_at string Last update timestamp
View JSON Schema on GitHub

JSON Schema

paradox-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Location",
  "title": "Location",
  "type": "object",
  "description": "A physical location or job site in the Paradox platform",
  "properties": {
    "oid": {
      "type": "string",
      "description": "Location identifier"
    },
    "name": {
      "type": "string",
      "description": "Location name"
    },
    "job_loc_code": {
      "type": "string",
      "description": "Job location code"
    },
    "address": {
      "type": "string",
      "description": "Street address"
    },
    "city": {
      "type": "string",
      "description": "City"
    },
    "state": {
      "type": "string",
      "description": "State or province"
    },
    "zip_code": {
      "type": "string",
      "description": "Postal code"
    },
    "country": {
      "type": "string",
      "description": "Country"
    },
    "timezone": {
      "type": "string",
      "description": "Location timezone"
    },
    "active": {
      "type": "boolean",
      "description": "Whether the location is active"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Creation timestamp"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Last update timestamp"
    }
  }
}