Wrike · Schema

WorkflowStatus

Work ManagementProject ManagementCollaborationProductivityWorkflow AutomationTask Management

Properties

Name Type Description
id string
name string
standardName boolean
color string
hidden boolean
group string
View JSON Schema on GitHub

JSON Schema

wrike-workflowstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowStatus",
  "title": "WorkflowStatus",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "standardName": {
      "type": "boolean"
    },
    "color": {
      "type": "string"
    },
    "hidden": {
      "type": "boolean"
    },
    "group": {
      "type": "string",
      "enum": [
        "Active",
        "Completed",
        "Deferred",
        "Cancelled"
      ]
    }
  }
}