Workato · Schema

RecipeInput

Input schema for creating or updating a recipe.

AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflow

Properties

Name Type Description
recipe object
View JSON Schema on GitHub

JSON Schema

workato-developer-api-recipe-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workato/refs/heads/main/json-schema/workato-developer-api-recipe-input-schema.json",
  "title": "RecipeInput",
  "description": "Input schema for creating or updating a recipe.",
  "type": "object",
  "properties": {
    "recipe": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "description": "Display name for the recipe."
        },
        "code": {
          "type": "string",
          "description": "JSON-encoded recipe definition code."
        },
        "config": {
          "type": "string",
          "description": "JSON-encoded recipe configuration."
        },
        "folder_id": {
          "type": "integer",
          "description": "ID of the folder to place the recipe in."
        },
        "description": {
          "type": "string",
          "description": "Human-readable description of what the recipe does."
        }
      }
    }
  }
}