> ## Documentation Index
> Fetch the complete documentation index at: https://docs.extend.app/llms.txt
> Use this file to discover all available pages before exploring further.

# The Workflow object

The Workflow object represents a workflow in Extend. Workflows are sequences of steps that process files and data in a specific order to achieve a desired outcome.

<Expandable title="properties" defaultOpen>
  <ResponseField name="object" type="string">
    The type of the object, in this case it will always be "workflow".
  </ResponseField>

  <ResponseField name="id" type="string">
    The workflow ID.
  </ResponseField>

  <ResponseField name="version" type="string">
    The version of the workflow.
  </ResponseField>

  <ResponseField name="name" type="string">
    The name of the workflow.
  </ResponseField>
</Expandable>

<ResponseExample>
  ```json Example Workflow theme={null}
  {
    "object": "workflow",
    "id": "workflow_1234",
    "version": "1.0.0",
    "name": "Example Workflow"
  }
  ```
</ResponseExample>
