contentstack · Schema

AutomationList

A list of automations in a project.

Properties

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

JSON Schema

contentstack-automationlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AutomationList",
  "title": "AutomationList",
  "type": "object",
  "description": "A list of automations in a project.",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of automation objects.",
      "items": {
        "$ref": "#/components/schemas/Automation"
      }
    }
  }
}