Alteryx · Schema
WorkflowQuestion
An analytic app question (input parameter)
AnalyticsAutomationData EngineeringData PreparationData ScienceETLMachine LearningPredictive Analytics
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the question |
| questionType | string | Type of the question input |
| description | string | Description of the question |
| value | string | Default value |
| multiple | boolean | Whether multiple selections are allowed |
| items | array | Available options for the question |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WorkflowQuestion",
"title": "WorkflowQuestion",
"type": "object",
"description": "An analytic app question (input parameter)",
"properties": {
"name": {
"type": "string",
"description": "Name of the question",
"example": "Example Title"
},
"questionType": {
"type": "string",
"description": "Type of the question input",
"example": "example_value"
},
"description": {
"type": "string",
"description": "Description of the question",
"example": "A sample description."
},
"value": {
"type": "string",
"description": "Default value",
"example": "example_value"
},
"multiple": {
"type": "boolean",
"description": "Whether multiple selections are allowed",
"example": true
},
"items": {
"type": "array",
"description": "Available options for the question",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"example": []
}
}
}