Workato · JSON Structure

Workato Developer Api Recipe Input Structure

Input schema for creating or updating a recipe.

Type: object Properties: 1
AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflow

RecipeInput is a JSON Structure definition published by Workato, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

recipe

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workato/refs/heads/main/json-structure/workato-developer-api-recipe-input-structure.json",
  "name": "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": "int32",
          "description": "ID of the folder to place the recipe in."
        },
        "description": {
          "type": "string",
          "description": "Human-readable description of what the recipe does."
        }
      }
    }
  }
}