Input schema for creating or updating a recipe.
{ "$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." } } } } }