contentstack · Schema

ExecutionLogList

A list of automation execution log entries.

Properties

Name Type Description
data array Array of execution log objects.
View JSON Schema on GitHub

JSON Schema

contentstack-executionloglist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExecutionLogList",
  "title": "ExecutionLogList",
  "type": "object",
  "description": "A list of automation execution log entries.",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of execution log objects.",
      "items": {
        "$ref": "#/components/schemas/ExecutionLog"
      }
    }
  }
}