{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Workflow--Mini", "title": "Workflow (Mini)", "type": "object", "x-box-resource-id": "workflow--mini", "x-box-tag": "workflows", "x-box-variants": [ "mini", "standard", "full" ], "x-box-variant": "mini", "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.", "properties": { "id": { "type": "string", "description": "The unique identifier for the workflow", "example": "11446498" }, "type": { "type": "string", "description": "`workflow`", "example": "workflow", "enum": [ "workflow" ] }, "name": { "type": "string", "example": "New Hire Workflow", "description": "The name of the workflow" }, "description": { "type": "string", "description": "The description for a workflow.", "example": "This workflow sets off a new hire approval flow" }, "is_enabled": { "type": "boolean", "example": true, "description": "Specifies if this workflow is enabled" } } }