TaskVariableProfileResponse

Aggregated variable profile data for a task over a date range

Properties

Name Type Description
taskName string Name of the task
from string Start of the reporting date range
to string End of the reporting date range
profiles array Aggregated values for each KPI variable
View JSON Schema on GitHub

JSON Schema

automation-anywhere-taskvariableprofileresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskVariableProfileResponse",
  "title": "TaskVariableProfileResponse",
  "type": "object",
  "description": "Aggregated variable profile data for a task over a date range",
  "properties": {
    "taskName": {
      "type": "string",
      "description": "Name of the task"
    },
    "from": {
      "type": "string",
      "format": "date",
      "description": "Start of the reporting date range"
    },
    "to": {
      "type": "string",
      "format": "date",
      "description": "End of the reporting date range"
    },
    "profiles": {
      "type": "array",
      "description": "Aggregated values for each KPI variable",
      "items": {
        "$ref": "#/components/schemas/VariableProfile"
      }
    }
  }
}