Paradox · Schema

Room

A room within a location used for interviews

Artificial IntelligenceCandidate ScreeningChatbotConversational AIHiring AutomationHR TechnologyInterview SchedulingRecruitingSMSTalent Acquisition

Properties

Name Type Description
oid string Room identifier
name string Room name
location_id string Parent location identifier
capacity integer Room capacity
active boolean Whether the room is active
View JSON Schema on GitHub

JSON Schema

paradox-room-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Room",
  "title": "Room",
  "type": "object",
  "description": "A room within a location used for interviews",
  "properties": {
    "oid": {
      "type": "string",
      "description": "Room identifier"
    },
    "name": {
      "type": "string",
      "description": "Room name"
    },
    "location_id": {
      "type": "string",
      "description": "Parent location identifier"
    },
    "capacity": {
      "type": "integer",
      "description": "Room capacity"
    },
    "active": {
      "type": "boolean",
      "description": "Whether the room is active"
    }
  }
}