Superblocks · Schema

Workflow

internal toolslow-codeno-codeapplicationsworkflowsscheduled jobsintegrationsenterpriseAIdatabasesREST APIdeveloper tools

Properties

Name Type Description
id string Unique identifier for the workflow
name string Workflow name
description string Workflow description
trigger string Workflow trigger type
status string Workflow status
View JSON Schema on GitHub

JSON Schema

superblocks-workflow-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Workflow",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Unique identifier for the workflow"
    },
    "name": {
      "type": "string",
      "description": "Workflow name"
    },
    "description": {
      "type": "string",
      "description": "Workflow description"
    },
    "trigger": {
      "type": "string",
      "description": "Workflow trigger type"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "inactive",
        "error"
      ],
      "description": "Workflow status"
    }
  }
}