Cobalt · Schema

Workflow

A public workflow within the Cobalt embedded integration platform.

AutomationEmbedded iPaaSIntegrations

Properties

Name Type Description
_id string Workflow ID.
name string Workflow name.
description string Workflow description.
nodes array Workflow nodes.
created_at string Creation timestamp.
updated_at string Last update timestamp.
View JSON Schema on GitHub

JSON Schema

workflow.json Raw ↑
{
  "$id": "https://raw.githubusercontent.com/api-evangelist/cobalt/refs/heads/main/json-schema/workflow.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Workflow",
  "description": "A public workflow within the Cobalt embedded integration platform.",
  "type": "object",
  "properties": {
    "_id": {
      "type": "string",
      "description": "Workflow ID."
    },
    "name": {
      "type": "string",
      "description": "Workflow name."
    },
    "description": {
      "type": "string",
      "description": "Workflow description."
    },
    "nodes": {
      "type": "array",
      "description": "Workflow nodes.",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "config": {
            "type": "object"
          }
        }
      }
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Creation timestamp."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Last update timestamp."
    }
  }
}