automation-anywhere · Schema
BotInputVariable
Typed input variable value to pass to a bot at deployment time
Properties
| Name | Type | Description |
|---|---|---|
| type | string | Data type of the variable. Must match the variable type defined in the bot (e.g., STRING, NUMBER, BOOLEAN, LIST, DICTIONARY, DATETIME). |
| string | string | String value for STRING type variables |
| number | string | Numeric value as a string for NUMBER type variables |
| boolean | boolean | Boolean value for BOOLEAN type variables |
| list | object | List structure for LIST type variables |
| dictionary | object | Key-value map for DICTIONARY type variables |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BotInputVariable",
"title": "BotInputVariable",
"type": "object",
"description": "Typed input variable value to pass to a bot at deployment time",
"properties": {
"type": {
"type": "string",
"description": "Data type of the variable. Must match the variable type defined in the bot (e.g., STRING, NUMBER, BOOLEAN, LIST, DICTIONARY, DATETIME).",
"enum": [
"STRING",
"NUMBER",
"BOOLEAN",
"LIST",
"DICTIONARY",
"DATETIME",
"CREDENTIAL"
]
},
"string": {
"type": "string",
"description": "String value for STRING type variables"
},
"number": {
"type": "string",
"description": "Numeric value as a string for NUMBER type variables"
},
"boolean": {
"type": "boolean",
"description": "Boolean value for BOOLEAN type variables"
},
"list": {
"type": "object",
"description": "List structure for LIST type variables"
},
"dictionary": {
"type": "object",
"description": "Key-value map for DICTIONARY type variables"
}
}
}