Workato · Schema

RecipeVersion

A specific version snapshot of a recipe.

AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflow

Properties

Name Type Description
id integer Unique identifier of this version.
version_no integer Sequential version number.
comment string Optional comment describing changes in this version.
created_at string Timestamp when this version was created.
View JSON Schema on GitHub

JSON Schema

workato-developer-api-recipe-version-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-version-schema.json",
  "title": "RecipeVersion",
  "description": "A specific version snapshot of a recipe.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier of this version."
    },
    "version_no": {
      "type": "integer",
      "description": "Sequential version number."
    },
    "comment": {
      "type": "string",
      "description": "Optional comment describing changes in this version."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when this version was created."
    }
  }
}