Paradox · Schema

Role

A user role definition

Artificial IntelligenceCandidate ScreeningChatbotConversational AIHiring AutomationHR TechnologyInterview SchedulingRecruitingSMSTalent Acquisition

Properties

Name Type Description
id string Role identifier
name string Role name
description string Role description
View JSON Schema on GitHub

JSON Schema

paradox-role-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Role",
  "title": "Role",
  "type": "object",
  "description": "A user role definition",
  "properties": {
    "id": {
      "type": "string",
      "description": "Role identifier"
    },
    "name": {
      "type": "string",
      "description": "Role name"
    },
    "description": {
      "type": "string",
      "description": "Role description"
    }
  }
}