Paradox · Schema

Conversation

A conversation configuration

Artificial IntelligenceCandidate ScreeningChatbotConversational AIHiring AutomationHR TechnologyInterview SchedulingRecruitingSMSTalent Acquisition

Properties

Name Type Description
oid string Conversation identifier
label string Conversation name/label
is_remote integer Whether the conversation is for remote positions
deactivated integer Whether the conversation is deactivated
created_at string Creation timestamp
updated_at string Last update timestamp
View JSON Schema on GitHub

JSON Schema

paradox-conversation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Conversation",
  "title": "Conversation",
  "type": "object",
  "description": "A conversation configuration",
  "properties": {
    "oid": {
      "type": "string",
      "description": "Conversation identifier"
    },
    "label": {
      "type": "string",
      "description": "Conversation name/label"
    },
    "is_remote": {
      "type": "integer",
      "enum": [
        0,
        1
      ],
      "description": "Whether the conversation is for remote positions"
    },
    "deactivated": {
      "type": "integer",
      "enum": [
        0,
        1
      ],
      "description": "Whether the conversation is deactivated"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Creation timestamp"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Last update timestamp"
    }
  }
}