Paradox · Schema

SchoolArea

A school or area associated with the company

Artificial IntelligenceCandidate ScreeningChatbotConversational AIHiring AutomationHR TechnologyInterview SchedulingRecruitingSMSTalent Acquisition

Properties

Name Type Description
oid string School/area identifier
name string School/area name
type integer Type: 1=area, 2=school
View JSON Schema on GitHub

JSON Schema

paradox-schoolarea-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SchoolArea",
  "title": "SchoolArea",
  "type": "object",
  "description": "A school or area associated with the company",
  "properties": {
    "oid": {
      "type": "string",
      "description": "School/area identifier"
    },
    "name": {
      "type": "string",
      "description": "School/area name"
    },
    "type": {
      "type": "integer",
      "enum": [
        1,
        2
      ],
      "description": "Type: 1=area, 2=school"
    }
  }
}