Summary
          Calculate incoming/outgoing schemas for the workflow
          Description
          calculate incoming/outgoing schemas for the workflow
          Route
          POST /workflow_builder/workflows/schemas
          Roles
          
            admin
engineering
support
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | workflow | object | yes | Workflow's data. | 
            
          
          
            Copied to Clipboard
            
            {
  "workflow": {
    "name": "My Workflow",
    "type": "automation",
    "tasks": {
      "workflow_start": {
        "name": "workflow_start",
        "summary": "workflow_start",
        "groups": [],
        "x": -78228173.01985791,
        "y": -85450349.30894099
      },
      "workflow_end": {
        "name": "workflow_end",
        "summary": "workflow_end",
        "groups": [],
        "x": 13721849.064547077,
        "y": 3398231.655085519
      },
      "error_handler": {
        "name": "childJob",
        "summary": "tempor velit consequat ex fugiat",
        "description": "in non",
        "app": "ad culpa",
        "variables": {
          "error": "",
          "decorators": [
            {
              "type": "encryption",
              "pointer": "/~1/~0/y21/~0/tE.UK+L95bs/MTS/DK/,im./~0/~1/nWrwH5/~1"
            },
            {
              "type": "encryption",
              "pointer": "/kKoNP/~0/~1/RnIbgntHtC2/ELB/KLOtD/~0/~1/~0"
            },
            {
              "type": "encryption",
              "pointer": "/~1/hutddB/yDk/fu5k/~1/o0m/~0/~0"
            },
            {
              "type": "encryption",
              "pointer": "/~0/r+/~0/~0/~1/yEspR/~0/iX,4hqnjA,4"
            }
          ]
        },
        "groups": [
          "71fb2fa3bf9466f76e8441f4",
          "15a980b755e5d64ec0c0c72d"
        ],
        "type": "operation",
        "deprecated": false,
        "scheduled": false
      }
    },
    "transitions": {},
    "groups": [
      "a0a668a8513e4884f413ead5",
      "b3560b621b8f9991779bdcf2",
      "0deb4177aee9e3ebc43105d8"
    ],
    "_id": "d21918d2-e093-71bb-09bd-c6ec2e41a434",
    "description": null,
    "errorHandler": {
      "type": "reprehenderit esse dolor nulla et",
      "name": "anim tempor laboris"
    },
    "font_size": 12,
    "created": "2005-03-01T15:14:55.546Z",
    "created_by": "56f4590cb5d39e431e57709c",
    "createdVersion": "dolore ut",
    "last_updated": "2016-05-18T10:21:51.663Z",
    "last_updated_by": "8a03eb1366eb955deae8ef61",
    "lastUpdatedVersion": "do laboris aliquip mollit proident",
    "tags": [],
    "canvasVersion": 1,
    "decorators": [
      {
        "type": "encryption",
        "pointer": "/~0/q"
      },
      {
        "type": "encryption",
        "pointer": "/B/QafVhd5/~0/~0/yTGF9HnFp8/FVMQpf+Wzyv"
      },
      {
        "type": "encryption",
        "pointer": "/DBRsl-TjIsM/b-EzzcW6t/~0/Sn4s"
      },
      {
        "type": "encryption",
        "pointer": "/ElXI/DvYliwW/vDKF0LYrx/~0/~1/~1/XsTUUzfs/~0/~1"
      }
    ]
  }
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "workflow": {
      "$ref": "workflowDocument"
    }
  },
  "required": [
    "workflow"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | data | object | Input/Output transformation schemas for the workflow | 
            
          
          
            Copied to Clipboard
            
            {
  "data": true
}
           
          
            Copied to Clipboard
            
            {
  "description": "Input/Output transformation schemas for the workflow",
  "type": "object",
  "properties": {
    "data": true
  },
  "required": [
    "data"
  ],
  "additionalProperties": false
}