Bubble · Schema

Bubble Workflow Response

Default JSON response returned by a triggered Bubble Workflow API endpoint.

No-CodeApplication PlatformDatabaseWorkflow AutomationPlugins

Properties

Name Type Description
status string Outcome status. `success` on normal completion.
response object Workflow-specific return values defined via the `Return data from API` action.
View JSON Schema on GitHub

JSON Schema

bubble-workflow-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bubble/main/json-schema/bubble-workflow-response-schema.json",
  "title": "Bubble Workflow Response",
  "description": "Default JSON response returned by a triggered Bubble Workflow API endpoint.",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Outcome status. `success` on normal completion."
    },
    "response": {
      "type": "object",
      "description": "Workflow-specific return values defined via the `Return data from API` action.",
      "additionalProperties": true
    }
  },
  "required": ["status"]
}