Paradox · Schema

Area

An area within a location

Artificial IntelligenceCandidate ScreeningChatbotConversational AIHiring AutomationHR TechnologyInterview SchedulingRecruitingSMSTalent Acquisition

Properties

Name Type Description
oid string Area identifier
name string Area name
location_id string Parent location identifier
type integer Area type: 1=area, 2=school
View JSON Schema on GitHub

JSON Schema

paradox-area-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Area",
  "title": "Area",
  "type": "object",
  "description": "An area within a location",
  "properties": {
    "oid": {
      "type": "string",
      "description": "Area identifier"
    },
    "name": {
      "type": "string",
      "description": "Area name"
    },
    "location_id": {
      "type": "string",
      "description": "Parent location identifier"
    },
    "type": {
      "type": "integer",
      "description": "Area type: 1=area, 2=school"
    }
  }
}