Paradox · Schema

AreaCreate

Request body for creating a new area

Artificial IntelligenceCandidate ScreeningChatbotConversational AIHiring AutomationHR TechnologyInterview SchedulingRecruitingSMSTalent Acquisition

Properties

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

JSON Schema

paradox-areacreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AreaCreate",
  "title": "AreaCreate",
  "type": "object",
  "description": "Request body for creating a new area",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Area name"
    },
    "type": {
      "type": "integer",
      "description": "Area type: 1=area, 2=school"
    }
  }
}