WSO2 · Schema

workflow Response

WorkflowResponse schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
workflowStatus string This attribute declares whether this workflow task is approved or rejected.
jsonPayload string Attributes that returned after the workflow execution
View JSON Schema on GitHub

JSON Schema

admin-api-workflow-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-schema/admin-api-workflow-response-schema.json",
  "title": "workflow Response",
  "description": "WorkflowResponse schema from WSO2 API Manager",
  "required": [
    "workflowStatus"
  ],
  "type": "object",
  "properties": {
    "workflowStatus": {
      "type": "string",
      "description": "This attribute declares whether this workflow task is approved or rejected.\n",
      "example": "APPROVED",
      "enum": [
        "CREATED",
        "APPROVED",
        "REJECTED",
        "REGISTERED"
      ]
    },
    "jsonPayload": {
      "type": "string",
      "description": "Attributes that returned after the workflow execution\n"
    }
  }
}