{ "$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." } } } } }