TaskLogDataResponse

Paginated task-level log data records with per-run KPI values

Properties

Name Type Description
totalRecords integer Total number of log records available
logData array List of task log records
View JSON Schema on GitHub

JSON Schema

automation-anywhere-tasklogdataresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskLogDataResponse",
  "title": "TaskLogDataResponse",
  "type": "object",
  "description": "Paginated task-level log data records with per-run KPI values",
  "properties": {
    "totalRecords": {
      "type": "integer",
      "description": "Total number of log records available"
    },
    "logData": {
      "type": "array",
      "description": "List of task log records",
      "items": {
        "$ref": "#/components/schemas/TaskLogRecord"
      }
    }
  }
}