Paradox · Schema

RoomCreate

Request body for creating a new room

Artificial IntelligenceCandidate ScreeningChatbotConversational AIHiring AutomationHR TechnologyInterview SchedulingRecruitingSMSTalent Acquisition

Properties

Name Type Description
name string Room name
capacity integer Room capacity
View JSON Schema on GitHub

JSON Schema

paradox-roomcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RoomCreate",
  "title": "RoomCreate",
  "type": "object",
  "description": "Request body for creating a new room",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Room name"
    },
    "capacity": {
      "type": "integer",
      "description": "Room capacity"
    }
  }
}