Properties
| Name | Type | Description |
|---|---|---|
| description | string | |
| id | string | |
| options | object | |
| prompt | string | |
| question | string | |
| required | boolean | |
| type | string |
JSON Schema
{
"$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"
}