Shuffle · Schema
Shuffle Workflow
A security automation workflow in the Shuffle SOAR platform. Workflows connect apps, triggers, and variables to automate security operations across the tool stack.
SecurityWorkflowsAutomationSOAROrchestrationOpen-Source
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique workflow identifier (UUID) |
| name | string | Human-readable workflow name |
| description | string | Description of the workflow's purpose and operation |
| status | string | Workflow publication status |
| org_id | string | Organization this workflow belongs to |
| created | integer | Creation timestamp in Unix milliseconds |
| edited | integer | Last modification timestamp in Unix milliseconds |
| actions | array | Array of action nodes in the workflow graph |
| triggers | array | Array of trigger nodes that start the workflow |
| tags | array | Classification tags for the workflow |
| execution_org | object | Organization context for execution environment |
| variables | array | Workflow-level variables |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://shuffler.io/schemas/workflow",
"title": "Shuffle Workflow",
"description": "A security automation workflow in the Shuffle SOAR platform. Workflows connect apps, triggers, and variables to automate security operations across the tool stack.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique workflow identifier (UUID)"
},
"name": {
"type": "string",
"description": "Human-readable workflow name"
},
"description": {
"type": "string",
"description": "Description of the workflow's purpose and operation"
},
"status": {
"type": "string",
"enum": ["published", "draft"],
"description": "Workflow publication status"
},
"org_id": {
"type": "string",
"description": "Organization this workflow belongs to"
},
"created": {
"type": "integer",
"description": "Creation timestamp in Unix milliseconds"
},
"edited": {
"type": "integer",
"description": "Last modification timestamp in Unix milliseconds"
},
"actions": {
"type": "array",
"items": {
"$ref": "#/$defs/Action"
},
"description": "Array of action nodes in the workflow graph"
},
"triggers": {
"type": "array",
"items": {
"$ref": "#/$defs/Trigger"
},
"description": "Array of trigger nodes that start the workflow"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Classification tags for the workflow"
},
"execution_org": {
"type": "object",
"description": "Organization context for execution environment"
},
"variables": {
"type": "array",
"items": {
"$ref": "#/$defs/Variable"
},
"description": "Workflow-level variables"
}
},
"required": ["id", "name"],
"$defs": {
"Action": {
"type": "object",
"description": "An action node in the workflow (app action to execute)",
"properties": {
"id": { "type": "string" },
"name": { "type": "string" },
"label": { "type": "string" },
"app_name": { "type": "string" },
"app_version": { "type": "string" },
"app_id": { "type": "string" },
"action": { "type": "object" },
"position": {
"type": "object",
"properties": {
"x": { "type": "number" },
"y": { "type": "number" }
}
},
"authentication": { "type": "string" },
"parameters": {
"type": "array",
"items": { "type": "object" }
},
"errors": {
"type": "array",
"items": { "type": "string" }
},
"is_valid": { "type": "boolean" },
"node_type": { "type": "string" }
}
},
"Trigger": {
"type": "object",
"description": "A trigger that initiates workflow execution",
"properties": {
"id": { "type": "string" },
"name": { "type": "string" },
"label": { "type": "string" },
"type": {
"type": "string",
"enum": ["webhook", "schedule", "manual", "email"]
},
"parameters": {
"type": "array",
"items": { "type": "object" }
},
"position": {
"type": "object",
"properties": {
"x": { "type": "number" },
"y": { "type": "number" }
}
}
}
},
"Variable": {
"type": "object",
"description": "A workflow-level variable",
"properties": {
"name": { "type": "string" },
"value": { "type": "string" },
"description": { "type": "string" }
}
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/shuffle-workflow"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.