Paradox · Schema

LocationCreate

Request body for creating a new location

Artificial IntelligenceCandidate ScreeningChatbotConversational AIHiring AutomationHR TechnologyInterview SchedulingRecruitingSMSTalent Acquisition

Properties

Name Type Description
name string Location name
job_loc_code string Job location code
address string Street address
city string
state string
zip_code string
country string
timezone string
View JSON Schema on GitHub

JSON Schema

paradox-locationcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LocationCreate",
  "title": "LocationCreate",
  "type": "object",
  "description": "Request body for creating a new location",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Location name"
    },
    "job_loc_code": {
      "type": "string",
      "description": "Job location code"
    },
    "address": {
      "type": "string",
      "description": "Street address"
    },
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "zip_code": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "timezone": {
      "type": "string"
    }
  }
}