{
  "source": "subflow.js",
  "method": "execute",
  "input-schema": {
    "type": "object",
    "additionalProperties": false,
    "properties" : {
      "flow": {
        "title": "flow",
        "type": "flow",
        "description": "Path to a flow that will be invoked. Input to the flow, if any, could be mapped below. The output of the subflow is shown as the output of this step.",
        "required": "true"
      }
    }
  },
  "output-schema": {
    "type": "any",
    "dynamic": {
      "target": "flow"
    }
  },
  "meta": {
    "name": "executeFlow",
    "sort_index": 4,
    "description": "Execute another flow as a subflow with the given input. The output of this step will be the the output returned by the subflow.",
    "icon": {
      "type": "cf",
      "name": "execute-flow",
      "size": "12px",
      "color": "#747CA3",
      "label": "flow"
    }
  }
}
