Wrike · Schema

Workflow

Work ManagementProject ManagementCollaborationProductivityWorkflow AutomationTask Management

Properties

Name Type Description
id string
name string
standard boolean
hidden boolean
customStatuses array
View JSON Schema on GitHub

JSON Schema

wrike-workflow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Workflow",
  "title": "Workflow",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "standard": {
      "type": "boolean"
    },
    "hidden": {
      "type": "boolean"
    },
    "customStatuses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/WorkflowStatus"
      }
    }
  }
}