Unified.to · Schema

AtsJobQuestion

IntegrationsUnified API

Properties

Name Type Description
description string
id string
options object
prompt string
question string
required boolean
type string
View JSON Schema on GitHub

JSON Schema

unified-to-atsjobquestion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AtsJobQuestion",
  "title": "AtsJobQuestion",
  "properties": {
    "description": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "options": {
      "$ref": "#/components/schemas/property_AtsJobQuestion_options"
    },
    "prompt": {
      "type": "string"
    },
    "question": {
      "type": "string"
    },
    "required": {
      "type": "boolean"
    },
    "type": {
      "enum": [
        "TEXT",
        "NUMBER",
        "DATE",
        "BOOLEAN",
        "MULTIPLE_CHOICE",
        "FILE",
        "TEXTAREA",
        "MULTIPLE_SELECT",
        "UNIVERSITY",
        "YES_NO",
        "CURRENCY",
        "URL"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    }
  },
  "required": [
    "question",
    "type"
  ],
  "type": "object"
}