Box · Schema

Workflow (Full)

Box Relay Workflows are objects that represent a named collection of flows. You application must be authorized to use the `Manage Box Relay` application scope within the developer console in order to use this resource.

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing
View JSON Schema on GitHub

JSON Schema

box-workflow-full-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Workflow--Full",
  "title": "Workflow (Full)",
  "type": "object",
  "x-box-resource-id": "workflow--full",
  "x-box-variant": "full",
  "description": "Box Relay Workflows are objects that represent a named collection of flows.\n\nYou application must be authorized to use the `Manage Box Relay` application\nscope within the developer console in order to use this resource.",
  "allOf": [
    {
      "$ref": "#/components/schemas/Workflow"
    },
    {
      "properties": {
        "created_at": {
          "type": "string",
          "format": "date-time",
          "description": "The date and time when the workflow was created on Box",
          "example": "2012-12-12T10:53:43-08:00"
        },
        "modified_at": {
          "type": "string",
          "format": "date-time",
          "description": "The date and time when the workflow was last updated on Box",
          "example": "2012-12-12T10:53:43-08:00"
        },
        "created_by": {
          "allOf": [
            {
              "$ref": "#/components/schemas/User--Base"
            },
            {
              "description": "The user who created this workflow"
            }
          ]
        },
        "modified_by": {
          "allOf": [
            {
              "$ref": "#/components/schemas/User--Base"
            },
            {
              "description": "The user who last modified this workflow"
            }
          ]
        }
      }
    }
  ]
}